@import 'tailwindcss';

:root {
  --ink: #082b4a;
  --ink-soft: #536575;
  --teal: #0c5f8c;
  --teal-light: #dcecf5;
  --orange: #b9572a;
  --paper: #f7f9fb;
  --white: #ffffff;
  --line: #d7e1e8;
  --font-manrope: 'SansOri', 'SansOriFallback', Arial, sans-serif;
  --font-montserrat: 'SansOri', 'SansOriFallback', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope);
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid #2f83b3;
  outline-offset: 4px;
}

.site-header {
  width: min(100% - 48px, 1400px);
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
}
.brand img { width: 164px; height: auto; display: block; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.55vw, 24px); }
.desktop-nav > a, .desktop-service-menu > summary { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .065em; }
.desktop-nav > a:hover, .desktop-service-menu > summary:hover { color: var(--teal); }
.desktop-service-menu { position: relative; }
.desktop-service-menu > summary { display: flex; align-items: center; gap: 7px; list-style: none; cursor: pointer; white-space: nowrap; }
.desktop-service-menu > summary::-webkit-details-marker { display: none; }
.desktop-service-menu > summary span { width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.desktop-service-menu[open] > summary span { transform: translateY(2px) rotate(225deg); }
.desktop-service-panel { position: absolute; z-index: 60; top: calc(100% + 30px); left: 50%; width: min(620px, calc(100vw - 48px)); padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: linear-gradient(145deg, rgba(5,20,33,.98), rgba(8,48,75,.98)); box-shadow: 0 28px 70px rgba(1,13,24,.38); color: #fff; transform: translateX(-38%); }
.desktop-service-panel::before { content: ''; position: absolute; top: -7px; left: 36%; width: 13px; height: 13px; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); background: #061a2b; transform: rotate(45deg); }
.desktop-service-panel-head { padding: 3px 5px 15px; display: flex; align-items: end; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.15); }
.desktop-service-panel-head small { color: #7998aa; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.desktop-service-panel-head strong { font-family: var(--font-montserrat); font-size: 18px; font-weight: 500; }
.desktop-service-panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.desktop-service-panel-grid > a { min-height: 88px; padding: 16px 14px; display: grid; grid-template-columns: 25px 1fr 20px; gap: 10px; align-items: center; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); text-transform: none; transition: background .2s ease; }
.desktop-service-panel-grid > a:nth-child(even) { border-right: 0; }
.desktop-service-panel-grid > a:nth-last-child(-n+2) { border-bottom: 0; }
.desktop-service-panel a:hover { background: rgba(255,255,255,.055); color: #fff; }
.desktop-service-panel a > span { color: #d87548; font-size: 8px; font-weight: 900; }
.desktop-service-panel a > div { min-width: 0; }
.desktop-service-panel a strong { display: block; font-family: var(--font-montserrat); font-size: 15px; font-weight: 600; line-height: 1.12; letter-spacing: -.02em; }
.desktop-service-panel a small { display: block; margin-top: 7px; overflow: hidden; color: #87a1b0; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.desktop-service-panel a > b { color: #6d8fa3; font-size: 12px; font-weight: 400; }

.home-stage { background: #050f1b; color: var(--white); }
.site-header-home { position: relative; z-index: 21; isolation: isolate; width: min(100% - 64px, 1280px); height: 86px; color: var(--white); }
.site-header-home::before { content: ''; position: absolute; z-index: -1; top: 0; bottom: 0; left: calc(50% - 50vw); right: calc(50% - 50vw); border-bottom: 1px solid rgba(255,255,255,.16); background: linear-gradient(rgba(2,10,21,.88), rgba(2,10,21,.38) 70%, transparent); pointer-events: none; }
.site-header-home .brand img { filter: brightness(0) invert(1); }
.site-header-home .desktop-nav > a, .site-header-home .desktop-service-menu > summary { font-weight: 400; }
.site-header-home .desktop-nav > a:hover, .site-header-home .desktop-service-menu > summary:hover { color: #8fc8df; }

.hero {
  width: 100%;
  height: calc(clamp(650px, calc(100svh - 86px), 780px) + 86px);
  min-height: 736px;
  margin: -86px 0 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #050f1b;
}
.hero-slide { position: absolute; z-index: 1; inset: 0; isolation: isolate; opacity: 0; visibility: hidden; transform: scale(1.012); transition: opacity .7s ease, transform 1.1s ease, visibility 0s linear .7s; }
.hero-slide[data-active='true'] { opacity: 1; visibility: visible; transform: scale(1); transition-delay: 0s; }
.hero-backdrop { z-index: -3; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.04); }
.hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(3,12,22,.99) 0%, rgba(4,16,28,.94) 33%, rgba(5,20,32,.6) 58%, rgba(5,20,32,.18) 82%, rgba(5,20,32,.32) 100%), linear-gradient(0deg, rgba(3,12,22,.9) 0%, transparent 42%, rgba(3,12,22,.24) 100%); }
.hero-grid { position: absolute; z-index: 3; inset: 0; pointer-events: none; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(90deg, #000, transparent 68%); }
.hero-copy {
  position: absolute;
  z-index: 4;
  left: max(40px, calc((100vw - 1280px) / 2));
  top: calc(48% + 45px);
  width: min(55%, 730px);
  padding-bottom: 52px;
  transform: translateY(-50%);
  color: var(--white);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: #c6dbe2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.eyebrow span { width: 28px; height: 2px; background: #e36d36; border-radius: 3px; }
.hero h1, .hero h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-montserrat);
  font-size: clamp(56px, 5.25vw, 76px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero-lead { max-width: 600px; margin: 28px 0 0; color: #d2dfe5; font-size: 17px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 999px; padding: 0 24px; font-weight: 800; }
.hero .button-primary { min-height: 56px; border-radius: 8px; padding: 0 28px; background: #d76631; box-shadow: 0 15px 34px rgba(196,80,33,.25); }
.button-primary { background: var(--orange); color: #fff; }
.button-primary:hover { background: #a84b24; }
.hero .button-primary:hover { background: #ed7b43; }
.button-secondary { border: 1px solid #5a7380; color: #fff; }
.button-secondary:hover { background: rgba(255,255,255,.1); border-color: #94b5c8; }
.hero-text-link { display: inline-flex; align-items: center; gap: 12px; color: #f5f8fa; font-size: 14px; font-weight: 700; }
.hero-text-link span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.44); border-radius: 50%; transition: .2s ease; }
.hero-text-link:hover span { border-color: #fff; background: #fff; color: var(--ink); transform: translateX(3px); }

.hero-showcase { position: absolute; z-index: 3; top: 0; right: 0; bottom: 76px; width: 52%; overflow: hidden; }
.showcase-brand { position: absolute; z-index: 3; top: 126px; right: max(32px, calc((100vw - 1280px) / 2)); width: 188px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; background: rgba(4,20,32,.5); backdrop-filter: blur(14px); }
.showcase-brand img { display: block; width: 154px; height: 45px; object-fit: contain; object-position: left center; }
.showcase-device { position: absolute; width: min(760px, 110%); max-width: none; height: auto; right: -12%; bottom: -6px; filter: drop-shadow(0 34px 35px rgba(0,0,0,.52)); }
.hero-slide-theworkery .showcase-device, .hero-slide-smartshop .showcase-device { width: min(560px, 76%); right: 7%; bottom: 70px; }
.hero-slide-theworkery .showcase-brand img { filter: brightness(0) invert(1); }
.showcase-tags { position: absolute; z-index: 4; right: max(32px, calc((100vw - 1280px) / 2)); bottom: 24px; display: flex; gap: 7px; }
.showcase-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(4,20,32,.46); color: #fff; backdrop-filter: blur(10px); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.platform-icon { width: 42px; height: 42px; padding: 8px !important; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32) !important; border-radius: 11px !important; background: rgba(3,14,24,.56) !important; box-shadow: 0 8px 20px rgba(0,0,0,.14); }
.platform-icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.platforms .platform-icon { width: 44px; height: 44px; padding: 8px !important; background: rgba(255,255,255,.09) !important; }

.hero-rail { position: absolute; z-index: 7; left: 0; right: 0; bottom: 0; height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; padding: 0 max(40px, calc((100vw - 1280px) / 2)); border-top: 1px solid rgba(255,255,255,.18); background: rgba(3,12,22,.58); backdrop-filter: blur(10px); color: #fff; }
.hero-signature { display: flex; align-items: center; gap: 12px; color: #aebdc5; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-signature strong { color: #fff; font-size: 12px; letter-spacing: .12em; }
.hero-signature i { color: #d76631; font-style: normal; }
.hero-tabs { display: flex; align-items: center; gap: 12px; }
.hero-tabs button { appearance: none; min-width: 76px; padding: 8px 0; display: flex; align-items: center; gap: 9px; border: 0; background: none; color: #82949e; cursor: pointer; font: inherit; font-size: 10px; font-weight: 700; }
.hero-tabs button i { width: 44px; height: 1px; background: rgba(255,255,255,.24); }
.hero-tabs button[aria-selected='true'] { color: #fff; }
.hero-tabs button[aria-selected='true'] i { background: #d76631; }
.hero-tabs button:focus-visible { outline: 1px solid #8fc8df; outline-offset: 2px; border-radius: 4px; }
.hero-tabs .hero-toggle { min-width: 34px; width: 34px; height: 34px; padding: 0; justify-content: center; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: #fff; font-size: 10px; }
.hero-project-link { justify-self: end; display: flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 700; }
.hero-project-link b { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; font-size: 11px; transition: .2s ease; }
.hero-project-link:hover b { background: #fff; color: var(--ink); transform: translate(2px, -2px); }

.service-strip {
  width: min(100% - 48px, 1400px);
  margin: 18px auto 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}
.service-strip div { display: flex; align-items: center; gap: 11px; min-height: 82px; padding: 18px 22px; border-right: 1px solid var(--line); font-size: 13px; font-weight: 800; }
.service-strip div:last-child { border-right: 0; }
.service-strip span { color: var(--orange); font-size: 10px; }

.mobile-menu { display: none; }
.section-wrap { width: min(100% - 48px, 1280px); margin-inline: auto; }
.section-heading { display: grid; grid-template-columns: minmax(150px, .42fr) 1fr; column-gap: 70px; align-items: start; margin-bottom: 52px; }
.section-heading > p, .section-kicker { margin: 8px 0 0; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.section-heading h2 { margin: 0; font-family: var(--font-montserrat), sans-serif; font-size: clamp(34px, 4.2vw, 62px); font-weight: 400; line-height: 1.04; letter-spacing: -.045em; }
.section-heading > span { grid-column: 2; max-width: 760px; margin-top: 22px; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.center-action { display: flex; justify-content: center; margin-top: 42px; }
.button-outline { border: 1px solid var(--ink); color: var(--ink); }
.button-light { background: var(--white); color: var(--ink); }

.client-showcase { position: relative; z-index: 8; width: min(100% - 48px, 1280px); margin: 18px auto 0; padding: 18px 22px 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 18px 46px rgba(8,43,74,.1); }
.client-showcase-head { min-height: 28px; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.client-showcase-head p { margin: 0; display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.client-showcase-head p span { width: 24px; height: 2px; border-radius: 2px; background: var(--orange); }
.client-showcase-head a { display: flex; align-items: center; gap: 9px; color: var(--ink); font-size: 11px; font-weight: 800; }
.client-showcase-head a b { color: var(--orange); font-size: 13px; transition: transform .2s ease; }
.client-showcase-head a:hover b { transform: translate(2px, -2px); }
.client-rail { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.client-rail:focus-visible { outline: 2px solid #2f83b3; outline-offset: 3px; }
.client-rail-track { width: max-content; display: flex; will-change: transform; animation: client-marquee 32s linear infinite; }
.client-rail-group { flex: none; display: flex; }
.client-logo-card { flex: 0 0 176px; width: 176px; height: 94px; display: grid; place-items: center; padding: 17px 20px; border-right: 1px solid var(--line); background: var(--white); }
.client-rail img { width: 100%; height: 100%; max-width: 136px; max-height: 58px; object-fit: contain; filter: grayscale(.22); opacity: .9; transition: filter .2s ease, opacity .2s ease, transform .2s ease; }
.client-logo-card-orange { background: #eb7a12; }
.client-logo-card-brown { background: #21130e; }
.client-logo-card-teal { background: #2585a4; }
.client-logo-card-violet { background: #493d7b; }
.client-logo-card-orange img, .client-logo-card-brown img, .client-logo-card-teal img, .client-logo-card-violet img { filter: none; opacity: 1; }
.client-logo-card:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.06); }
.client-rail:hover .client-rail-track, .client-rail:focus .client-rail-track, .client-rail:focus-within .client-rail-track { animation-play-state: paused; }
@keyframes client-marquee { to { transform: translateX(-50%); } }

.service-section { padding-block: 96px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: var(--white); }
.service-card { min-height: 286px; padding: 28px 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.service-card:last-child { border-right: 0; }
.service-card > span { color: var(--orange); font-size: 11px; font-weight: 900; }
.service-card > p { margin: 38px 0 8px; color: var(--teal); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.service-card h3 { margin: 0; font-family: var(--font-montserrat); font-size: 25px; line-height: 1.15; letter-spacing: -.035em; }
.service-card > div { margin-top: 18px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }

.service-section-home { position: relative; width: 100%; padding-block: 64px; overflow: hidden; background: linear-gradient(145deg, #edf4f7 0%, #f7f9fa 54%, #e8f1f5 100%); }
.service-section-home::before { content: ''; position: absolute; top: -180px; right: -120px; width: 480px; height: 480px; border: 1px solid rgba(47,131,179,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(47,131,179,.035), 0 0 0 140px rgba(47,131,179,.025); pointer-events: none; }
.service-section-home .service-layout { position: relative; z-index: 1; }
.service-section-home .section-heading { grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); grid-template-rows: auto auto; column-gap: 64px; row-gap: 14px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #c8d8e0; }
.service-section-home .section-heading > p { grid-column: 1; grid-row: 1; margin: 0; }
.service-section-home .section-heading h2 { grid-column: 1; grid-row: 2; max-width: 820px; }
.service-section-home .section-heading > span { grid-column: 2; grid-row: 2; align-self: end; max-width: 430px; margin-top: 0; font-size: 15px; line-height: 1.65; }
.service-section-home .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; overflow: visible; border: 0; border-radius: 0; background: transparent; }
.service-section-home .service-card { position: relative; min-height: 260px; padding: 34px 170px 32px 34px; display: block; border: 1px solid rgba(8,43,74,.12); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(243,248,250,.92)); box-shadow: 0 16px 40px rgba(8,43,74,.07); overflow: hidden; isolation: isolate; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-section-home .service-card::before { content: ''; position: absolute; z-index: -1; right: -88px; bottom: -118px; width: 260px; height: 260px; border: 1px solid rgba(47,131,179,.16); border-radius: 50%; box-shadow: 0 0 0 34px rgba(47,131,179,.045), 0 0 0 68px rgba(47,131,179,.025); transition: transform .35s ease; }
.service-section-home .service-card::after { content: ''; position: absolute; z-index: -1; right: 42px; bottom: 38px; width: 30px; height: 30px; border: 8px solid rgba(202,91,44,.22); border-radius: 50%; }
.service-section-home .service-card:hover { transform: translateY(-3px); border-color: rgba(47,131,179,.28); box-shadow: 0 20px 44px rgba(8,43,74,.09); }
.service-section-home .service-card:hover::before { transform: scale(1.04); }
.service-section-home .service-card > span { position: absolute; top: 29px; right: 34px; padding: 0; color: rgba(202,91,44,.72); font-family: var(--font-montserrat); font-size: 48px; font-weight: 500; line-height: 1; letter-spacing: -.08em; }
.service-section-home .service-card > p { margin: 0 0 15px; color: #2f789d; font-size: 10px; letter-spacing: .12em; }
.service-section-home .service-card h3 { max-width: 420px; font-size: 30px; line-height: 1.08; }
.service-section-home .service-card > div { max-width: 430px; margin-top: 20px; font-size: 14px; line-height: 1.65; }
.service-section-home .service-card:first-child { border-color: rgba(255,255,255,.08); background: linear-gradient(145deg, #071f35 0%, #0a3553 62%, #0d4769 100%); box-shadow: 0 20px 48px rgba(8,43,74,.18); color: var(--white); }
.service-section-home .service-card:first-child > p { color: #8fc0d8; }
.service-section-home .service-card:first-child > div { color: #c8dce7; }
.service-section-home .service-card:first-child > span { color: #e18a5e; }
.service-section-home .service-card:first-child::before { border-color: rgba(255,255,255,.14); box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 68px rgba(255,255,255,.018); }
.service-section-home .service-card:first-child::after { border-color: rgba(229,139,94,.5); }
.service-section-home .service-card:nth-child(3) { background: linear-gradient(145deg, #fff 0%, #fbf5f1 100%); }
.service-section-home .service-card:nth-child(4) { background: linear-gradient(145deg, #f5fafc 0%, #e9f3f7 100%); }
.service-card-link { position: absolute; right: 34px; bottom: 29px; z-index: 1; color: #476b7e; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.service-section-home .service-card:first-child .service-card-link { color: #d6e6ed; }

.benefit-section { position: relative; padding-block: 80px; overflow: hidden; background: radial-gradient(circle at 92% 8%, rgba(47,131,179,.18), transparent 28%), linear-gradient(145deg, #071d31 0%, #0a2c48 58%, #09243a 100%); color: var(--white); }
.benefit-section .section-heading { grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); grid-template-rows: auto auto; column-gap: 64px; row-gap: 14px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(166,198,215,.25); }
.benefit-section .section-heading > p { grid-column: 1; grid-row: 1; margin: 0; }
.benefit-section .section-heading h2 { grid-column: 1; grid-row: 2; max-width: 820px; }
.benefit-section .section-heading > span { grid-column: 2; grid-row: 2; align-self: end; max-width: 430px; margin-top: 0; color: #b9cbd3; font-size: 15px; line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; border: 0; }
.benefit-grid article { position: relative; min-height: 216px; padding: 30px 26px 26px; overflow: hidden; border: 1px solid rgba(172,203,219,.16); border-radius: 20px; background: rgba(255,255,255,.035); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.benefit-grid article::before { content: ''; position: absolute; top: 0; left: 26px; width: 42px; height: 3px; border-radius: 0 0 4px 4px; background: #d57a4e; }
.benefit-grid article::after { content: ''; position: absolute; right: -54px; bottom: -76px; width: 150px; height: 150px; border: 1px solid rgba(143,192,216,.1); border-radius: 50%; box-shadow: 0 0 0 24px rgba(143,192,216,.025); }
.benefit-grid article:hover { transform: translateY(-3px); border-color: rgba(172,203,219,.34); background: rgba(255,255,255,.065); }
.benefit-grid article:nth-last-child(-n+2) { grid-column: span 2; background: linear-gradient(135deg, rgba(47,131,179,.16), rgba(255,255,255,.035)); }
.benefit-grid article > span { position: static; display: block; margin-bottom: 26px; color: #d9875e; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.benefit-grid h3 { position: relative; z-index: 1; max-width: 290px; margin: 0; font-family: var(--font-montserrat); font-size: 22px; line-height: 1.14; letter-spacing: -.03em; }
.benefit-grid p { position: relative; z-index: 1; max-width: 510px; margin: 15px 0 0; color: #c9d8e2; font-size: 13px; line-height: 1.62; }

.work-section { padding-block: 80px; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project-card { position: relative; min-height: 530px; border-radius: 28px; overflow: hidden; background: #e5eef4; isolation: isolate; }
.project-card-featured { grid-column: 1 / -1; min-height: 610px; }
.project-card-bg { position: absolute; inset: 0; z-index: -2; }
.project-card-bg img { object-fit: cover; opacity: .3; filter: saturate(.9); }
.project-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(155deg, rgba(255,255,255,.96) 0%, rgba(220,236,245,.86) 50%, rgba(74,135,170,.42) 100%); }
.project-card-content { position: absolute; inset: 0; padding: 30px; display: flex; flex-direction: column; }
.project-card-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.project-card-top > span { font-size: 12px; font-weight: 900; }
.project-logo-wrap { width: 190px; height: 74px; display: flex; align-items: center; padding: 10px 14px; border-radius: 14px; background: rgba(8,43,74,.88); box-shadow: 0 10px 28px rgba(8,43,74,.14); }
.project-logo-wrap img { width: 100%; height: 100%; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .96; }
.project-card-device { flex: 1; min-height: 0; display: grid; place-items: center; overflow: hidden; }
.project-card-device img { width: 86%; height: 100%; object-fit: contain; filter: drop-shadow(0 25px 22px rgba(16,45,62,.22)); transition: transform .45s ease; }
.project-card:hover .project-card-device img { transform: translateY(-7px) scale(1.025); }
.project-card-bottom { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.project-card-bottom h3 { margin: 0; font-family: var(--font-montserrat); font-size: 29px; font-weight: 400; letter-spacing: -.035em; }
.project-card-bottom > div { display: flex; flex-wrap: wrap; justify-content: end; gap: 6px; }
.project-card-bottom span, .platforms span { padding: 7px 10px; border: 1px solid rgba(16,45,62,.25); border-radius: 999px; font-size: 10px; font-weight: 800; }
.work-section .section-heading { grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); grid-template-rows: auto auto; column-gap: 64px; row-gap: 14px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.work-section .section-heading > p { grid-column: 1; grid-row: 1; margin: 0; }
.work-section .section-heading h2 { grid-column: 1; grid-row: 2; max-width: 820px; }
.work-section .section-heading > span { grid-column: 2; grid-row: 2; align-self: end; max-width: 430px; margin-top: 0; font-size: 15px; line-height: 1.65; }
.work-section .project-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.work-section .project-card { grid-column: span 3; min-height: 390px; border: 1px solid rgba(8,43,74,.1); border-radius: 24px; box-shadow: 0 16px 38px rgba(8,43,74,.07); transition: transform .3s ease, box-shadow .3s ease; }
.work-section .project-card:hover { transform: translateY(-4px); box-shadow: 0 24px 52px rgba(8,43,74,.12); }
.work-section .project-card-kontder { --project-accent: 175, 49, 42; }
.work-section .project-card-mugladatatildeyiz { --project-accent: 38, 126, 165; }
.work-section .project-card-turuncu { --project-accent: 201, 126, 35; }
.work-section .project-card-theworkery { --project-accent: 36, 104, 99; }
.work-section .project-card-chefsmartpro { --project-accent: 142, 84, 53; }
.work-section .project-card-smartshop { --project-accent: 43, 145, 174; }
.work-section .project-card-nesatilir { --project-accent: 93, 116, 190; }
.work-section .project-card-bg img { opacity: .72; filter: saturate(1.1) contrast(1.04); }
.work-section .project-card::after { background: linear-gradient(180deg, rgba(4,17,29,.08) 0%, rgba(4,21,35,.18) 48%, rgba(4,20,33,.86) 100%), radial-gradient(circle at 86% 20%, rgba(var(--project-accent, 47,131,179),.38), transparent 52%); }
.work-section .project-card:nth-child(-n+3) { grid-column: span 4; min-height: 430px; }
.work-section .project-card-content { padding: 22px; }
.work-section .project-logo-wrap { width: 142px; height: 60px; padding: 4px 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.work-section .project-logo-wrap img { filter: brightness(0) invert(1) drop-shadow(0 3px 7px rgba(2,14,24,.72)); }
.work-section .project-card-featured .project-logo-wrap { width: 170px; height: 68px; }
.work-section .project-card-top > span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(5,25,41,.58); color: var(--white); box-shadow: 0 8px 24px rgba(3,17,29,.12); backdrop-filter: blur(10px); font-size: 10px; white-space: nowrap; }
.work-section .project-card-device img { width: 94%; filter: drop-shadow(0 28px 24px rgba(3,17,29,.32)); }
.work-section .project-card-bottom { margin: 0 -8px -8px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(5,24,39,.72); color: var(--white); box-shadow: 0 14px 34px rgba(3,17,29,.16); backdrop-filter: blur(12px); }
.work-section .project-card-bottom h3 { font-size: 22px; line-height: 1.08; }
.work-section .project-card-featured .project-card-bottom h3 { font-size: 29px; }
.work-section .project-card-bottom span { padding: 6px 8px; border-color: rgba(255,255,255,.28); color: #f1f6f8; font-size: 9px; }
.work-section .project-card-platforms { display: flex; flex-wrap: wrap; justify-content: end; gap: 6px; }
.work-section .project-card-platforms .platform-icon { width: 30px; height: 30px; padding: 6px !important; border-color: rgba(255,255,255,.28) !important; border-radius: 8px !important; background: rgba(255,255,255,.08) !important; box-shadow: none; }
.work-section .project-card-platforms > span:not(.platform-icon) { display: flex; align-items: center; min-height: 30px; }
.work-section .project-editorial-card {
  --case-a: #172b43;
  --case-b: #0a1625;
  --case-glow: 73, 138, 180;
  display: block;
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(145deg, var(--case-a), var(--case-b));
  color: var(--white);
  box-shadow: 0 22px 50px rgba(6,27,43,.16);
}
.work-section .project-editorial-card::after { display: none; }
.work-section .project-card-kontder { --case-a: #722737; --case-b: #261b35; --case-glow: 184, 80, 102; }
.work-section .project-card-mugladatatildeyiz { --case-a: #1a5e59; --case-b: #0b2935; --case-glow: 79, 187, 169; }
.work-section .project-card-turuncu { --case-a: #b35d22; --case-b: #4e271c; --case-glow: 241, 158, 84; }
.work-section .project-card-theworkery { --case-a: #244d49; --case-b: #132527; --case-glow: 102, 173, 157; }
.work-section .project-card-chefsmartpro { --case-a: #78503f; --case-b: #31211e; --case-glow: 203, 145, 108; }
.work-section .project-card-smartshop { --case-a: #176783; --case-b: #0b2b42; --case-glow: 72, 176, 205; }
.work-section .project-card-nesatilir { --case-a: #48599a; --case-b: #182346; --case-glow: 125, 145, 226; }
.work-section .project-editorial-backdrop { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.work-section .project-editorial-backdrop img { object-fit: cover; opacity: .82; filter: saturate(.9) contrast(1.04); transform: scale(1.035); transition: transform .55s ease; }
.work-section .project-editorial-card:hover .project-editorial-backdrop img { transform: scale(1.065); }
.work-section .project-editorial-tint { position: absolute; z-index: 1; inset: 0; background: linear-gradient(118deg, var(--case-b) 0%, var(--case-a) 58%, var(--case-b) 100%); opacity: .72; pointer-events: none; }
.work-section .project-editorial-glow { position: absolute; z-index: 1; width: 90%; aspect-ratio: 1; right: -38%; top: -42%; border-radius: 50%; background: radial-gradient(circle, rgba(var(--case-glow),.46) 0%, rgba(var(--case-glow),.08) 48%, transparent 70%); pointer-events: none; }
.work-section .project-editorial-grid { position: absolute; z-index: 1; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(135deg, #000, transparent 66%); pointer-events: none; }
.work-section .project-editorial-head { position: absolute; z-index: 4; top: 20px; left: 22px; right: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.work-section .project-editorial-head > span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: rgba(255,255,255,.8); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.work-section .project-editorial-head p { margin: 0; overflow: hidden; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.work-section .project-editorial-copy { position: absolute; z-index: 4; top: 60px; left: 22px; right: 22px; }
.work-section .project-editorial-copy .project-logo-wrap { width: 142px; height: 52px; }
.work-section .project-editorial-card .project-card-device { position: absolute; z-index: 2; inset: 112px 8px 60px; display: grid; place-items: center; overflow: visible; }
.work-section .project-editorial-card .project-card-device img { width: 96%; height: 100%; object-fit: contain; filter: drop-shadow(0 28px 24px rgba(2,12,21,.4)); }
.work-section .project-editorial-footer { position: absolute; z-index: 5; right: 20px; bottom: 0; left: 20px; height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(255,255,255,.16); }
.work-section .project-editorial-footer .project-card-platforms { justify-content: start; }
.work-section .project-editorial-card .project-card-platforms .platform-icon { border-color: rgba(255,255,255,.24) !important; background: rgba(255,255,255,.12) !important; }
.work-section .project-editorial-card .project-card-platforms > span:not(.platform-icon) { min-height: 30px; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); }
.work-section .project-editorial-link { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.work-section .project-editorial-link b { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; font-size: 13px; font-weight: 400; transition: background .25s ease, color .25s ease; }
.work-section .project-editorial-card:hover .project-editorial-link b { background: var(--white); color: var(--case-b); }
.work-section .project-editorial-card:nth-child(n+3) .project-editorial-link > span { display: none; }
@media (min-width: 981px) {
  .work-section .project-editorial-card.project-card-featured .project-editorial-copy { top: 98px; left: 30px; right: auto; width: 230px; }
  .work-section .project-editorial-card.project-card-featured .project-editorial-copy .project-logo-wrap { width: 210px; height: 76px; }
  .work-section .project-editorial-card.project-card-featured .project-card-device { inset: 48px 12px 48px 30%; }
  .work-section .project-editorial-card.project-card-featured .project-card-device img { width: 100%; }
  .work-section .project-editorial-card.project-card-featured .project-editorial-head { left: 30px; right: 30px; }
  .work-section .project-editorial-card.project-card-featured .project-editorial-footer { right: 30px; left: 30px; }
}
.work-section .center-action { margin-top: 34px; }

.process-preview { position: relative; padding-block: 108px 88px; overflow: hidden; isolation: isolate; background: #071d30; color: var(--white); }
.process-preview::before { content: ''; position: absolute; z-index: -2; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
.process-preview-glow { position: absolute; z-index: -1; top: -390px; right: -230px; width: 760px; height: 760px; border: 1px solid rgba(88,177,208,.16); border-radius: 50%; box-shadow: 0 0 0 110px rgba(34,117,154,.055), 0 0 0 220px rgba(34,117,154,.03); }
.process-preview-inner { position: relative; }
.process-preview-head { display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 48px; align-items: end; margin-bottom: 28px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.14); }
.process-preview .section-heading { grid-template-columns: minmax(150px, .42fr) 1fr; margin: 0; }
.process-preview .section-heading h2 { max-width: 780px; color: var(--white); }
.process-preview .section-heading > span { max-width: 650px; color: #aebfcb; }
.process-experience { display: flex; align-items: end; justify-content: end; gap: 12px; padding-bottom: 4px; }
.process-experience strong { color: #d8764a; font-family: var(--font-montserrat); font-size: 76px; font-weight: 300; line-height: .78; letter-spacing: -.08em; }
.process-experience span { color: #b9c8d2; font-size: 10px; font-weight: 800; line-height: 1.35; letter-spacing: .1em; text-transform: uppercase; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #abc7d8; }
.process-list li { display: grid; grid-template-columns: .16fr .84fr; gap: 30px; padding: 32px 0; border-bottom: 1px solid #abc7d8; }
.process-list li > span { color: var(--orange); font-size: 11px; font-weight: 900; }
.process-list h3 { margin: 0 0 10px; font-family: var(--font-montserrat); font-size: 26px; letter-spacing: -.025em; }
.process-list p { max-width: 830px; margin: 0; color: var(--ink-soft); line-height: 1.75; }
.process-link { display: inline-block; margin-top: 38px; font-weight: 900; }
.process-blueprint { position: relative; min-height: 642px; }
.process-route { position: absolute; top: 81px; right: 354px; bottom: 81px; left: 354px; border: 1px solid rgba(125,190,214,.28); border-top: 0; border-radius: 0 0 170px 170px; }
.process-route::before, .process-route::after { content: ''; position: absolute; top: 0; width: 66px; border-top: 1px solid rgba(125,190,214,.28); }
.process-route::before { right: 100%; }
.process-route::after { left: 100%; }
.process-core { position: absolute; z-index: 2; top: 50%; left: 50%; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; flex-direction: column; border: 1px solid rgba(135,200,223,.32); border-radius: 50%; background: radial-gradient(circle at 45% 40%, rgba(39,124,158,.5), rgba(5,24,40,.96) 67%); box-shadow: 0 0 0 32px rgba(61,144,175,.06), 0 28px 80px rgba(0,8,16,.36); transform: translate(-50%, -50%); }
.process-core::before, .process-core::after { content: ''; position: absolute; border-radius: 50%; }
.process-core::before { inset: 20px; border: 1px dashed rgba(148,203,222,.28); animation: process-orbit 26s linear infinite; }
.process-core::after { top: 33px; right: 33px; width: 9px; height: 9px; background: #d8764a; box-shadow: 0 0 0 7px rgba(216,118,74,.13); }
.process-core > span { color: #d8764a; font-family: var(--font-montserrat); font-size: 92px; font-weight: 300; line-height: .78; letter-spacing: -.1em; }
.process-core > strong { margin-top: 13px; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.process-core > small { margin-top: 16px; color: #aebfcb; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
@keyframes process-orbit { to { transform: rotate(360deg); } }
.process-preview .process-list-home { position: absolute; inset: 0; border: 0; }
.process-preview .process-list-home li { position: absolute; width: 330px; min-height: 164px; display: block; padding: 22px 22px 20px 70px; border: 1px solid rgba(150,195,211,.18); border-radius: 18px; background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 18px 50px rgba(0,8,16,.15); backdrop-filter: blur(9px); transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.process-preview .process-list-home li:hover { border-color: rgba(216,118,74,.62); background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.04)); transform: translateY(-3px); }
.process-preview .process-list-home li:nth-child(1), .process-preview .process-list-home li:nth-child(6) { top: 0; }
.process-preview .process-list-home li:nth-child(2), .process-preview .process-list-home li:nth-child(5) { top: 239px; }
.process-preview .process-list-home li:nth-child(3), .process-preview .process-list-home li:nth-child(4) { bottom: 0; }
.process-preview .process-list-home li:nth-child(-n+3) { left: 0; }
.process-preview .process-list-home li:nth-child(n+4) { right: 0; }
.process-step-number { position: absolute; top: 22px; left: 20px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(216,118,74,.62); border-radius: 50%; color: #f09b75 !important; font-size: 9px !important; letter-spacing: .08em; }
.process-preview .process-list-home h3 { margin: 0 0 9px; color: var(--white); font-size: 21px; line-height: 1.08; }
.process-preview .process-list-home p { color: #aebfcb; font-size: 12px; line-height: 1.55; }
.process-preview .process-list-home li > i { position: absolute; top: 50%; width: 9px; height: 9px; border: 2px solid #79b3ca; border-radius: 50%; background: #071d30; box-shadow: 0 0 0 6px rgba(121,179,202,.08); transform: translateY(-50%); }
.process-preview .process-list-home li:nth-child(-n+3) > i { right: -30px; }
.process-preview .process-list-home li:nth-child(n+4) > i { left: -30px; }
.process-preview-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.process-preview-footer p { margin: 0; color: #8fa7b6; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.process-preview-footer p span { margin-inline: 7px; color: #d8764a; }
.process-preview .process-link { display: flex; align-items: center; gap: 15px; margin: 0; color: var(--white); font-size: 12px; letter-spacing: .04em; }
.process-preview .process-link b { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 14px; font-weight: 400; transition: background .25s ease, color .25s ease; }
.process-preview .process-link:hover b { background: var(--white); color: #071d30; }

.microsite-section { padding-block: 92px 96px; }
.microsite-section .section-heading { grid-template-columns: minmax(170px, .3fr) 1fr; margin-bottom: 34px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.microsite-section .section-heading h2 { max-width: 870px; }
.microsite-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.microsite-card { --micro-accent: #315f7e; position: relative; min-height: 252px; display: grid; grid-template-rows: auto 1fr auto; padding: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 10px 28px rgba(8,43,74,.045); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.microsite-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--micro-accent); opacity: .82; }
.microsite-card:hover { z-index: 2; border-color: rgba(8,43,74,.2); box-shadow: 0 18px 38px rgba(8,43,74,.09); transform: translateY(-3px); }
.microsite-card-1 { --micro-accent: #98282a; }
.microsite-card-2 { --micro-accent: #36bed1; }
.microsite-card-3 { --micro-accent: #10466f; }
.microsite-card-4 { --micro-accent: #0e4d7c; }
.microsite-index { color: #7a8b98; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.microsite-index i { margin-inline: 5px; color: var(--micro-accent); font-style: normal; }
.microsite-art { display: none; }
.microsite-logo { width: 100%; height: 108px; display: grid; place-items: center; padding: 4px 6px; }
.microsite-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .3s ease; }
.microsite-card:hover .microsite-logo img { transform: scale(1.03); }
.microsite-card-1 .microsite-logo { padding-inline: 12px; }
.microsite-card-3 .microsite-logo { padding-inline: 8px; }
.microsite-meta { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding-top: 15px; border-top: 1px solid var(--line); }
.microsite-meta p { margin: 0; color: var(--ink); font-size: 12px; font-weight: 800; line-height: 1.25; }
.microsite-meta span { display: block; margin-top: 5px; color: #788b98; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.microsite-meta b { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(8,43,74,.22); border-radius: 50%; color: var(--ink); transition: background .25s ease, color .25s ease; }
.microsite-meta b svg { width: 15px; height: 15px; display: block; overflow: visible; }
.microsite-meta b path { stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.microsite-card:hover .microsite-meta b { background: var(--ink); color: var(--white); }

.contact-band { position: relative; min-height: 390px; margin-bottom: 34px; padding: clamp(42px, 5vw, 66px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr); align-items: center; gap: clamp(50px, 8vw, 110px); overflow: hidden; isolation: isolate; border: 1px solid rgba(127,181,207,.18); border-radius: 30px; background: radial-gradient(circle at 76% 20%, rgba(47,131,179,.3), transparent 30%), linear-gradient(120deg, #061626 0%, #082b4a 62%, #0a486b 100%); color: var(--white); box-shadow: 0 26px 70px rgba(8,43,74,.13); }
.contact-band::before { content: ''; position: absolute; z-index: -2; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.contact-band::after { content: ''; position: absolute; z-index: -1; right: -190px; bottom: -300px; width: 500px; height: 500px; border: 1px solid rgba(215,102,49,.48); border-radius: 50%; box-shadow: 0 0 0 64px rgba(215,102,49,.045), 0 0 0 128px rgba(215,102,49,.022); }
.contact-band-mark { position: absolute; z-index: -1; top: -56px; left: 28px; color: rgba(255,255,255,.025); font-family: var(--font-montserrat); font-size: 340px; font-weight: 700; line-height: 1; }
.contact-band-copy { position: relative; z-index: 2; }
.contact-band-copy > p { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: #d68159; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.contact-band-copy > p i { width: 26px; height: 1px; display: block; background: currentColor; }
.contact-band h2 { max-width: 760px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(48px, 5.6vw, 76px); font-weight: 400; line-height: .94; letter-spacing: -.055em; }
.contact-band h2 em { color: #d76631; font-style: normal; }
.contact-band-copy > span { display: block; max-width: 560px; margin-top: 24px; color: #a9becb; font-size: 15px; line-height: 1.65; }
.contact-band-panel { position: relative; z-index: 2; padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(5,24,40,.54); box-shadow: 0 20px 50px rgba(0,8,16,.18); backdrop-filter: blur(12px); }
.contact-band-panel > p { margin: 0 0 18px; color: #9cb4c2; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-band-cta { min-height: 60px; padding: 0 13px 0 19px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-radius: 13px; background: #d76631; color: var(--white); font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; transition: background .25s ease; }
.contact-band-cta:hover { background: #e17442; }
.contact-band-cta b { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
.contact-band-cta svg { width: 16px; height: 16px; display: block; }
.contact-band-cta path { stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-band-phone { margin-top: 18px; padding-top: 17px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-band-phone small { color: #8ea7b6; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-band-phone strong { font-size: 14px; }
.contact-band-panel > span { display: block; margin-top: 18px; color: #809baa; font-size: 10px; line-height: 1.55; }

.site-footer { position: relative; overflow: hidden; isolation: isolate; border-top: 1px solid rgba(140,185,207,.13); background: #031421; color: var(--white); }
.site-footer::before { content: ''; position: absolute; z-index: -2; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 76%); }
.site-footer::after { content: ''; position: absolute; z-index: -1; right: -230px; bottom: -500px; width: 760px; height: 760px; border: 1px solid rgba(47,131,179,.2); border-radius: 50%; box-shadow: 0 0 0 92px rgba(47,131,179,.028), 0 0 0 184px rgba(47,131,179,.016); }
.footer-mark { position: absolute; z-index: -1; top: -88px; left: max(8px, calc((100vw - 1280px) / 2)); color: rgba(255,255,255,.02); font-family: var(--font-montserrat); font-size: 470px; font-weight: 700; line-height: 1; }
.footer-main { width: min(100% - 48px, 1280px); margin-inline: auto; padding: 52px 0 36px; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr); column-gap: clamp(60px, 8vw, 118px); row-gap: 36px; }
.footer-intro h2 { max-width: 760px; margin: 30px 0 0; font-family: var(--font-montserrat); font-size: clamp(40px, 4.4vw, 58px); font-weight: 400; line-height: 1; letter-spacing: -.055em; }
.footer-intro h2 em { color: #d87548; font-style: normal; }
.footer-brand { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand img { width: 188px; height: auto; filter: brightness(0) invert(1); opacity: .98; }
.footer-brand p { margin: 0; color: #708d9e; font-size: 9px; font-weight: 800; letter-spacing: .14em; line-height: 1.6; text-align: right; text-transform: uppercase; }
.footer-label { margin: 0 0 16px; color: #d87548; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .17em; }
.footer-contact-column { align-self: end; padding: 20px 0 2px 28px; border-left: 1px solid rgba(255,255,255,.13); }
.footer-contact-links { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-links a { display: flex; flex-direction: column; gap: 5px; }
.footer-contact-links small { color: #648193; font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact-links strong { color: #edf3f6; font-size: clamp(16px, 1.8vw, 25px); font-weight: 500; letter-spacing: -.025em; overflow-wrap: anywhere; }
.footer-social-links { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.footer-social-links a { min-width: 116px; min-height: 44px; padding: 5px 13px 5px 5px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.025); color: #c7d7df; font-size: 10px; font-weight: 800; transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease; }
.footer-social-links a:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.055); box-shadow: 0 9px 22px rgba(0,0,0,.16); color: var(--white); transform: translateY(-2px); }
.footer-social-icon { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.06); color: #ecf3f6; }
.footer-social-icon svg { width: 17px; height: 17px; }
.footer-social-instagram .footer-social-icon { background: linear-gradient(135deg, rgba(216,117,72,.32), rgba(143,93,168,.18)); }
.footer-social-instagram svg { stroke: currentColor; stroke-width: 1.7; }
.footer-social-instagram .footer-social-dot { fill: currentColor; stroke: none; }
.footer-social-facebook .footer-social-icon { background: rgba(47,131,179,.22); }
.footer-social-facebook svg { fill: currentColor; }
.footer-directory { grid-column: 1 / -1; padding-top: 28px; display: grid; grid-template-columns: 1.55fr .65fr; gap: clamp(60px, 8vw, 118px); border-top: 1px solid rgba(255,255,255,.12); }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 28px; }
.footer-links a { min-height: 48px; display: flex; align-items: center; gap: 13px; border-top: 1px solid rgba(255,255,255,.09); color: #d3dfe5; font-size: 13px; transition: color .2s ease, border-color .2s ease; }
.footer-links a:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-links a:hover { border-color: rgba(255,255,255,.28); color: var(--white); }
.footer-links a span { width: 20px; color: #547386; font-size: 8px; font-weight: 800; }
.footer-links a b { margin-left: auto; color: #5f7d8e; font-size: 11px; font-weight: 400; }
.footer-offices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-offices > div { min-height: 88px; padding: 12px 10px 10px 0; display: grid; grid-template-columns: 22px 1fr; gap: 8px; align-items: start; border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-offices > div > span { color: #547386; font-size: 8px; font-weight: 800; }
.footer-offices p { margin: 0; color: #7792a2; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.footer-offices strong { display: block; margin-top: 6px; color: #dce6eb; font-size: 12px; letter-spacing: 0; text-transform: none; }
.footer-bottom { width: min(100% - 48px, 1280px); margin-inline: auto; padding: 18px 0 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #668394; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-local-link { color: #7893a2; font-size: 8px; letter-spacing: .08em; text-transform: none; transition: color .2s ease; }
.footer-local-link:hover { color: #c1d2da; }

.page-hero { width: 100%; min-height: 320px; margin: -86px 0 0; padding: 112px max(40px, calc((100vw - 1280px) / 2)) 34px; display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(40px, 7vw, 104px); align-items: end; border-bottom: 1px solid rgba(255,255,255,.14); background: radial-gradient(circle at 84% 14%, rgba(47,131,179,.32), transparent 30%), linear-gradient(112deg, #050f1b 0%, #082b4a 57%, #0b5278 100%); color: var(--white); overflow: hidden; position: relative; isolation: isolate; }
.page-hero::before { content: ''; position: absolute; z-index: -2; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.page-hero::after { content: ''; position: absolute; z-index: -1; width: 420px; height: 420px; right: -150px; bottom: -310px; border: 1px solid rgba(215,102,49,.7); border-radius: 50%; box-shadow: 0 0 0 52px rgba(215,102,49,.045); }
.page-hero-mark { position: absolute; z-index: -1; right: max(20px, calc((100vw - 1280px) / 2)); top: 18px; color: rgba(255,255,255,.035); font-family: var(--font-montserrat); font-size: 310px; font-weight: 700; line-height: 1; }
.page-hero-title { position: relative; z-index: 1; }
.page-breadcrumb { margin-bottom: 17px; display: flex; align-items: center; gap: 9px; color: #7fa7bb; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.page-breadcrumb a { color: #b9d1dc; transition: color .2s ease; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb > span:last-child { max-width: 360px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { max-width: 820px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(54px, 6vw, 78px); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.page-hero-summary { position: relative; z-index: 1; align-self: end; margin-bottom: 5px; padding-left: 28px; border-left: 1px solid rgba(146,199,225,.42); }
.page-hero-summary > span { color: #92c7e1; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.page-hero-summary p { max-width: 560px; margin: 15px 0 0; color: #d1dee6; font-size: 17px; line-height: 1.6; }

.client-page-section, .work-page-section, .process-page-section { padding-block: 110px; }
.client-page-section { padding-top: 88px; }
.client-page-heading { margin-bottom: 38px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.client-page-heading > p { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.client-page-heading > p span { width: 27px; height: 1px; background: currentColor; }
.client-page-heading > div { display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.client-page-heading h2 { max-width: 820px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(40px, 4.5vw, 58px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.client-page-heading strong { display: flex; align-items: baseline; gap: 8px; color: #718696; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.client-page-heading strong b { color: var(--ink); font-family: var(--font-montserrat); font-size: 34px; font-weight: 400; letter-spacing: -.04em; }
.client-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.client-card { --client-accent: #64879b; position: relative; min-height: 224px; padding: 22px 22px 14px; display: grid; grid-template-rows: 1fr auto; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 10px 30px rgba(8,43,74,.045); }
.client-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--client-accent); opacity: .75; }
.client-card-linked { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.client-card-linked:hover { border-color: rgba(8,43,74,.24); box-shadow: 0 18px 38px rgba(8,43,74,.1); transform: translateY(-3px); }
.client-grid-logo { min-height: 140px; display: grid; place-items: center; padding: 18px 28px 24px; }
.client-grid-logo img { width: 100%; height: 100%; max-width: 230px; max-height: 96px; object-fit: contain; transition: transform .25s ease; }
.client-card-linked:hover .client-grid-logo img { transform: scale(1.035); }
.client-grid-meta { min-height: 48px; display: grid; grid-template-columns: 24px 1fr auto; gap: 10px; align-items: center; border-top: 1px solid rgba(8,43,74,.12); }
.client-grid-meta span { color: #8193a0; font-size: 8px; font-weight: 900; }
.client-grid-meta strong { color: var(--ink); font-size: 12px; font-weight: 800; }
.client-grid-meta b { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.client-card-kontder { --client-accent: #b41616; background: #fffafa; }
.client-card-mugladatatildeyiz { --client-accent: #2585a4; background: #f7fbfd; }
.client-card-shipentegra { --client-accent: #079bc2; background: #f4fbfd; }
.client-card-nazilliticaretodasi { --client-accent: #0a4a73; background: #f6f9fb; }
.client-card-viptigo { --client-accent: #3338ce; background: #f7f7ff; }
.client-card-teknosa { --client-accent: #f58220; background: #fff9f4; }
.client-card-karaca { --client-accent: #231f20; background: #fbfaf9; }
.client-card-flo { --client-accent: #ff671d; background: #fff9f5; }
.client-card-opet { --client-accent: #2581c4; background: #f5faff; }
.client-card-orange { --client-accent: #ffc17c; border-color: #e16d00; background: #eb7a12; }
.client-card-brown { --client-accent: #c97a43; border-color: #352018; background: #21130e; }
.client-card-teal { --client-accent: #78d2e2; border-color: #207b98; background: #2585a4; }
.client-card-violet { --client-accent: #9d91d2; border-color: #3d336b; background: #493d7b; }
.client-card-orange .client-grid-meta, .client-card-brown .client-grid-meta, .client-card-teal .client-grid-meta, .client-card-violet .client-grid-meta { border-top-color: rgba(255,255,255,.2); }
.client-card-orange .client-grid-meta span, .client-card-brown .client-grid-meta span, .client-card-teal .client-grid-meta span, .client-card-violet .client-grid-meta span { color: rgba(255,255,255,.58); }
.client-card-orange .client-grid-meta strong, .client-card-brown .client-grid-meta strong, .client-card-teal .client-grid-meta strong, .client-card-violet .client-grid-meta strong { color: var(--white); }
.client-card-orange .client-grid-meta b, .client-card-brown .client-grid-meta b, .client-card-teal .client-grid-meta b, .client-card-violet .client-grid-meta b { color: rgba(255,255,255,.88); }
.client-card-allcocktail .client-grid-logo img { max-width: 250px; max-height: 108px; }
.client-card-teknosa .client-grid-logo img { max-width: 188px; }
.client-card-karaca .client-grid-logo img { max-width: 182px; }
.client-card-flo .client-grid-logo img { max-width: 174px; }
.client-card-opet .client-grid-logo img { max-width: 184px; }
.work-page-section { padding-block: 88px 110px; }
.work-page-heading { margin-bottom: 34px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.work-page-heading > p { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.work-page-heading > p span { width: 27px; height: 1px; background: currentColor; }
.work-page-heading > div { display: flex; align-items: end; justify-content: space-between; gap: 42px; }
.work-page-heading-copy h2 { max-width: 790px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(40px, 4.5vw, 58px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.work-page-heading-copy > p { max-width: 700px; margin: 18px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.work-page-heading strong { display: flex; align-items: baseline; gap: 8px; color: #718696; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.work-page-heading strong b { color: var(--ink); font-family: var(--font-montserrat); font-size: 34px; font-weight: 400; letter-spacing: -.04em; }
.work-page-section .project-grid-primary { grid-template-columns: 1fr; gap: 18px; }
.work-page-section .project-grid-primary .project-card { grid-column: 1; min-height: 400px; }
.work-page-section .project-grid-primary .project-card-featured { grid-column: 1; min-height: 400px; }
.work-section .project-card-nftinit { --case-a: #47386f; --case-b: #18152f; --case-glow: 153, 121, 218; }
.work-section .project-card-surucuegitim { --case-a: #1f5f78; --case-b: #0b2938; --case-glow: 71, 169, 207; }
.work-section .project-card-temas { --case-a: #325d66; --case-b: #12282e; --case-glow: 99, 184, 192; }
.work-section .project-card-shipentegra { --case-a: #166a83; --case-b: #082b3a; --case-glow: 52, 181, 214; }
.work-section .project-card-nazilliticaretodasi { --case-a: #3e356e; --case-b: #19172e; --case-glow: 137, 121, 196; }
.work-section .project-card-viptigo { --case-a: #193b82; --case-b: #071631; --case-glow: 77, 126, 255; }
.work-section .project-card-allcocktail { --case-a: #5a2f1e; --case-b: #1a100d; --case-glow: 208, 137, 79; }
.work-section .project-card-viptigo .project-logo-wrap img,
.work-section .project-card-allcocktail .project-logo-wrap img { filter: drop-shadow(0 3px 7px rgba(2,14,24,.72)); }
.work-section .project-card-allcocktail .project-logo-wrap { width: 176px; }
@media (min-width: 981px) {
  .work-page-section .project-grid-primary .project-editorial-head { right: 30px; left: 30px; }
  .work-page-section .project-grid-primary .project-editorial-copy { top: 90px; right: auto; left: 34px; width: 245px; }
  .work-page-section .project-grid-primary .project-editorial-copy .project-logo-wrap { width: 215px; height: 76px; }
  .work-page-section .project-grid-primary .project-card-device { inset: 54px 52px 66px 34%; place-items: center end; }
  .work-page-section .project-grid-primary .project-card-viptigo .project-card-device,
  .work-page-section .project-grid-primary .project-card-allcocktail .project-card-device { right: 180px; }
  .work-page-section .project-grid-primary .project-card-device img {
    width: auto;
    height: auto;
    max-width: 78%;
    max-height: 270px;
    filter: drop-shadow(0 20px 18px rgba(2,12,21,.3));
  }
  .work-page-section .project-grid-primary .project-card-kontder .project-card-device img { max-width: 520px; max-height: 260px; }
  .work-page-section .project-grid-primary .project-editorial-footer { right: 30px; left: 30px; }
}
.process-page-section { position: relative; padding-block: 88px 118px; overflow: hidden; isolation: isolate; background: linear-gradient(180deg, #f7f9fa 0%, #eef3f6 100%); }
.process-page-section::before { content: ''; position: absolute; z-index: -1; top: 120px; right: -260px; width: 640px; height: 640px; border: 1px solid rgba(8,43,74,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(8,43,74,.018), 0 0 0 180px rgba(8,43,74,.012); }
.process-page-intro { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: clamp(54px, 8vw, 112px); align-items: end; padding-bottom: 58px; border-bottom: 1px solid rgba(8,43,74,.14); }
.process-page-intro-copy > p { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.process-page-intro-copy > p span { width: 28px; height: 1px; background: currentColor; }
.process-page-intro-copy h2 { max-width: 820px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(42px, 4.8vw, 64px); font-weight: 400; line-height: .98; letter-spacing: -.052em; }
.process-page-intro-copy > div { max-width: 700px; margin-top: 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.72; }
.process-page-overview { min-height: 246px; padding: 27px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 16px; border: 1px solid rgba(113,178,207,.2); border-radius: 26px; background: radial-gradient(circle at 86% 9%, rgba(52,139,181,.28), transparent 32%), linear-gradient(135deg, #061625, #082f4d); color: var(--white); box-shadow: 0 24px 56px rgba(8,43,74,.16); }
.process-page-overview > div { min-width: 0; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr; align-items: end; column-gap: 8px; }
.process-page-overview small { grid-column: 1 / -1; align-self: start; color: #82a5b9; font-size: 8px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.process-page-overview strong { font-family: var(--font-montserrat); font-size: 68px; font-weight: 300; line-height: .78; letter-spacing: -.08em; }
.process-page-overview > div:first-child strong { color: #df7a4d; }
.process-page-overview > div:nth-child(2) strong { color: #a9d4e6; }
.process-page-overview > div > span { padding-bottom: 4px; color: #9bb2bf; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.process-page-overview > p { grid-column: 1 / -1; margin: 0; padding-top: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); color: #cfdae0; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.process-page-overview > p i { height: 1px; position: relative; background: linear-gradient(90deg, #df7a4d, #6eb5d1); }
.process-page-overview > p i::after { content: ''; position: absolute; top: 50%; right: 0; width: 6px; height: 6px; border-top: 1px solid #6eb5d1; border-right: 1px solid #6eb5d1; transform: translateY(-50%) rotate(45deg); }
.process-journey { position: relative; margin: 64px 0 44px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 80px; list-style: none; }
.process-journey::before { content: ''; position: absolute; top: 25px; bottom: 25px; left: 50%; width: 1px; background: linear-gradient(180deg, rgba(215,102,49,.25), rgba(55,129,163,.48) 50%, rgba(215,102,49,.25)); }
.process-journey li { position: relative; min-width: 0; }
.process-journey li:nth-child(odd) { padding-right: 0; }
.process-journey li:nth-child(even) { transform: translateY(58px); }
.process-journey li::after { content: ''; position: absolute; top: 50%; width: 40px; border-top: 1px solid rgba(8,43,74,.2); }
.process-journey li:nth-child(odd)::after { right: -40px; }
.process-journey li:nth-child(even)::after { left: -40px; }
.process-journey-node { position: absolute; z-index: 3; top: 50%; width: 18px; height: 18px; display: grid; place-items: center; border: 1px solid rgba(215,102,49,.55); border-radius: 50%; background: #f3f6f8; box-shadow: 0 0 0 7px rgba(215,102,49,.07); transform: translateY(-50%); }
.process-journey li:nth-child(odd) .process-journey-node { right: -49px; }
.process-journey li:nth-child(even) .process-journey-node { left: -49px; }
.process-journey-node i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.process-journey article { position: relative; min-height: 284px; padding: 30px 32px 32px; overflow: hidden; border: 1px solid rgba(8,43,74,.13); border-radius: 26px; background: rgba(255,255,255,.92); box-shadow: 0 15px 42px rgba(8,43,74,.065); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.process-journey article::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, #d76631, #3f95b9); opacity: .78; }
.process-journey article::after { content: ''; position: absolute; right: -100px; bottom: -130px; width: 250px; height: 250px; border: 1px solid rgba(8,43,74,.05); border-radius: 50%; box-shadow: 0 0 0 36px rgba(8,43,74,.012); }
.process-journey article:hover { border-color: rgba(8,43,74,.24); box-shadow: 0 24px 56px rgba(8,43,74,.11); transform: translateY(-3px); }
.process-journey header { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.process-journey header > span { padding: 7px 10px; border: 1px solid rgba(215,102,49,.2); border-radius: 999px; background: #fff8f4; color: #b65428; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.process-journey header small { color: #8295a1; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.process-card-index { position: absolute; z-index: 0; top: 52px; right: 24px; color: rgba(8,43,74,.045); font-family: var(--font-montserrat); font-size: 112px; font-weight: 500; line-height: 1; letter-spacing: -.08em; }
.process-journey h3 { position: relative; z-index: 2; max-width: 410px; margin: 53px 0 15px; font-family: var(--font-montserrat); font-size: 34px; font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
.process-journey article > p { position: relative; z-index: 2; max-width: 490px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.72; }

.about-overview { padding-block: 72px 108px; background: linear-gradient(180deg, #f7f9fb 0%, #eef4f7 100%); }
.about-visual { position: relative; min-height: 400px; overflow: hidden; border-radius: 30px; background: #071a29; color: var(--white); box-shadow: 0 24px 62px rgba(8,43,74,.13); }
.about-visual > img { object-fit: cover; }
.about-visual-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,14,24,.82), rgba(3,14,24,.14) 52%, rgba(3,14,24,.34)), linear-gradient(0deg, rgba(3,14,24,.7), transparent 50%); }
.about-visual > p { position: absolute; left: 36px; bottom: 31px; margin: 0; display: flex; flex-direction: column; gap: 7px; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.about-visual > p span { color: var(--white); font-family: var(--font-montserrat); font-size: 22px; font-weight: 500; letter-spacing: -.02em; text-transform: none; }
.about-year-card { position: absolute; right: 28px; bottom: 28px; min-width: 210px; min-height: 116px; padding: 20px 22px; display: flex; align-items: end; gap: 14px; border: 1px solid rgba(255,255,255,.26); border-radius: 22px; background: rgba(4,23,37,.72); backdrop-filter: blur(12px); }
.about-year-card strong { font-family: var(--font-montserrat); font-size: 74px; font-weight: 400; line-height: .78; letter-spacing: -.075em; }
.about-year-card span { color: #b8ccd7; font-size: 10px; font-weight: 800; line-height: 1.45; letter-spacing: .11em; text-transform: uppercase; }
.about-story { padding: 78px 0 62px; display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(60px, 9vw, 130px); border-bottom: 1px solid rgba(8,43,74,.14); }
.about-story h2 { max-width: 730px; margin: 18px 0 0; font-family: var(--font-montserrat); font-size: clamp(42px, 5vw, 66px); font-weight: 400; line-height: 1; letter-spacing: -.055em; }
.about-story-copy { padding-top: 29px; }
.about-story-copy > p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.about-story-copy > p + p { margin-top: 16px; }
.about-expertise { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.about-expertise span { padding: 9px 12px; border: 1px solid rgba(8,43,74,.14); border-radius: 999px; background: rgba(255,255,255,.62); color: #34556a; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.about-metrics { display: grid; grid-template-columns: repeat(3, 1fr); }
.about-metrics article { min-height: 176px; padding: 35px 30px 28px; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-content: end; border-right: 1px solid rgba(8,43,74,.14); }
.about-metrics article:first-child { padding-left: 0; }
.about-metrics article:last-child { padding-right: 0; border-right: 0; }
.about-metrics strong { font-family: var(--font-montserrat); font-size: 56px; font-weight: 400; line-height: .82; letter-spacing: -.06em; }
.about-metrics span { align-self: end; padding-bottom: 3px; color: var(--ink); font-size: 11px; font-weight: 900; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }
.about-metrics small { grid-column: 1 / -1; margin-top: 14px; color: #728795; font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.about-services-section { position: relative; padding: 96px 0 56px; overflow: hidden; background: #061a29; color: var(--white); }
.about-services-section::before { content: ''; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.about-services-section > .section-wrap { position: relative; }
.about-services-heading { margin-bottom: 46px; display: grid; grid-template-columns: 1fr .72fr; gap: 24px 80px; align-items: end; }
.about-services-heading > p { grid-column: 1 / -1; margin: 0; display: flex; align-items: center; gap: 10px; color: #d87548; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.about-services-heading > p span { width: 27px; height: 1px; background: currentColor; }
.about-services-heading h2 { max-width: 760px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(44px, 5vw, 66px); font-weight: 400; line-height: .98; letter-spacing: -.055em; }
.about-services-heading > div { max-width: 480px; color: #a8bcc8; font-size: 14px; line-height: 1.7; }
.about-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.about-service-grid > a { position: relative; min-height: 330px; padding: 26px 24px 28px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.16); transition: background .25s ease; }
.about-service-grid > a:last-child { border-right: 0; }
.about-service-grid > a:hover { background: rgba(255,255,255,.055); }
.about-service-grid > a > span { color: #d87548; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.about-service-grid > a > p { margin: 58px 0 12px; color: #6f91a3; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.about-service-grid h3 { margin: 0; font-family: var(--font-montserrat); font-size: 25px; font-weight: 500; line-height: 1.08; letter-spacing: -.03em; }
.about-service-grid > a > div { margin-top: auto; padding-top: 34px; color: #a8bcc8; font-size: 13px; line-height: 1.7; }
.about-service-grid > a > b { margin-top: 18px; color: #d87548; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.ad-section { padding: 56px 0 76px; background: linear-gradient(145deg, #e7f1f6, #dcebf3); }
.about-ad-section { margin-top: 0; }
.about-ad-section .section-heading { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); grid-template-rows: auto auto; column-gap: 64px; row-gap: 12px; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid rgba(8,43,74,.16); }
.about-ad-section .section-heading > p { grid-column: 1; grid-row: 1; margin: 0; }
.about-ad-section .section-heading h2 { grid-column: 1; grid-row: 2; max-width: 780px; }
.about-ad-section .section-heading > span { grid-column: 2; grid-row: 2; align-self: end; max-width: 430px; margin-top: 0; font-size: 15px; line-height: 1.65; }
.ad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ad-grid article { position: relative; overflow: hidden; border: 1px solid rgba(8,43,74,.12); border-radius: 22px; background: rgba(255,255,255,.92); color: var(--ink); box-shadow: 0 14px 34px rgba(8,43,74,.075); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.ad-grid article:hover { transform: translateY(-3px); border-color: rgba(8,43,74,.22); box-shadow: 0 20px 42px rgba(8,43,74,.11); }
.ad-card-visual { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #edf4f7; }
.ad-card-visual img { object-fit: cover; transition: transform .45s ease; }
.ad-grid article:hover .ad-card-visual img { transform: scale(1.025); }
.ad-card-body { min-height: 92px; padding: 19px 21px 20px; display: grid; grid-template-columns: 28px 1fr; gap: 13px; align-items: start; border-top: 1px solid rgba(8,43,74,.1); }
.ad-card-body > span { padding-top: 5px; color: #d87548; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.ad-card-body small { color: #738b9a; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.ad-grid h3 { margin: 6px 0 0; font-family: var(--font-montserrat); font-size: 22px; font-weight: 500; line-height: 1; letter-spacing: -.03em; }
.about-contact { padding-block: 80px; }

.contact-section { padding-block: 74px 84px; }
.contact-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid rgba(8,43,74,.12); border-radius: 30px; background: #071c2d; box-shadow: 0 26px 70px rgba(8,43,74,.11); }
.contact-copy { position: relative; min-height: 590px; padding: clamp(42px, 5vw, 68px); display: flex; flex-direction: column; overflow: hidden; color: var(--white); isolation: isolate; }
.contact-copy::before { content: ''; position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 96% 2%, rgba(25,123,171,.35), transparent 38%), linear-gradient(145deg, #061725, #0a2b42); }
.contact-copy::after { content: 'R'; position: absolute; z-index: -1; right: -28px; bottom: -98px; color: rgba(255,255,255,.025); font-family: var(--font-montserrat); font-size: 390px; font-weight: 800; line-height: 1; }
.contact-copy .section-kicker, .office-heading .section-kicker { display: flex; align-items: center; gap: 10px; margin: 0; }
.contact-copy .section-kicker span, .office-heading .section-kicker span { width: 27px; height: 1px; background: currentColor; }
.contact-copy h2 { max-width: 540px; margin: 36px 0 0; font-family: var(--font-montserrat); font-size: clamp(38px, 4vw, 54px); font-weight: 400; line-height: 1.02; letter-spacing: -.05em; }
.contact-copy h2 em { color: #7fc1d9; font-style: normal; }
.contact-lead { max-width: 500px; margin: 25px 0 0; color: #b8cad4; font-size: 15px; line-height: 1.75; }
.direct-contact { margin-top: auto; padding-top: 46px; display: grid; gap: 10px; }
.direct-contact a { min-height: 76px; padding: 13px 16px; display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.055); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.direct-contact a:hover { transform: translateX(3px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.09); }
.contact-link-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: rgba(215,101,49,.16); color: #ee8d5f; }
.contact-link-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.contact-link-copy { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.contact-link-copy small { color: #7894a5; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-link-copy strong { overflow: hidden; font-size: 14px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.direct-contact a > b { color: #7894a5; font-size: 13px; }
.contact-form { min-height: 590px; padding: clamp(36px, 4.5vw, 64px); border: 0; border-radius: 0; background: var(--white); }
.contact-form-heading { margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact-form-heading > span { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-form-heading h3 { margin: 11px 0 0; font-family: var(--font-montserrat); font-size: clamp(30px, 3vw, 40px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.contact-form-heading p { max-width: 560px; margin: 13px 0 0; color: #6c7e8b; font-size: 12px; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 15px; color: var(--ink-soft); font-size: 11px; font-weight: 800; }
.contact-form label > span { display: block; margin-bottom: 8px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 15px; border: 1px solid #cbd8dc; border-radius: 10px; background: #f8fafb; color: var(--ink); font: inherit; font-size: 13px; outline: none; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9ba9b2; }
.contact-form textarea { min-height: 116px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(91,182,189,.14); }
.contact-form .button { border: 0; cursor: pointer; font: inherit; }
.contact-form-action { margin-top: 4px; display: flex; align-items: center; gap: 18px; }
.contact-form-action .button { min-height: 50px; gap: 28px; border-radius: 10px; padding-inline: 20px 14px; }
.contact-form-action .button:disabled { cursor: wait; opacity: .72; }
.contact-form-action .button b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.14); font-size: 11px; }
.form-note { max-width: 210px; margin: 0; color: #71828e; font-size: 10px; line-height: 1.5; }
.form-status { min-height: 18px; margin: 9px 0 0; color: #607583; font-size: 11px; font-weight: 800; }
.form-status-success { color: #18754d; }
.form-status-error { color: #b33d2e; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.office-section { position: relative; padding-block: 82px 94px; overflow: hidden; background: #e6f0f5; }
.office-heading { margin-bottom: 36px; display: grid; grid-template-columns: 1fr .66fr; gap: 64px; align-items: end; }
.office-heading h2 { margin: 20px 0 0; font-family: var(--font-montserrat); font-size: clamp(38px, 4.7vw, 62px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.office-heading > p { max-width: 470px; margin: 0 0 4px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.office-grid article { position: relative; min-height: 280px; padding: 26px 28px 24px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(8,43,74,.1); border-radius: 20px; background: rgba(255,255,255,.92); box-shadow: 0 12px 34px rgba(8,43,74,.055); transition: transform .25s ease, box-shadow .25s ease; }
.office-grid article:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(8,43,74,.09); }
.office-card-top { display: flex; align-items: center; justify-content: space-between; }
.office-card-top > span { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.office-card-top > small { color: #668393; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.office-grid h3 { margin: 40px 0 0; font-family: var(--font-montserrat); font-size: 34px; font-weight: 500; letter-spacing: -.04em; }
.office-grid address { max-width: 340px; margin: 15px 0 28px; color: var(--ink-soft); font-size: 12px; font-style: normal; line-height: 1.65; }
.office-grid a { margin-top: auto; padding-top: 15px; display: grid; grid-template-columns: 24px 1fr; grid-template-rows: auto auto; align-items: center; border-top: 1px solid var(--line); }
.office-grid a > span { grid-row: 1 / 3; width: 24px; height: 24px; display: grid; place-items: center; color: var(--orange); font-size: 10px; }
.office-grid a small { color: #82929c; font-size: 7px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.office-grid a strong { margin-top: 3px; font-size: 12px; font-weight: 900; }

.project-hero-detail { position: relative; width: 100%; min-height: 700px; margin: -86px 0 0; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: var(--ink); color: var(--white); isolation: isolate; }
.project-hero-bg { z-index: -3; object-fit: cover; }
.project-hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(100deg, rgba(3,14,24,.99) 0%, rgba(8,43,74,.92) 48%, rgba(12,95,140,.55) 100%), linear-gradient(0deg, rgba(3,14,24,.6), transparent 44%); }
.project-hero-copy { padding: 136px 6vw 54px max(40px, calc((100vw - 1280px) / 2)); display: flex; flex-direction: column; justify-content: center; }
.project-detail-logo { width: 230px; height: 100px; margin-bottom: 26px; display: flex; align-items: center; }
.project-detail-logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; filter: drop-shadow(0 3px 10px rgba(0,0,0,.12)); }
.project-hero-copy h1 { margin: 0; font-family: var(--font-montserrat); font-size: clamp(46px, 6vw, 82px); line-height: .98; letter-spacing: -.055em; }
.platforms { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.platforms span { border-color: #617985; }
.project-links { position: absolute; z-index: 3; left: max(40px, calc((100vw - 1280px) / 2)); bottom: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.project-link { position: relative; min-width: 146px; min-height: 60px; padding: 9px 12px 9px 10px; display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.42); border-radius: 15px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 12px 28px rgba(0,0,0,.14); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.project-link:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.85); box-shadow: 0 16px 34px rgba(0,0,0,.2); }
.project-link-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--ink); color: #fff; }
.project-link-website .project-link-icon { background: rgba(185,87,42,.12); color: var(--orange); }
.project-link-icon svg { width: 20px; height: 20px; display: block; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.project-link-appStore .project-link-icon svg { width: 19px; height: 19px; fill: currentColor; stroke: none; }
.project-link-copy { min-width: 0; display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.project-link-copy small { color: #6e7d89; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.project-link-copy strong { font-size: 12px; font-weight: 900; white-space: nowrap; }
.project-link-arrow { position: absolute; right: 11px; top: 11px; color: #7f8d98; font-size: 11px; font-weight: 900; line-height: 1; }
.project-hero-device { display: grid; place-items: center; min-width: 0; padding: 104px max(40px, calc((100vw - 1280px) / 2)) 20px 0; }
.project-hero-device img { width: 110%; height: 100%; max-height: 590px; object-fit: contain; filter: drop-shadow(0 34px 32px rgba(0,0,0,.28)); }
.project-story { padding-block: 120px; display: grid; grid-template-columns: .45fr 1fr; gap: 70px; }
.project-story .section-heading { display: block; margin: 0; }
.project-story .section-heading h2 { margin-top: 18px; }
.project-story-copy > p { margin: 0; color: var(--ink-soft); font-size: 20px; line-height: 1.8; }
.project-story-copy article { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.project-story-copy article:first-child { padding-top: 0; }
.project-story-copy article span { color: var(--orange); font-size: 11px; font-weight: 900; }
.project-story-copy article p { margin: 0; color: var(--ink-soft); line-height: 1.75; }
.project-gallery-section { padding-block: 120px; background: var(--teal-light); }
.project-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: center; }
.project-gallery > div { min-height: 580px; display: grid; place-items: center; padding: 30px; border-radius: 24px; background: rgba(255,255,255,.7); overflow: hidden; }
.project-gallery img { width: 100%; height: 100%; max-height: 640px; object-fit: contain; filter: drop-shadow(0 24px 20px rgba(16,45,62,.18)); }
.project-gallery-single { grid-template-columns: 1fr; }
.page-hero + .section-wrap, .project-hero-detail + .section-wrap { padding-top: 82px; }
.project-gallery-single > div { min-height: 650px; }

.workery-detail-hero { position: relative; min-height: 790px; margin-top: -86px; overflow: hidden; isolation: isolate; background: #061b24; color: #fff; }
.workery-detail-bg { z-index: -4; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.05); }
.workery-detail-overlay { position: absolute; z-index: -3; inset: 0; background: linear-gradient(90deg, rgba(3,19,27,.99) 0%, rgba(4,25,34,.96) 39%, rgba(4,27,35,.72) 61%, rgba(3,20,27,.34) 100%), linear-gradient(0deg, rgba(3,18,25,.97) 0%, rgba(3,18,25,.2) 55%, rgba(3,18,25,.5) 100%); }
.workery-detail-grid { position: absolute; z-index: -2; inset: 0; opacity: .13; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(90deg, #000 0%, #000 46%, transparent 78%); }
.workery-detail-hero-inner { min-height: 684px; padding-top: 118px; padding-bottom: 76px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); align-items: center; gap: clamp(36px, 5vw, 78px); }
.workery-detail-copy { position: relative; z-index: 2; min-width: 0; }
.workery-detail-copy .eyebrow { margin-bottom: 18px; color: #a9c6c5; }
.workery-detail-logo { width: 206px; height: 70px; margin-bottom: 25px; display: flex; align-items: center; }
.workery-detail-logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; filter: brightness(0) invert(1) drop-shadow(0 5px 12px rgba(0,0,0,.24)); }
.project-case-shell:not(.project-case-theworkery) .workery-detail-logo img { filter: drop-shadow(0 5px 12px rgba(0,0,0,.24)); }
.workery-detail-copy h1 { max-width: 700px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(48px, 4.7vw, 68px); font-weight: 400; line-height: .99; letter-spacing: -.05em; }
.workery-detail-copy h1 em, .workery-case-heading h2 em, .workery-screens-heading h2 em { color: var(--project-accent, #83d1c2); font-style: normal; }
.workery-detail-copy > p:not(.eyebrow) { max-width: 600px; margin: 24px 0 0; color: #bfd0d1; font-size: 15px; line-height: 1.72; }
.workery-platforms { margin-top: 22px; }
.workery-platforms .platform-icon { width: 40px; height: 40px; padding: 7px !important; border-color: rgba(255,255,255,.24) !important; background: rgba(255,255,255,.07) !important; backdrop-filter: blur(8px); }
.workery-detail-links { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.workery-detail-links-mobile { display: none; }
.workery-detail-links .project-link { min-width: 144px; min-height: 56px; border-color: rgba(255,255,255,.18); border-radius: 13px; box-shadow: 0 16px 34px rgba(0,0,0,.2); }
.workery-detail-device { position: relative; z-index: 1; min-width: 0; display: grid; place-items: center; }
.workery-detail-device::before { content: ''; position: absolute; z-index: -1; width: min(90%, 520px); aspect-ratio: 1; border: 1px solid color-mix(in srgb, var(--project-accent, #83d1c2) 42%, transparent); border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--project-accent, #83d1c2) 20%, transparent), transparent 65%); }
.workery-detail-device > span { position: absolute; z-index: 3; top: 9%; right: 3%; min-width: 150px; padding: 13px 15px; display: flex; flex-direction: column; gap: 5px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(3,24,31,.72); box-shadow: 0 16px 35px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.workery-detail-device > span b { font-size: 11px; letter-spacing: .04em; }
.workery-detail-device > span small { color: #93b7b4; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.workery-detail-device img { width: 112%; max-width: 650px; height: auto; filter: drop-shadow(0 36px 30px rgba(0,0,0,.4)); }
.workery-detail-facts { min-height: 106px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.workery-detail-facts > div { position: relative; min-width: 0; padding: 22px 28px 20px 48px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.16); }
.workery-detail-facts > div:first-child { padding-left: 0; }
.workery-detail-facts > div:last-child { border-right: 0; }
.workery-detail-facts span { position: absolute; top: 24px; left: 20px; color: var(--project-accent, #83d1c2); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.workery-detail-facts > div:first-child span { left: 0; }
.workery-detail-facts small { margin-bottom: 7px; color: #79989d; font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.workery-detail-facts strong { font-size: 14px; font-weight: 800; }

.workery-case-section { padding-block: 104px 116px; background: #f3f6f5; }
.workery-case-heading, .workery-screens-heading { margin-bottom: 60px; display: grid; grid-template-columns: minmax(130px, .32fr) minmax(0, 1fr) minmax(280px, .55fr); column-gap: clamp(28px, 4vw, 64px); align-items: end; }
.workery-case-heading .section-kicker, .workery-screens-heading .section-kicker { align-self: start; display: flex; align-items: center; gap: 9px; }
.workery-case-heading .section-kicker span, .workery-screens-heading .section-kicker span { width: 23px; height: 2px; background: currentColor; }
.workery-case-heading h2, .workery-screens-heading h2 { margin: 0; font-family: var(--font-montserrat); font-size: clamp(44px, 4.7vw, 64px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.workery-case-heading h2 em { color: var(--project-accent-dark, #17746c); }
.workery-case-heading > p:last-child, .workery-screens-heading > p:last-child { margin: 0 0 5px; color: #607179; font-size: 14px; line-height: 1.75; }
.workery-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #aebfbd; border-bottom: 1px solid #d3dddb; }
.workery-case-grid article { min-width: 0; min-height: 344px; padding: 27px 34px 34px; border-right: 1px solid #d3dddb; }
.workery-case-grid article:first-child { padding-left: 0; }
.workery-case-grid article:last-child { padding-right: 0; border-right: 0; }
.workery-case-index { display: flex; align-items: center; gap: 14px; }
.workery-case-index span { color: var(--project-accent-dark, #17746c); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.workery-case-index small { color: #6d7e81; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.workery-case-grid h3 { max-width: 310px; min-height: 88px; margin: 42px 0 20px; font-family: var(--font-montserrat); font-size: 28px; font-weight: 500; line-height: 1.12; letter-spacing: -.035em; }
.workery-case-grid article > p { margin: 0; color: #53666b; font-size: 13px; line-height: 1.78; }
.workery-case-summary { min-height: 270px; padding-block: 34px 42px; display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(46px, 7vw, 100px); border-top: 1px solid #aebfbd; border-bottom: 1px solid #d3dddb; }
.workery-case-summary > div { display: grid; grid-template-columns: 34px 1fr; align-content: start; }
.workery-case-summary > div > span { color: var(--project-accent-dark, #17746c); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.workery-case-summary > div > small { color: #6d7e81; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.workery-case-summary h3 { grid-column: 1 / -1; max-width: 470px; margin: 48px 0 0; font-family: var(--font-montserrat); font-size: clamp(30px, 3vw, 42px); font-weight: 500; line-height: 1.06; letter-spacing: -.04em; }
.workery-case-summary > p { max-width: 710px; margin: 34px 0 0; color: #53666b; font-size: 16px; line-height: 1.85; }

.workery-screens-section { padding-block: 108px 122px; overflow: hidden; background: #061b24; color: #fff; }
.workery-screens-heading .section-kicker { color: var(--project-accent, #83d1c2); }
.workery-screens-heading > p:last-child { color: #9fb5b8; }
.workery-screens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; align-items: start; }
.workery-screens-grid article { min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.045); }
.workery-screens-grid article:nth-child(2) { margin-top: 34px; }
.workery-screen-visual { min-height: 570px; padding: 25px 25px 0; display: grid; place-items: end center; background: radial-gradient(circle at 50% 44%, rgba(76,167,151,.18), transparent 55%); }
.workery-screen-visual img { width: 100%; max-width: 265px; height: 535px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 26px 24px rgba(0,0,0,.38)); }
.workery-screen-caption { min-height: 106px; padding: 20px 22px; display: grid; grid-template-columns: 34px 1fr; gap: 13px; border-top: 1px solid rgba(255,255,255,.12); }
.workery-screen-caption > span { padding-top: 3px; color: var(--project-accent, #83d1c2); font-size: 9px; font-weight: 900; }
.workery-screen-caption small { color: #78969a; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.workery-screen-caption h3 { margin: 7px 0 0; font-family: var(--font-montserrat); font-size: 20px; font-weight: 500; line-height: 1.15; letter-spacing: -.02em; }
.workery-screens-grid-single { grid-template-columns: 1fr; }
.workery-screens-grid-single article { width: 100%; }
.workery-screens-grid-single article:nth-child(2) { margin-top: 0; }
.workery-screens-grid-single .workery-screen-visual { min-height: 620px; padding: 36px 42px 0; place-items: center; }
.workery-screens-grid-single .workery-screen-visual img { width: 100%; max-width: 1100px; height: 570px; object-fit: contain; object-position: center; }
.workery-screens-grid-single .workery-screen-caption { grid-template-columns: 42px 1fr; }
.project-case-shell { display: flow-root; }
.project-case-viptigo .workery-detail-device img,
.project-case-allcocktail .workery-detail-device img { width: min(86%, 510px); max-height: 610px; object-fit: contain; }
.project-case-allcocktail .workery-detail-logo { width: 230px; height: 74px; }
.workery-contact { padding-block: 74px 16px; }
.not-found { width: min(100% - 48px, 1100px); min-height: 620px; margin: 0 auto 90px; padding: 70px; display: flex; flex-direction: column; align-items: start; justify-content: center; border-radius: 34px; background: var(--ink); color: var(--white); }
.not-found > span { color: var(--orange); font-family: var(--font-montserrat); font-size: 18px; font-weight: 900; }
.not-found h1 { max-width: 780px; margin: 20px 0; font-family: var(--font-montserrat); font-size: clamp(46px, 7vw, 88px); line-height: .98; letter-spacing: -.055em; }
.not-found p { margin: 0 0 32px; color: #b9cbd3; font-size: 17px; }

.service-detail-page { --service-accent: #65add2; --service-rgb: 101, 173, 210; }
.service-theme-mobil { --service-accent: #ff6b5f; --service-rgb: 255, 107, 95; }
.service-theme-yazilim { --service-accent: #6fa0ff; --service-rgb: 111, 160, 255; }
.service-theme-web { --service-accent: #62d4dc; --service-rgb: 98, 212, 220; }
.service-theme-reklam { --service-accent: #ddff65; --service-rgb: 221, 255, 101; }
.service-hero { position: relative; min-height: 656px; margin-top: -86px; padding-top: 86px; overflow: hidden; isolation: isolate; background: #03101c; color: #fff; }
.service-hero::before { content: ''; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 78% 28%, rgba(var(--service-rgb),.2), transparent 29%), radial-gradient(circle at 20% 100%, rgba(var(--service-rgb),.09), transparent 34%); }
.service-hero-backdrop { z-index: -4; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.08); opacity: .42; transform: scale(1.035); }
.service-hero-yazilim .service-hero-backdrop { object-position: center 45%; opacity: .36; }
.service-hero-web .service-hero-backdrop { object-position: center; opacity: .29; }
.service-hero-shade { position: absolute; z-index: -3; inset: 0; background: linear-gradient(90deg, #03101c 0%, rgba(3,16,28,.96) 37%, rgba(3,16,28,.5) 66%, rgba(3,16,28,.76) 100%), linear-gradient(180deg, rgba(3,16,28,.16), #03101c 96%); }
.service-hero-grid { position: absolute; z-index: -2; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 78px 78px; mask-image: linear-gradient(90deg, #000, #000 48%, transparent 88%); }
.service-hero-inner { min-height: 496px; padding-top: 48px; padding-bottom: 30px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(470px, .92fr); gap: 16px; align-items: stretch; }
.service-hero-copy { position: relative; z-index: 4; min-width: 0; align-self: center; padding-right: 30px; }
.service-hero .page-breadcrumb { margin-bottom: 22px; }
.service-hero .eyebrow { margin-bottom: 17px; color: color-mix(in srgb, var(--service-accent) 78%, #fff); }
.service-hero .eyebrow span { background: var(--service-accent); }
.service-hero h1 { max-width: 720px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(54px, 5.4vw, 78px); font-weight: 400; line-height: .95; letter-spacing: -.055em; }
.service-hero h1 span { white-space: nowrap; }
.service-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 23px 0 0; color: #c6d5dc; font-size: 15px; line-height: 1.68; }
.service-hero-actions { margin-top: 27px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.service-hero-primary { min-height: 52px; border-radius: 7px; background: var(--service-accent); color: #061827; box-shadow: 0 16px 34px rgba(0,0,0,.2); }
.service-hero-primary:hover { filter: brightness(1.08); }
.service-hero-secondary { display: flex; align-items: center; gap: 13px; color: #eef5f7; font-size: 13px; font-weight: 800; }
.service-hero-secondary b { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--service-accent); font-size: 11px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.service-hero-secondary:hover b { background: #fff; color: #082b4a; transform: translate(2px, -2px); }
.service-hero-scene, .service-ad-scene { position: relative; min-height: 496px; display: block; color: #fff; }
.service-scene-number { position: absolute; z-index: 0; top: 5px; right: -8px; color: rgba(255,255,255,.08); font-family: var(--font-montserrat); font-size: 156px; font-weight: 600; line-height: .8; letter-spacing: -.08em; }
.service-scene-device { position: absolute; z-index: 2; right: -12%; bottom: -18px; width: 112%; height: 94%; object-fit: contain; object-position: right bottom; filter: drop-shadow(0 34px 30px rgba(0,0,0,.42)); transition: transform .45s ease; }
.service-hero-scene:hover .service-scene-device { transform: translateY(-6px); }
.service-hero-scene-viptigo .service-scene-device { right: -3%; bottom: -74px; width: 80%; height: 112%; }
.service-scene-brand { position: absolute; z-index: 4; top: 42px; left: 6px; width: 166px; height: 62px; display: grid; place-items: center; }
.service-scene-brand img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.service-hero-scene-kontder .service-scene-brand { width: 90px; height: 90px; }
.service-hero-scene-smartshop .service-scene-brand { top: 34px; width: 174px; }
.service-scene-caption { position: absolute; z-index: 5; left: 6px; bottom: 30px; width: 190px; padding-top: 15px; display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,.44); }
.service-scene-caption small { color: var(--service-accent); font-size: 7px; font-style: normal; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.service-scene-caption strong { margin-top: 8px; font-family: var(--font-montserrat); font-size: 20px; font-weight: 600; }
.service-scene-caption em { margin-top: 4px; color: #aebfc8; font-size: 8px; font-style: normal; font-weight: 700; }
.service-scene-caption b { margin-top: 14px; color: #fff; font-size: 9px; font-weight: 900; }
.service-scene-stack { position: absolute; z-index: 2; inset: 30px -11% -92px 11%; display: flex; align-items: end; justify-content: center; gap: 0; filter: drop-shadow(0 30px 32px rgba(0,0,0,.5)); }
.service-scene-stack img { width: 35%; max-height: 520px; object-fit: contain; transition: transform .45s ease; }
.service-scene-stack img:first-child { transform: translate(22%, 26px) rotate(-7deg); }
.service-scene-stack img:nth-child(2) { z-index: 2; transform: translateY(-8px); }
.service-scene-stack img:nth-child(3) { transform: translate(-22%, 30px) rotate(7deg); }
.service-hero-scene:hover .service-scene-stack img:first-child { transform: translate(18%, 18px) rotate(-8deg); }
.service-hero-scene:hover .service-scene-stack img:nth-child(2) { transform: translateY(-15px); }
.service-hero-scene:hover .service-scene-stack img:nth-child(3) { transform: translate(-18%, 22px) rotate(8deg); }
.service-ad-scene { padding: 54px 0 30px 46px; }
.service-ad-scene::before { content: ''; position: absolute; inset: 28px -12vw 22px 0; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.15); background: linear-gradient(135deg, rgba(var(--service-rgb),.1), rgba(255,255,255,.015)); transform: skewY(-2deg); }
.service-ad-platforms { position: relative; z-index: 2; display: grid; }
.service-ad-platforms p { min-height: 92px; margin: 0; display: grid; grid-template-columns: 58px 1fr 24px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.18); }
.service-ad-platforms p:first-child { border-top: 1px solid rgba(255,255,255,.18); }
.service-ad-platforms span { color: var(--service-accent); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-ad-platforms strong { font-family: var(--font-montserrat); font-size: clamp(30px, 3.5vw, 48px); font-weight: 400; letter-spacing: -.05em; }
.service-ad-platforms i { color: #77909c; font-size: 8px; font-style: normal; font-weight: 900; }
.service-ad-flow { position: relative; z-index: 2; margin-top: 22px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 10px; color: #a9bbc4; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.service-ad-flow i { height: 1px; background: linear-gradient(90deg, rgba(var(--service-rgb),.8), rgba(255,255,255,.2)); }
.service-hero-rail { position: relative; z-index: 6; min-height: 74px; border-top: 1px solid rgba(255,255,255,.15); background: rgba(2,12,21,.56); backdrop-filter: blur(12px); }
.service-hero-rail > div { min-height: 74px; display: grid; grid-template-columns: repeat(3, 1fr); }
.service-hero-rail p { margin: 0; padding: 15px 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.13); }
.service-hero-rail p:first-child { padding-left: 0; }
.service-hero-rail p:last-child { border-right: 0; }
.service-hero-rail small { color: #718d9d; font-size: 7px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.service-hero-rail strong { margin-top: 7px; color: #e6eef2; font-size: 11px; font-weight: 800; }
.service-detail-overview { padding: 78px 0 0; background: var(--paper); }
.service-detail-intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(44px, 8vw, 112px); align-items: end; }
.service-detail-intro h2 { max-width: 820px; margin: 20px 0 0; font-family: var(--font-montserrat); font-size: clamp(44px, 5.4vw, 68px); font-weight: 400; line-height: .98; letter-spacing: -.055em; }
.service-detail-intro > p { margin: 0; padding-left: 28px; border-left: 1px solid #bfd0d9; color: #536b79; font-size: 16px; line-height: 1.75; }
.service-detail-facts { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #cbd9e0; border-radius: 22px; background: #fff; box-shadow: 0 18px 42px rgba(8,43,74,.055); overflow: hidden; }
.service-detail-facts > div { min-height: 134px; padding: 26px 30px; display: flex; flex-direction: column; border-right: 1px solid #d7e1e8; }
.service-detail-facts > div:last-child { border-right: 0; }
.service-detail-facts small { color: color-mix(in srgb, var(--service-accent) 70%, #7c341d); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.service-detail-facts strong { margin-top: auto; font-family: var(--font-montserrat); font-size: 25px; font-weight: 500; letter-spacing: -.035em; }
.service-detail-facts span { margin-top: 7px; color: #758b97; font-size: 11px; font-weight: 700; }
.service-scope-section { padding: 96px 0 84px; }
.service-scope-section .section-heading { grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); grid-template-rows: auto auto; column-gap: 64px; row-gap: 14px; margin-bottom: 34px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.service-scope-section .section-heading > p { grid-column: 1; grid-row: 1; margin: 0; }
.service-scope-section .section-heading h2 { grid-column: 1; grid-row: 2; max-width: 760px; }
.service-scope-section .section-heading > span { grid-column: 2; grid-row: 2; align-self: end; max-width: 430px; margin: 0; font-size: 15px; line-height: 1.65; }
.service-scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cad8df; border-bottom: 1px solid #cad8df; }
.service-scope-grid article { min-height: 290px; padding: 28px 30px; display: flex; flex-direction: column; border-right: 1px solid #cad8df; }
.service-scope-grid article:last-child { border-right: 0; }
.service-scope-grid article > span { color: color-mix(in srgb, var(--service-accent) 70%, #7c341d); font-size: 10px; font-weight: 900; letter-spacing: .11em; }
.service-scope-grid h3 { margin: 62px 0 0; font-family: var(--font-montserrat); font-size: 28px; font-weight: 500; line-height: 1.08; letter-spacing: -.04em; }
.service-scope-grid p { margin: auto 0 0; padding-top: 28px; color: #536b79; font-size: 13px; line-height: 1.7; }
.service-process-link { min-height: 76px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-radius: 0 0 16px 16px; background: #071d30; color: #fff; }
.service-process-link p { margin: 0; color: #8da8b7; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.service-process-link p span { margin-inline: 7px; color: var(--service-accent); }
.service-process-link a { display: flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 800; }
.service-process-link a b { color: var(--service-accent); }
.service-project-section { padding-top: 88px; }
.service-project-section .service-project-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.service-project-section .service-project-grid .project-card { grid-column: span 4; min-height: 430px; }
.service-faq-section { position: relative; padding: 92px 0; overflow: hidden; background: radial-gradient(circle at 94% 8%, rgba(47,131,179,.2), transparent 30%), #071d30; color: #fff; }
.service-faq-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 8vw, 116px); }
.service-faq-heading { align-self: start; position: sticky; top: 28px; }
.service-faq-heading h2 { margin: 22px 0 0; font-family: var(--font-montserrat); font-size: clamp(40px, 4.6vw, 60px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.service-faq-heading > p:last-child { max-width: 450px; margin: 24px 0 0; color: #a8bcc8; font-size: 14px; line-height: 1.7; }
.service-faq-list { border-top: 1px solid rgba(255,255,255,.18); }
.service-faq-list details { border-bottom: 1px solid rgba(255,255,255,.18); }
.service-faq-list summary { min-height: 88px; padding: 20px 0; display: grid; grid-template-columns: 38px 1fr 30px; gap: 16px; align-items: center; list-style: none; cursor: pointer; font-family: var(--font-montserrat); font-size: 20px; font-weight: 500; line-height: 1.25; }
.service-faq-list summary::-webkit-details-marker { display: none; }
.service-faq-list summary > span { color: var(--service-accent); font-family: var(--font-manrope); font-size: 9px; font-weight: 900; }
.service-faq-list summary > b { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--service-accent); font-family: var(--font-manrope); font-size: 18px; font-weight: 400; transition: transform .2s ease; }
.service-faq-list details[open] summary > b { transform: rotate(45deg); }
.service-faq-answer { max-width: 760px; margin: -5px 46px 30px 54px; color: #b9cbd3; font-size: 14px; line-height: 1.78; }
.service-faq-answer p { margin: 0; }
.service-faq-answer ul { margin: 17px 0 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.service-faq-answer li { position: relative; padding-left: 18px; color: #d3dfe5; font-size: 12px; font-weight: 700; }
.service-faq-answer li::before { content: ''; position: absolute; left: 0; top: .72em; width: 7px; height: 1px; background: var(--service-accent); }
.service-directory { padding-block: 72px 56px; }
.service-directory > p { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.service-directory > p span { width: 28px; height: 1px; background: currentColor; }
.service-directory > div { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-directory a { min-height: 102px; padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-right: 1px solid var(--line); font-family: var(--font-montserrat); font-size: 16px; font-weight: 600; line-height: 1.15; }
.service-directory a:last-child { border-right: 0; }
.service-directory a b { color: color-mix(in srgb, var(--service-accent) 68%, #7c341d); font-family: var(--font-manrope); font-size: 12px; }
.service-directory a:hover, .service-directory a.is-current { background: #e8f1f5; }

.local-area-page { --service-accent: #72c6d8; --service-rgb: 114, 198, 216; }
.local-area-hero { position: relative; min-height: 670px; margin-top: -86px; padding-top: 86px; display: flex; align-items: stretch; overflow: hidden; background: #061521; color: #fff; }
.local-area-hero-bg { z-index: 0; object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.06); }
.local-area-hero-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(3,13,23,.98) 0%, rgba(3,13,23,.9) 45%, rgba(3,13,23,.35) 72%, rgba(3,13,23,.58) 100%), linear-gradient(0deg, rgba(3,13,23,.78), transparent 50%); }
.local-area-hero-inner { position: relative; z-index: 2; min-height: 584px; padding-block: 74px 56px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .55fr); gap: clamp(64px, 9vw, 140px); align-items: center; }
.local-area-hero h1 { max-width: 850px; margin: 0; font-family: var(--font-montserrat); font-size: clamp(54px, 6.3vw, 82px); font-weight: 400; line-height: .95; letter-spacing: -.055em; }
.local-area-hero-inner > div > p:not(.eyebrow) { max-width: 700px; margin: 26px 0 0; color: #c6d6de; font-size: 16px; line-height: 1.72; }
.local-area-office-card { padding: 25px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; background: rgba(3,17,28,.72); box-shadow: 0 24px 60px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.local-area-office-card > span { display: block; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.14); color: #87a5b5; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.local-area-office-card strong { display: block; margin-top: 19px; color: #fff; font-family: var(--font-montserrat); font-size: 24px; font-weight: 500; }
.local-area-office-card p { margin: 7px 0 0; color: #aabfc9; font-size: 11px; line-height: 1.55; }
.local-area-office-card a { margin-top: 22px; padding-top: 18px; display: block; border-top: 1px solid rgba(255,255,255,.14); color: var(--service-accent); font-size: 10px; font-weight: 900; }
.local-area-intro { padding: 94px 0 86px; background: var(--paper); }
.local-area-intro-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr); gap: clamp(52px, 8vw, 118px); align-items: end; }
.local-area-intro h2 { max-width: 760px; margin: 20px 0 0; font-family: var(--font-montserrat); font-size: clamp(42px, 5vw, 65px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.local-area-intro-grid > div:last-child > p { margin: 0; color: #536b79; font-size: 15px; line-height: 1.78; }
.local-area-intro-grid > div:last-child > a { margin-top: 22px; display: inline-block; color: #b5532b; font-size: 11px; font-weight: 900; }
.local-region-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #c8d7df; border-bottom: 1px solid #c8d7df; }
.local-region-grid article { min-height: 250px; padding: 25px 24px; display: flex; flex-direction: column; border-right: 1px solid #c8d7df; }
.local-region-grid article:last-child { border-right: 0; }
.local-region-grid article > span { color: #b5532b; font-size: 9px; font-weight: 900; }
.local-region-grid small { margin-top: 28px; color: #68818e; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.local-region-grid h3 { margin: 9px 0 0; font-family: var(--font-montserrat); font-size: 30px; font-weight: 500; letter-spacing: -.04em; }
.local-region-grid p { margin: auto 0 0; padding-top: 24px; color: #607784; font-size: 12px; line-height: 1.65; }
.local-district-panel { margin-top: 22px; padding: 30px; display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 54px; align-items: center; border: 1px solid #c8d7df; border-radius: 20px; background: #fff; }
.local-district-panel h3 { margin: 15px 0 0; font-family: var(--font-montserrat); font-size: 32px; font-weight: 500; letter-spacing: -.04em; }
.local-district-panel > div:first-child > p:last-child { max-width: 430px; margin: 13px 0 0; color: #607784; font-size: 12px; line-height: 1.65; }
.local-district-list { display: flex; flex-wrap: wrap; gap: 8px; }
.local-district-list span { padding: 9px 12px; border: 1px solid #cfdae0; border-radius: 999px; background: #f3f7f8; color: #365464; font-size: 9px; font-weight: 900; }
.local-service-section { padding: 92px 0; background: #fff; }
.local-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid #cbd9e0; border-radius: 22px; overflow: hidden; }
.local-service-grid a { min-height: 255px; padding: 28px 30px; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto 1fr auto; column-gap: 18px; border-right: 1px solid #d5e0e6; border-bottom: 1px solid #d5e0e6; transition: background .2s ease; }
.local-service-grid a:nth-child(even) { border-right: 0; }
.local-service-grid a:nth-last-child(-n+2) { border-bottom: 0; }
.local-service-grid a:hover { background: #eef5f7; }
.local-service-grid a > span { grid-row: 1 / 5; color: #b5532b; font-size: 9px; font-weight: 900; }
.local-service-grid small { color: #748b97; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.local-service-grid h3 { margin: 16px 0 0; font-family: var(--font-montserrat); font-size: 29px; font-weight: 500; letter-spacing: -.04em; }
.local-service-grid p { max-width: 480px; margin: 18px 0 0; color: #5a727f; font-size: 12px; line-height: 1.65; }
.local-service-grid b { margin-top: 25px; color: #b5532b; font-size: 10px; }
.local-project-section { padding-block: 92px; }
.local-project-section .service-project-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.local-project-section .project-card { grid-column: span 4; min-height: 430px; }
.local-faq-section { margin-bottom: 24px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .client-rail { overflow-x: auto; mask-image: none; scrollbar-width: none; }
  .client-rail::-webkit-scrollbar { display: none; }
  .client-rail-track { animation: none !important; transform: none; }
  .client-rail-group[aria-hidden='true'] { display: none; }
  .process-core::before { animation: none; }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  body:has(.mobile-menu[open]) { overflow: hidden; }
  .mobile-menu { display: block; position: relative; z-index: 30; }
  .mobile-menu > summary { min-width: 96px; height: 44px; padding: 0 14px 0 16px; list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid rgba(8,43,74,.35); border-radius: 12px; background: rgba(255,255,255,.76); color: var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: border-color .2s ease, background .2s ease; }
  .site-header-home .mobile-menu > summary { border-color: rgba(255,255,255,.34); background: rgba(4,18,30,.42); color: #fff; backdrop-filter: blur(10px); }
  .mobile-menu[open] > summary { border-color: rgba(255,255,255,.4); background: rgba(8,43,74,.95); color: #fff; }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu-close-text { display: none; }
  .mobile-menu[open] .mobile-menu-open-text { display: none; }
  .mobile-menu[open] .mobile-menu-close-text { display: inline; }
  .mobile-menu-icon { position: relative; width: 18px; height: 14px; display: block; }
  .mobile-menu-icon i { position: absolute; left: 0; width: 18px; height: 1.5px; border-radius: 2px; background: currentColor; transition: top .2s ease, transform .2s ease; }
  .mobile-menu-icon i:first-child { top: 3px; }
  .mobile-menu-icon i:last-child { top: 10px; }
  .mobile-menu[open] .mobile-menu-icon i:first-child { top: 6px; transform: rotate(45deg); }
  .mobile-menu[open] .mobile-menu-icon i:last-child { top: 6px; transform: rotate(-45deg); }
  .mobile-menu nav { position: fixed; z-index: 29; inset: 86px 0 0; width: 100%; height: calc(100dvh - 86px); padding: 22px max(30px, calc((100vw - 760px) / 2)) 26px; display: flex; flex-direction: column; overflow-y: auto; border-top: 1px solid rgba(255,255,255,.14); background: radial-gradient(circle at 90% 12%, rgba(47,131,179,.22), transparent 34%), linear-gradient(145deg, #050f1b 0%, #082b4a 72%, #0b5278 100%); color: #fff; box-shadow: 0 30px 70px rgba(0,0,0,.3); animation: mobile-menu-in .25s ease both; }
  .mobile-menu-links { counter-reset: mobile-nav; }
  .mobile-menu-links > a { counter-increment: mobile-nav; min-height: 58px; padding: 0 4px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.12); color: #f5f8fa; font-family: var(--font-montserrat); font-size: clamp(20px, 3.5vw, 24px); font-weight: 500; letter-spacing: -.02em; }
  .mobile-menu-links > a::before { content: '0' counter(mobile-nav); width: 22px; color: #d96b38; font-family: var(--font-manrope); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
  .mobile-menu-links > a::after { content: '→'; margin-left: auto; color: #66869a; font-family: var(--font-manrope); font-size: 15px; }
  .mobile-service-menu { counter-increment: mobile-nav; border-bottom: 1px solid rgba(255,255,255,.12); }
  .mobile-service-menu > summary { min-height: 58px; padding: 0 4px; display: grid; grid-template-columns: 38px 1fr 28px; gap: 0; align-items: center; list-style: none; cursor: pointer; color: #f5f8fa; font-family: var(--font-montserrat); font-size: clamp(20px, 3.5vw, 24px); font-weight: 500; letter-spacing: -.02em; }
  .mobile-service-menu > summary::-webkit-details-marker { display: none; }
  .mobile-service-menu > summary::before { content: '0' counter(mobile-nav); width: 22px; color: #d96b38; font-family: var(--font-manrope); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
  .mobile-service-menu > summary b { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #7896a8; font-family: var(--font-manrope); font-size: 16px; font-weight: 400; transition: transform .2s ease; }
  .mobile-service-menu[open] > summary b { color: #d87548; transform: rotate(45deg); }
  .mobile-service-menu > div { margin: 0 0 14px 38px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.12); border-radius: 15px; overflow: hidden; }
  .mobile-service-menu > div a { min-height: 72px; padding: 12px; display: grid; grid-template-columns: 20px 1fr 14px; gap: 7px; align-items: center; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
  .mobile-service-menu > div a:nth-child(even) { border-right: 0; }
  .mobile-service-menu > div a:nth-last-child(-n+2) { border-bottom: 0; }
  .mobile-service-menu > div a > span { color: #d87548; font-size: 7px; font-weight: 900; }
  .mobile-service-menu > div a strong { font-family: var(--font-montserrat); font-size: 11px; font-weight: 600; line-height: 1.15; }
  .mobile-service-menu > div a > b { color: #66869a; font-size: 10px; font-weight: 400; }
  .mobile-menu-contact { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.22); }
  .mobile-menu-contact p { margin: 0 0 14px; color: #f6f9fa; font-family: var(--font-montserrat); font-size: 19px; line-height: 1.2; letter-spacing: -.02em; }
  .mobile-menu-contact p span { display: block; margin-bottom: 5px; color: #90a8b8; font-family: var(--font-manrope); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-menu-contact > div { margin-top: 13px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #91a9b8; font-size: 10px; font-weight: 700; }
  @keyframes mobile-menu-in { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
  .hero-copy { width: min(68%, 660px); }
  .hero h1, .hero h2 { font-size: clamp(52px, 7vw, 68px); }
  .hero-showcase { width: 50%; opacity: .78; }
  .showcase-device { width: 650px; right: -38%; }
  .hero-slide-theworkery .showcase-device, .hero-slide-smartshop .showcase-device { width: 520px; right: -7%; }
  .showcase-brand { display: none; }
  .hero-rail { grid-template-columns: auto minmax(290px, 1fr); }
  .hero-project-link { display: none; }
  .service-strip { grid-template-columns: repeat(2, 1fr); }
  .service-strip div { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .section-heading > span { grid-column: 1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-section-home .service-card, .service-section-home .service-card:nth-child(2), .service-section-home .service-card:nth-child(-n+2) { border: 1px solid rgba(8,43,74,.12); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid article, .benefit-grid article:nth-child(5n), .benefit-grid article:nth-last-child(-n+2) { grid-column: auto; min-height: 210px; border: 1px solid rgba(172,203,219,.16); }
  .work-section .project-grid { grid-template-columns: repeat(2, 1fr); }
  .work-section .project-card { grid-column: auto; min-height: 440px; }
  .work-section .project-card:nth-child(-n+3) { grid-column: auto; min-height: 440px; }
  .work-section .project-card-featured { grid-column: 1 / -1; min-height: 520px; }
  .work-section .project-card:nth-child(2) { grid-column: auto; min-height: 440px; }
  .work-page-section .project-grid-primary { grid-template-columns: 1fr; }
  .work-page-section .project-grid-primary .project-card, .work-page-section .project-grid-primary .project-card:nth-child(2), .work-page-section .project-grid-primary .project-card:nth-child(-n+3) { grid-column: 1; min-height: 400px; }
  .process-preview { padding-block: 82px 70px; }
  .process-preview-head { grid-template-columns: minmax(0, 1fr) 150px; gap: 28px; }
  .process-preview .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .process-preview .section-heading > span { grid-column: 1; }
  .process-experience strong { font-size: 64px; }
  .process-blueprint { min-height: 0; padding-top: 220px; }
  .process-route { display: none; }
  .process-core { top: 92px; width: 172px; height: 172px; transform: translate(-50%, 0); }
  .process-core > span { font-size: 62px; }
  .process-core > strong { margin-top: 8px; font-size: 9px; }
  .process-core > small { margin-top: 9px; font-size: 8px; }
  .process-preview .process-list-home { position: relative; inset: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process-preview .process-list-home li, .process-preview .process-list-home li:nth-child(n) { position: relative; inset: auto; width: auto; min-height: 190px; padding: 24px 22px 22px 70px; }
  .process-preview .process-list-home li > i { display: none; }
  .process-preview-footer p { display: none; }
  .process-preview-footer { justify-content: end; }
  .process-page-section { padding-block: 72px 96px; }
  .process-page-intro { grid-template-columns: minmax(0, 1fr) 300px; gap: 36px; }
  .process-page-intro-copy h2 { font-size: clamp(40px, 5.8vw, 52px); }
  .process-page-overview { min-height: 224px; padding: 23px; }
  .process-page-overview strong { font-size: 58px; }
  .process-journey article { min-height: 300px; padding: 27px 27px 29px; }
  .process-journey h3 { margin-top: 48px; font-size: 30px; }
  .microsite-section .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .microsite-grid { grid-template-columns: repeat(2, 1fr); }
  .microsite-card, .microsite-card:nth-child(n) { grid-column: auto; min-height: 242px; }
  .microsite-logo, .microsite-card-2 .microsite-logo, .microsite-card-3 .microsite-logo, .microsite-card-4 .microsite-logo { width: 100%; height: 104px; }
  .footer-main { grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); column-gap: 52px; }
  .footer-intro h2 { margin-top: 28px; font-size: clamp(40px, 5.5vw, 52px); }
  .footer-brand { align-items: start; flex-direction: column; gap: 14px; }
  .footer-brand p { text-align: left; }
  .footer-contact-column { padding-left: 22px; }
  .footer-directory { grid-template-columns: 1.25fr .75fr; gap: 44px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-links a:nth-last-child(-n+3) { border-bottom: 0; }
  .footer-links a:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
  .client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-story, .about-services-heading, .contact-layout, .project-story { grid-template-columns: 1fr; }
  .about-story { gap: 26px; }
  .about-story-copy { max-width: 690px; padding-top: 0; }
  .about-service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-service-grid > a:nth-child(2) { border-right: 0; }
  .about-service-grid > a:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .about-ad-section .section-heading { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
  .about-ad-section .section-heading > p, .about-ad-section .section-heading h2, .about-ad-section .section-heading > span { grid-column: 1; grid-row: auto; }
  .about-ad-section .section-heading > span { max-width: 680px; }
  .project-story { gap: 35px; }
  .office-grid { grid-template-columns: 1fr; }
  .contact-copy { min-height: auto; }
  .contact-form { min-height: auto; }
  .office-heading { grid-template-columns: 1fr; gap: 20px; }
  .client-logo-card { flex-basis: 164px; width: 164px; height: 90px; padding-inline: 18px; }
  .page-hero { min-height: 360px; padding: 110px 48px 32px; grid-template-columns: 1fr; gap: 16px; }
  .page-hero-summary { max-width: 650px; }
  .service-hero-inner { min-height: 0; padding-top: 56px; padding-bottom: 34px; grid-template-columns: 1fr; gap: 28px; }
  .service-hero-copy { max-width: 760px; padding-right: 0; }
  .service-hero-scene, .service-ad-scene { width: min(100%, 760px); min-height: 370px; }
  .service-scene-device { right: -5%; width: 92%; }
  .service-hero-scene-viptigo .service-scene-device { right: 3%; bottom: -68px; width: 58%; }
  .service-scene-stack { inset: 15px -2% -90px 20%; }
  .service-ad-scene { padding-left: 70px; }
  .service-hero-rail p { padding-inline: 22px; }
  .service-detail-intro { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-intro > p { max-width: 720px; }
  .service-scope-section .section-heading { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
  .service-scope-section .section-heading > p, .service-scope-section .section-heading h2, .service-scope-section .section-heading > span { grid-column: 1; grid-row: auto; }
  .service-scope-section .section-heading > span { max-width: 680px; }
  .service-faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .service-faq-heading { position: static; }
  .service-faq-heading h2 { max-width: 720px; }
  .local-area-hero-inner { min-height: 0; padding-top: 72px; padding-bottom: 50px; grid-template-columns: 1fr; gap: 40px; }
  .local-area-office-card { width: min(100%, 620px); }
  .local-area-intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .local-region-grid { grid-template-columns: repeat(2, 1fr); }
  .local-region-grid article:nth-child(2) { border-right: 0; }
  .local-region-grid article:nth-child(-n+2) { border-bottom: 1px solid #c8d7df; }
  .local-district-panel { grid-template-columns: 1fr; gap: 28px; }
  .local-project-section .project-card { grid-column: span 6; }
  .service-directory > div { grid-template-columns: repeat(2, 1fr); }
  .service-directory a:nth-child(2) { border-right: 0; }
  .service-directory a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .project-hero-detail { grid-template-columns: 1fr; min-height: 840px; }
  .project-hero-copy { padding: 132px 48px 20px; }
  .project-hero-device { min-height: 390px; padding: 0 30px 28px; }
  .project-hero-device img { width: 90%; }
  .project-links { position: static; grid-column: 1; margin: 0; padding: 0 48px 32px; }
  .page-hero + .section-wrap, .project-hero-detail + .section-wrap { padding-top: 70px; }
  .workery-detail-hero { min-height: 0; }
  .workery-detail-hero-inner { min-height: 0; padding-top: 126px; padding-bottom: 52px; grid-template-columns: 1fr; gap: 42px; }
  .workery-detail-copy { max-width: 680px; }
  .workery-detail-device { width: min(100%, 680px); margin-inline: auto; }
  .workery-detail-device img { width: 100%; }
  .workery-detail-device > span { right: 2%; }
  .workery-detail-facts > div { padding-inline: 46px 20px; }
  .workery-detail-facts > div:first-child { padding-left: 27px; }
  .workery-detail-facts span, .workery-detail-facts > div:first-child span { left: 12px; }
  .workery-case-heading, .workery-screens-heading { grid-template-columns: minmax(125px, .3fr) 1fr; row-gap: 24px; }
  .workery-case-heading > p:last-child, .workery-screens-heading > p:last-child { grid-column: 2; max-width: 610px; }
  .workery-case-grid h3 { min-height: 108px; font-size: 25px; }
  .workery-case-grid article { min-height: 374px; padding-inline: 24px; }
  .workery-case-summary { grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr); gap: 44px; }
  .workery-screen-visual { min-height: 470px; padding-inline: 18px; }
  .workery-screen-visual img { height: 450px; }
  .workery-screens-grid-single .workery-screen-visual { min-height: 540px; }
  .workery-screens-grid-single .workery-screen-visual img { height: 500px; }
}

@media (max-width: 620px) {
  .site-header, .hero, .service-strip, .page-hero, .project-hero-detail { width: min(100% - 24px, 1400px); }
  .section-wrap { width: min(100% - 24px, 1280px); }
  .site-header { height: 78px; }
  .brand img { width: 138px; }
  .site-header-home { position: relative; z-index: 20; width: calc(100% - 32px); height: 74px; }
  .site-header-home .brand img { width: 142px; }
  .mobile-menu > summary { min-width: 92px; height: 42px; border-radius: 999px; }
  .mobile-menu nav { inset: 78px 0 0; height: calc(100dvh - 78px); padding: 18px 24px 24px; }
  .site-header-home .mobile-menu nav { inset: 74px 0 0; height: calc(100dvh - 74px); }
  .mobile-menu-links > a { min-height: 55px; font-size: 20px; }
  .mobile-menu-contact { padding-top: 16px; }
  .mobile-menu-contact p { margin-bottom: 12px; font-size: 18px; }
  .subpage-main > .page-hero, .subpage-main > .project-hero-detail { width: 100%; margin-top: -74px; border-radius: 0; }
  .home-stage .hero { width: 100%; height: 764px; min-height: 764px; margin-top: -74px; border-radius: 0; }
  .hero-backdrop { object-position: 58% center; transform: scale(1.025); }
  .hero-slide-theworkery .hero-backdrop, .hero-slide-smartshop .hero-backdrop { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,14,24,.97) 0%, rgba(4,20,34,.88) 60%, rgba(5,20,32,.48) 100%), linear-gradient(0deg, rgba(3,14,24,.96) 0%, rgba(3,14,24,.2) 62%, rgba(3,14,24,.42) 100%); }
  .hero-grid { background-size: 58px 58px; opacity: .11; }
  .hero-copy { left: 24px; right: 24px; top: 186px; width: auto; padding: 0; transform: none; }
  .hero .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .hero h1, .hero h2 { max-width: 350px; font-size: clamp(40px, 10.8vw, 43px); line-height: .98; letter-spacing: -.03em; overflow-wrap: break-word; }
  .hero-lead { max-width: 345px; margin-top: 20px; font-size: 14px; line-height: 1.52; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 11px; margin-top: 22px; }
  .hero .button-primary { width: 100%; min-height: 53px; }
  .hero-text-link { font-size: 13px; }
  .hero-showcase { top: 0; bottom: 76px; width: 100%; opacity: .32; }
  .showcase-device { width: 500px; right: -210px; bottom: 130px; }
  .hero-slide-theworkery .showcase-device, .hero-slide-smartshop .showcase-device { width: 390px; right: -110px; bottom: 170px; }
  .showcase-tags { display: none; }
  .hero-rail { height: 76px; grid-template-columns: 1fr; padding: 0 20px; }
  .hero-signature { display: none; }
  .hero-tabs { justify-content: center; gap: 7px; }
  .hero-tabs button { min-width: 65px; }
  .hero-tabs button i { width: 34px; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip div { border-right: 0; }
  .client-showcase { width: min(100% - 24px, 1280px); margin-top: 12px; padding: 16px 14px 14px; border-radius: 14px; box-shadow: 0 14px 34px rgba(8,43,74,.09); }
  .client-showcase-head { margin-bottom: 12px; }
  .client-showcase-head p { max-width: 210px; font-size: 9px; letter-spacing: .1em; }
  .client-showcase-head a { font-size: 0; }
  .client-showcase-head a::before { content: 'Tümü'; font-size: 10px; }
  .client-rail-track { animation-duration: 25s; }
  .client-logo-card { flex-basis: 148px; width: 148px; height: 82px; padding: 14px 15px; }
  .client-rail img { max-width: 118px; max-height: 52px; }
  .service-section, .work-section, .microsite-section, .client-page-section, .work-page-section, .process-page-section { padding-block: 60px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: 35px; }
  .section-heading > span { font-size: 15px; }
  .service-grid, .benefit-grid, .project-grid, .client-grid, .ad-grid, .project-gallery { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; padding: 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card > p { margin-top: 24px; }
  .service-card h3 { font-size: 22px; }
  .service-card > div { margin-top: 14px; font-size: 12.5px; line-height: 1.55; }
  .service-section-home { padding-block: 44px; }
  .service-section-home::before { top: -110px; right: -210px; width: 390px; height: 390px; }
  .service-section-home .section-heading { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 12px; margin-bottom: 22px; padding-bottom: 24px; }
  .service-section-home .section-heading > p, .service-section-home .section-heading h2, .service-section-home .section-heading > span { grid-column: 1; grid-row: auto; }
  .service-section-home .section-heading > span { max-width: none; font-size: 14px; line-height: 1.6; }
  .service-section-home .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-section-home .service-card, .service-section-home .service-card:nth-child(2), .service-section-home .service-card:nth-child(-n+2) { min-height: 210px; padding: 24px 76px 24px 22px; border: 1px solid rgba(8,43,74,.12); border-radius: 20px; }
  .service-section-home .service-card::before { right: -105px; bottom: -105px; width: 210px; height: 210px; }
  .service-section-home .service-card::after { right: 25px; bottom: 25px; width: 22px; height: 22px; border-width: 6px; }
  .service-section-home .service-card > span { top: 22px; right: 23px; font-size: 31px; }
  .service-section-home .service-card > p { margin: 0 0 10px; padding-right: 26px; font-size: 9px; line-height: 1.4; }
  .service-section-home .service-card h3 { font-size: 24px; }
  .service-section-home .service-card > div { margin-top: 14px; font-size: 12.5px; line-height: 1.55; }
  .benefit-section, .ad-section, .office-section, .project-gallery-section { padding-block: 60px; }
  .benefit-section { padding-block: 48px; }
  .benefit-section .section-heading { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 12px; margin-bottom: 22px; padding-bottom: 24px; }
  .benefit-section .section-heading > p, .benefit-section .section-heading h2, .benefit-section .section-heading > span { grid-column: 1; grid-row: auto; }
  .benefit-section .section-heading > span { max-width: none; font-size: 14px; line-height: 1.6; }
  .benefit-section .benefit-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-section .benefit-grid article, .benefit-section .benefit-grid article:nth-child(5n), .benefit-section .benefit-grid article:nth-child(even), .benefit-section .benefit-grid article:nth-last-child(-n+2) { min-height: 0; padding: 22px 22px 22px 66px; display: block; border: 1px solid rgba(172,203,219,.16); border-radius: 16px; }
  .benefit-grid article::before { top: 22px; left: 21px; width: 26px; height: 2px; }
  .benefit-grid article::after { right: -70px; bottom: -85px; }
  .benefit-grid article > span { position: absolute; top: 35px; left: 21px; margin: 0; font-size: 10px; }
  .benefit-grid h3 { max-width: none; font-size: 20px; line-height: 1.16; }
  .benefit-grid p { max-width: none; margin-top: 9px; font-size: 12.5px; line-height: 1.55; }
  .project-card, .project-card-featured, .project-grid-all .project-card { grid-column: auto; min-height: 440px; }
  .work-section { padding-block: 48px; }
  .work-section .section-heading { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 12px; margin-bottom: 22px; padding-bottom: 24px; }
  .work-section .section-heading > p, .work-section .section-heading h2, .work-section .section-heading > span { grid-column: 1; grid-row: auto; }
  .work-section .section-heading > span { max-width: none; font-size: 14px; line-height: 1.6; }
  .work-section .project-grid { display: flex; gap: 12px; margin-right: -12px; padding: 0 12px 12px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .work-section .project-grid::-webkit-scrollbar { display: none; }
  .work-section .project-card, .work-section .project-card-featured, .work-section .project-card:nth-child(2), .work-section .project-card:nth-child(-n+3) { flex: 0 0 min(84vw, 336px); min-height: 414px; scroll-snap-align: start; }
  .work-section .project-logo-wrap, .work-section .project-card-featured .project-logo-wrap { width: 144px; height: 58px; }
  .work-section .project-card-bottom h3, .work-section .project-card-featured .project-card-bottom h3 { font-size: 23px; }
  .work-section .project-editorial-card .project-card-device { inset: 112px 8px 60px; }
  .work-section .project-editorial-card .project-editorial-link > span { display: none; }
  .work-page-section .project-grid-all { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 0; padding: 0; overflow: visible; }
  .work-page-section .project-grid-all .project-card, .work-page-section .project-grid-all .project-card-featured, .work-page-section .project-grid-all .project-card:nth-child(2), .work-page-section .project-grid-all .project-card:nth-child(-n+3) { width: auto; min-height: 414px; flex: none; }
  .work-page-section .project-grid-primary .project-card-device { inset: 108px 20px 66px; }
  .work-page-section .project-grid-primary .project-card-device img {
    width: auto;
    height: auto;
    max-width: 78%;
    max-height: 222px;
    filter: drop-shadow(0 17px 15px rgba(2,12,21,.3));
  }
  .work-page-section .project-grid-primary .project-card-kontder .project-card-device img { max-height: 210px; }
  .project-card-content { padding: 22px; }
  .project-logo-wrap { width: 150px; height: 58px; padding: 8px 11px; }
  .project-card-top > span { max-width: 85px; text-align: right; }
  .project-card-bottom { align-items: start; flex-direction: column; }
  .project-card-bottom > div { justify-content: start; }
  .process-list li, .process-list-large li { grid-template-columns: 42px 1fr; gap: 12px; padding: 24px 0; }
  .process-page-section { padding-block: 52px 72px; }
  .process-page-section::before { top: 260px; right: -330px; width: 520px; height: 520px; }
  .process-page-intro { grid-template-columns: 1fr; gap: 0; padding-bottom: 36px; }
  .process-page-intro-copy > p { margin-bottom: 16px; }
  .process-page-intro-copy h2 { font-size: 38px; line-height: 1; }
  .process-page-intro-copy > div { margin-top: 18px; font-size: 14px; line-height: 1.62; }
  .process-page-overview { min-height: 0; margin-top: 28px; padding: 22px; gap: 20px 12px; border-radius: 21px; }
  .process-page-overview strong { font-size: 52px; }
  .process-page-overview > p { padding-top: 16px; }
  .process-journey { margin: 34px 0 8px; padding-left: 32px; grid-template-columns: 1fr; gap: 12px; }
  .process-journey::before { top: 18px; bottom: 18px; left: 9px; }
  .process-journey li, .process-journey li:nth-child(odd), .process-journey li:nth-child(even) { padding: 0; transform: none; }
  .process-journey li::after, .process-journey li:nth-child(odd)::after, .process-journey li:nth-child(even)::after { top: 35px; right: auto; left: -15px; width: 15px; }
  .process-journey li:nth-child(odd) .process-journey-node, .process-journey li:nth-child(even) .process-journey-node { top: 35px; right: auto; left: -31px; width: 16px; height: 16px; }
  .process-journey-node { box-shadow: 0 0 0 5px rgba(215,102,49,.07); }
  .process-journey article { min-height: 0; padding: 23px 22px 24px; border-radius: 20px; }
  .process-journey header { gap: 12px; }
  .process-card-index { top: 48px; right: 17px; font-size: 82px; }
  .process-journey h3 { max-width: 270px; margin: 42px 0 12px; font-size: 27px; }
  .process-journey article > p { font-size: 13.5px; line-height: 1.65; }
  .process-preview { padding-block: 58px 52px; }
  .process-preview::before { background-size: 54px 54px; }
  .process-preview-glow { top: -270px; right: -280px; width: 560px; height: 560px; }
  .process-preview-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 10px; padding-bottom: 28px; }
  .process-preview .section-heading { gap: 12px; }
  .process-preview .section-heading h2 { font-size: 36px; line-height: 1.02; }
  .process-preview .section-heading > span { margin-top: 8px; font-size: 14px; line-height: 1.6; }
  .process-experience { justify-content: start; }
  .process-experience strong { font-size: 58px; }
  .process-blueprint { padding-top: 168px; }
  .process-core { top: 46px; width: 136px; height: 136px; }
  .process-core::before { inset: 13px; }
  .process-core::after { top: 20px; right: 20px; width: 7px; height: 7px; }
  .process-core > span { font-size: 48px; }
  .process-core > strong { margin-top: 6px; font-size: 8px; }
  .process-core > small { margin-top: 7px; font-size: 7px; }
  .process-preview .process-list-home { grid-template-columns: 1fr; gap: 10px; }
  .process-preview .process-list-home::before { content: ''; position: absolute; top: 28px; bottom: 28px; left: 20px; border-left: 1px solid rgba(125,190,214,.26); }
  .process-preview .process-list-home li, .process-preview .process-list-home li:nth-child(n) { min-height: 0; padding: 20px 18px 20px 62px; border-radius: 15px; }
  .process-step-number { top: 20px; left: 17px; width: 30px; height: 30px; background: #071d30; }
  .process-preview .process-list-home h3 { font-size: 20px; }
  .process-preview .process-list-home p { font-size: 12px; line-height: 1.55; }
  .process-preview-footer { justify-content: stretch; margin-top: 24px; padding-top: 20px; }
  .process-preview .process-link { width: 100%; justify-content: space-between; }
  .process-list-large li > span { font-size: 14px; }
  .process-list-large h3 { font-size: 25px; }
  .microsite-section { padding-block: 48px 58px; }
  .microsite-section .section-heading { row-gap: 12px; margin-bottom: 22px; padding-bottom: 24px; }
  .microsite-grid { display: flex; gap: 10px; margin-right: -12px; padding: 0 12px 10px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .microsite-grid::-webkit-scrollbar { display: none; }
  .microsite-card, .microsite-card:nth-child(n) { flex: 0 0 min(82vw, 320px); min-height: 224px; padding: 18px; border-radius: 18px; scroll-snap-align: start; }
  .microsite-logo, .microsite-card-2 .microsite-logo, .microsite-card-3 .microsite-logo, .microsite-card-4 .microsite-logo { width: 100%; height: 96px; }
  .contact-band { min-height: 0; margin-bottom: 28px; padding: 34px 22px 22px; grid-template-columns: 1fr; align-items: start; gap: 30px; border-radius: 24px; }
  .contact-band::after { right: -260px; bottom: -320px; }
  .contact-band-mark { top: -28px; left: 0; font-size: 240px; }
  .contact-band-copy > p { margin-bottom: 16px; font-size: 9px; }
  .contact-band h2 { max-width: 330px; font-size: 45px; line-height: .96; }
  .contact-band-copy > span { margin-top: 18px; font-size: 13px; line-height: 1.55; }
  .contact-band-panel { padding: 18px; border-radius: 17px; }
  .contact-band-cta { min-height: 56px; }
  .contact-band-phone strong { font-size: 13px; }
  .footer-main { width: min(100% - 24px, 1280px); padding-block: 38px 30px; grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { align-items: flex-start; flex-direction: column; gap: 14px; }
  .footer-brand img { width: 160px; }
  .footer-brand p { max-width: 280px; line-height: 1.6; text-align: left; }
  .footer-intro h2 { max-width: 350px; margin-top: 24px; font-size: 36px; line-height: 1.02; }
  .footer-contact-column { padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.13); border-left: 0; }
  .footer-contact-links { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; }
  .footer-contact-links strong { font-size: 15px; }
  .footer-social-links { margin-top: 18px; }
  .footer-directory { grid-column: auto; padding-top: 28px; grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
  .footer-links a { min-height: 46px; font-size: 12px; }
  .footer-links a:nth-last-child(-n+3) { border-bottom: 0; }
  .footer-links a:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
  .footer-offices > div { min-height: 84px; padding-right: 5px; grid-template-columns: 18px 1fr; gap: 4px; }
  .footer-mark { top: -34px; left: 0; font-size: 300px; }
  .footer-bottom { width: min(100% - 24px, 1280px); padding-block: 16px 18px; flex-direction: column; gap: 8px; }
  .page-hero { min-height: 320px; padding: 92px 24px 24px; grid-template-columns: 1fr; gap: 12px; align-items: end; }
  .page-hero-mark { right: -2px; top: 30px; font-size: 210px; }
  .page-breadcrumb { margin-bottom: 13px; font-size: 8px; }
  .page-hero .eyebrow { margin-bottom: 16px; }
  .page-hero h1 { font-size: clamp(40px, 11vw, 46px); line-height: 1; overflow-wrap: break-word; }
  .service-hero { min-height: 0; margin-top: -74px; padding-top: 74px; }
  .service-hero-backdrop { opacity: .28; }
  .service-hero-shade { background: linear-gradient(180deg, rgba(3,16,28,.96) 0%, rgba(3,16,28,.84) 50%, rgba(3,16,28,.52) 75%, #03101c 100%); }
  .service-hero-grid { background-size: 56px 56px; }
  .service-hero-inner { padding-top: 26px; padding-bottom: 22px; gap: 18px; }
  .service-hero .page-breadcrumb { margin-bottom: 18px; }
  .service-hero .eyebrow { margin-bottom: 15px; font-size: 9px; }
  .service-hero h1 { max-width: 360px; font-size: clamp(40px, 11.5vw, 46px); line-height: .97; }
  .service-hero-copy > p:not(.eyebrow) { margin-top: 19px; font-size: 13.5px; line-height: 1.6; }
  .service-hero-actions { margin-top: 21px; gap: 13px; }
  .service-hero-primary { min-height: 48px; padding-inline: 18px; font-size: 12px; }
  .service-hero-secondary { font-size: 11px; }
  .service-hero-secondary b { width: 30px; height: 30px; }
  .service-hero-scene, .service-ad-scene { width: 100%; min-height: 238px; }
  .service-scene-number { top: 4px; right: 0; font-size: 82px; }
  .service-scene-device { right: -9%; bottom: -18px; width: 82%; height: 100%; }
  .service-hero-scene-viptigo .service-scene-device { right: -1%; bottom: -52px; width: 53%; height: 128%; }
  .service-scene-brand { top: 20px; left: 0; width: 112px; height: 42px; }
  .service-hero-scene-kontder .service-scene-brand { width: 58px; height: 58px; }
  .service-hero-scene-smartshop .service-scene-brand { top: 16px; width: 120px; }
  .service-scene-caption { left: 0; bottom: 15px; width: 132px; padding-top: 10px; }
  .service-scene-caption strong { margin-top: 6px; font-size: 16px; }
  .service-scene-caption em { display: none; }
  .service-scene-caption b { margin-top: 9px; font-size: 8px; }
  .service-scene-stack { inset: 6px -11% -53px 22%; }
  .service-scene-stack img { width: 39%; max-height: 292px; }
  .service-ad-scene { min-height: 260px; padding: 19px 0 10px; }
  .service-ad-scene::before { inset: 0 -30px 5px; }
  .service-ad-platforms p { min-height: 67px; grid-template-columns: 47px 1fr 20px; }
  .service-ad-platforms strong { font-size: 26px; }
  .service-ad-flow { margin-top: 14px; gap: 6px; font-size: 6px; }
  .service-hero-rail { min-height: 66px; }
  .service-hero-rail > div { width: 100%; min-height: 66px; grid-template-columns: repeat(3, 1fr); }
  .service-hero-rail p, .service-hero-rail p:first-child { min-width: 0; padding: 13px 10px; }
  .service-hero-rail small { font-size: 6px; letter-spacing: .08em; }
  .service-hero-rail strong { margin-top: 6px; font-size: 8px; line-height: 1.25; }
  .service-card-link { right: 22px; bottom: 22px; }
  .service-detail-overview { padding-top: 52px; }
  .service-detail-intro { gap: 22px; }
  .service-detail-intro h2 { margin-top: 16px; font-size: 38px; line-height: 1; }
  .service-detail-intro > p { padding: 0; border-left: 0; font-size: 14px; line-height: 1.68; }
  .service-detail-facts { margin-top: 34px; grid-template-columns: 1fr; border-radius: 18px; }
  .service-detail-facts > div { min-height: 100px; padding: 20px 22px; border-right: 0; border-bottom: 1px solid #d7e1e8; }
  .service-detail-facts > div:last-child { border-bottom: 0; }
  .service-detail-facts strong { margin-top: 18px; font-size: 22px; }
  .service-scope-section { padding: 56px 0 52px; }
  .service-scope-section .section-heading { margin-bottom: 22px; padding-bottom: 24px; }
  .service-scope-section .section-heading h2 { font-size: 35px; }
  .service-scope-section .section-heading > span { font-size: 14px; }
  .service-scope-grid { grid-template-columns: 1fr; border: 0; gap: 10px; }
  .service-scope-grid article { min-height: 0; padding: 23px 22px 24px; border: 1px solid #cad8df; border-radius: 17px; }
  .service-scope-grid h3 { margin-top: 36px; font-size: 25px; }
  .service-scope-grid p { margin-top: 18px; padding: 0; font-size: 13px; }
  .service-process-link { margin-top: 12px; padding: 20px; align-items: stretch; flex-direction: column; border-radius: 16px; }
  .service-process-link p { line-height: 1.8; }
  .service-process-link p span { margin-inline: 3px; }
  .service-process-link a { justify-content: space-between; }
  .service-project-section { padding-top: 52px; }
  .service-project-section .service-project-grid { display: flex; }
  .service-project-section .service-project-grid .project-card { grid-column: auto; }
  .service-faq-section { padding: 58px 0; }
  .service-faq-layout { gap: 32px; }
  .service-faq-heading h2 { margin-top: 17px; font-size: 38px; }
  .service-faq-heading > p:last-child { margin-top: 18px; font-size: 13px; }
  .service-faq-list summary { min-height: 78px; grid-template-columns: 25px 1fr 28px; gap: 10px; font-size: 17px; }
  .service-faq-answer { margin: -2px 0 24px 35px; font-size: 13px; line-height: 1.72; }
  .service-faq-answer li { font-size: 11.5px; }
  .service-directory { padding-block: 48px 34px; }
  .service-directory > div { grid-template-columns: 1fr; }
  .service-directory a, .service-directory a:nth-child(2), .service-directory a:nth-child(-n+2) { min-height: 72px; padding: 16px 4px; border-right: 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .service-directory a:last-child { border-bottom: 0; }
  .local-area-hero { min-height: 0; margin-top: -74px; padding-top: 74px; }
  .local-area-hero-shade { background: linear-gradient(90deg, rgba(3,13,23,.96), rgba(3,13,23,.72)), linear-gradient(0deg, rgba(3,13,23,.86), transparent 54%); }
  .local-area-hero-inner { padding-top: 34px; padding-bottom: 34px; gap: 28px; }
  .local-area-hero h1 { max-width: 360px; font-size: 42px; line-height: .98; }
  .local-area-hero-inner > div > p:not(.eyebrow) { margin-top: 19px; font-size: 13.5px; line-height: 1.62; }
  .local-area-office-card { padding: 19px; border-radius: 17px; }
  .local-area-office-card strong { font-size: 21px; }
  .local-area-intro { padding: 58px 0 54px; }
  .local-area-intro h2 { font-size: 38px; }
  .local-region-grid { margin-top: 36px; grid-template-columns: 1fr; border: 0; gap: 9px; }
  .local-region-grid article, .local-region-grid article:nth-child(2), .local-region-grid article:nth-child(-n+2) { min-height: 210px; border: 1px solid #c8d7df; border-radius: 16px; }
  .local-district-panel { margin-top: 14px; padding: 22px 20px; border-radius: 16px; }
  .local-district-panel h3 { font-size: 27px; }
  .local-district-list { gap: 6px; }
  .local-district-list span { padding: 8px 10px; font-size: 8px; }
  .local-service-section { padding: 58px 0; }
  .local-service-grid { grid-template-columns: 1fr; border-radius: 18px; }
  .local-service-grid a, .local-service-grid a:nth-child(even), .local-service-grid a:nth-last-child(-n+2) { min-height: 230px; padding: 23px 20px; border-right: 0; border-bottom: 1px solid #d5e0e6; }
  .local-service-grid a:last-child { border-bottom: 0; }
  .local-service-grid h3 { font-size: 25px; }
  .local-project-section { padding-block: 58px; }
  .local-project-section .service-project-grid { display: flex; }
  .local-project-section .project-card { grid-column: auto; }
  .page-hero-summary { margin: 0; padding: 18px 0 0; border-left: 0; border-top: 1px solid rgba(146,199,225,.35); }
  .page-hero-summary p { margin-top: 10px; font-size: 15px; line-height: 1.5; }
  .client-page-section { padding-top: 54px; }
  .client-page-heading { margin-bottom: 24px; padding-bottom: 24px; }
  .client-page-heading > div { align-items: start; flex-direction: column; gap: 18px; }
  .client-page-heading h2 { max-width: 340px; font-size: 38px; }
  .client-page-heading strong b { font-size: 28px; }
  .work-page-section { padding-top: 54px; }
  .work-page-heading { margin-bottom: 24px; padding-bottom: 24px; }
  .work-page-heading > div { align-items: start; flex-direction: column; gap: 18px; }
  .work-page-heading-copy h2 { max-width: 350px; font-size: 38px; }
  .work-page-heading-copy > p { margin-top: 14px; font-size: 13px; line-height: 1.58; }
  .work-page-heading strong b { font-size: 28px; }
  .client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .client-card { min-height: 166px; padding: 13px 12px 8px; border-radius: 17px; }
  .client-grid-logo { min-height: 104px; padding: 16px 12px 18px; }
  .client-grid-logo img { max-width: 145px; max-height: 70px; }
  .client-grid-meta { min-height: 44px; grid-template-columns: 18px 1fr auto; gap: 6px; }
  .client-grid-meta strong { font-size: 10.5px; line-height: 1.2; }
  .client-grid-meta b { width: 16px; overflow: hidden; color: transparent; font-size: 0; }
  .client-grid-meta b::after { content: '↗'; color: var(--orange); font-size: 12px; }
  .client-card-orange .client-grid-meta b::after, .client-card-brown .client-grid-meta b::after, .client-card-teal .client-grid-meta b::after, .client-card-violet .client-grid-meta b::after { color: var(--white); }
  .client-card-allcocktail .client-grid-logo img { max-width: 150px; max-height: 76px; }
  .client-grid img, .client-rail img, .microsite-grid img { filter: none; opacity: 1; }
  .about-overview { padding-block: 42px 62px; }
  .about-visual { min-height: 360px; border-radius: 22px; }
  .about-visual > p { top: 23px; bottom: auto; left: 22px; }
  .about-visual > p span { font-size: 19px; }
  .about-year-card { right: 18px; bottom: 18px; left: 18px; min-width: 0; min-height: 104px; }
  .about-year-card strong { font-size: 68px; }
  .about-story { padding: 52px 0 44px; }
  .about-story h2 { font-size: 40px; }
  .about-story-copy > p { font-size: 14.5px; }
  .about-metrics { grid-template-columns: 1fr; }
  .about-metrics article { min-height: 122px; padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(8,43,74,.14); }
  .about-metrics article:last-child { border-bottom: 0; }
  .about-metrics strong { font-size: 48px; }
  .about-services-section { padding: 56px 0 32px; }
  .about-services-heading { gap: 18px; margin-bottom: 30px; }
  .about-services-heading h2 { font-size: 40px; }
  .about-service-grid { grid-template-columns: 1fr; }
  .about-service-grid article, .about-service-grid article:nth-child(2) { min-height: 244px; padding: 24px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .about-service-grid article:last-child { border-bottom: 0; }
  .about-service-grid article > p { margin-top: 34px; }
  .about-service-grid h3 { font-size: 24px; }
  .about-service-grid article > div { padding-top: 24px; }
  .about-ad-section { padding: 36px 0 48px; }
  .about-ad-section .section-heading { margin-bottom: 22px; padding-bottom: 22px; gap: 12px; }
  .about-ad-section .section-heading > span { font-size: 14px; line-height: 1.6; }
  .ad-grid { gap: 12px; }
  .ad-card-body { min-height: 86px; padding: 17px 18px 18px; }
  .about-contact { padding-block: 48px; }
  .contact-section { padding-block: 42px 48px; }
  .contact-layout { border-radius: 22px; }
  .contact-copy { padding: 34px 24px 26px; }
  .contact-copy::after { right: -16px; bottom: -48px; font-size: 230px; }
  .contact-copy h2 { margin-top: 26px; font-size: 36px; }
  .contact-lead { margin-top: 18px; font-size: 13px; }
  .direct-contact { padding-top: 30px; }
  .direct-contact a { min-height: 68px; padding: 10px 12px; grid-template-columns: 38px 1fr auto; gap: 11px; }
  .contact-link-icon { width: 38px; height: 38px; }
  .contact-form { padding: 32px 24px 26px; }
  .contact-form-heading { margin-bottom: 24px; padding-bottom: 22px; }
  .contact-form-heading h3 { font-size: 32px; }
  .direct-contact, .field-row { grid-template-columns: 1fr; }
  .contact-form-action { align-items: stretch; flex-direction: column; gap: 12px; }
  .contact-form-action .button { width: 100%; justify-content: space-between; }
  .form-note { max-width: none; }
  .office-section { padding-block: 54px 60px; }
  .office-heading { margin-bottom: 24px; }
  .office-heading h2 { margin-top: 15px; font-size: 38px; }
  .office-heading > p { font-size: 13px; }
  .office-grid { gap: 10px; }
  .office-grid article { min-height: 250px; padding: 23px 22px 21px; }
  .office-grid h3 { margin-top: 32px; font-size: 31px; }
  .project-hero-detail { min-height: 690px; }
  .project-hero-copy { padding: 94px 24px 14px; }
  .project-detail-logo { width: 162px; height: 70px; margin-bottom: 14px; }
  .project-hero-copy h1 { max-width: 350px; font-size: clamp(38px, 10.5vw, 42px); line-height: 1; }
  .platforms-has-links { display: none; }
  .project-links { margin: 0; padding: 4px 24px 22px; display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 8px; }
  .project-link { min-width: 0; width: 100%; min-height: 54px; padding: 7px; grid-template-columns: 28px minmax(0, 1fr); gap: 6px; border-radius: 13px; }
  .project-link-icon { width: 28px; height: 28px; border-radius: 8px; }
  .project-link-icon svg { width: 17px; height: 17px; }
  .project-link-copy small, .project-link-arrow { display: none; }
  .project-link-copy strong { font-size: 10px; }
  .project-hero-device { min-height: 300px; padding: 0 10px 16px; }
  .project-hero-device img { width: 96%; }
  .page-hero + .section-wrap, .project-hero-detail + .section-wrap { padding-top: 56px; }
  .project-story { padding-block: 82px; }
  .project-story-copy > p { font-size: 17px; }
  .project-gallery > div { min-height: 440px; }
  .workery-detail-hero { width: 100%; margin-top: -74px; }
  .workery-detail-bg { object-position: 66% center; }
  .workery-detail-overlay { background: linear-gradient(90deg, rgba(3,19,27,.98) 0%, rgba(4,25,34,.93) 68%, rgba(4,27,35,.7) 100%), linear-gradient(0deg, rgba(3,18,25,.98) 0%, rgba(3,18,25,.35) 62%, rgba(3,18,25,.56) 100%); }
  .workery-detail-grid { background-size: 58px 58px; mask-image: linear-gradient(#000, transparent 86%); }
  .workery-detail-hero-inner { width: min(100% - 40px, 1280px); padding-top: 106px; padding-bottom: 34px; gap: 26px; }
  .workery-detail-copy .eyebrow { margin-bottom: 14px; font-size: 8px; }
  .workery-detail-logo { width: 154px; height: 52px; margin-bottom: 18px; }
  .workery-detail-copy h1 { max-width: 360px; font-size: clamp(38px, 10.4vw, 42px); line-height: 1; }
  .workery-detail-copy > p:not(.eyebrow) { margin-top: 18px; font-size: 13px; line-height: 1.58; }
  .workery-platforms { display: flex; margin-top: 17px; }
  .workery-platforms .platform-icon { width: 36px; height: 36px; }
  .workery-detail-links { margin-top: 17px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .workery-detail-links-desktop { display: none; }
  .workery-detail-links-mobile { width: 100%; margin-top: -10px; display: grid; }
  .workery-detail-links .project-link { min-width: 0; min-height: 52px; padding: 7px; grid-template-columns: 27px minmax(0, 1fr); gap: 5px; border-radius: 11px; }
  .workery-detail-links .project-link-icon { width: 27px; height: 27px; }
  .workery-detail-links .project-link-copy strong { font-size: 9px; }
  .workery-detail-device { width: 100%; }
  .workery-detail-device::before { width: 88%; }
  .workery-detail-device > span { top: 0; right: 0; min-width: 128px; padding: 10px 11px; }
  .workery-detail-device > span b { font-size: 9px; }
  .workery-detail-device > span small { font-size: 7px; }
  .workery-detail-device img { width: 108%; max-width: 460px; }
  .project-case-viptigo .workery-detail-device img,
  .project-case-allcocktail .workery-detail-device img { width: min(88%, 350px); max-height: 440px; }
  .project-case-allcocktail .workery-detail-logo { width: 188px; height: 58px; }
  .workery-detail-facts { width: min(100% - 40px, 1280px); min-height: 0; grid-template-columns: 1fr; padding-block: 5px 17px; }
  .workery-detail-facts > div, .workery-detail-facts > div:first-child { min-height: 58px; padding: 12px 0 11px 38px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .workery-detail-facts > div:last-child { border-bottom: 0; }
  .workery-detail-facts span, .workery-detail-facts > div:first-child span { top: 15px; left: 0; }
  .workery-detail-facts small { margin-bottom: 4px; font-size: 7px; }
  .workery-detail-facts strong { font-size: 12px; }
  .workery-case-section { padding-block: 58px 68px; }
  .workery-case-heading, .workery-screens-heading { margin-bottom: 34px; grid-template-columns: 1fr; gap: 17px; }
  .workery-case-heading > p:last-child, .workery-screens-heading > p:last-child { grid-column: 1; font-size: 13px; line-height: 1.65; }
  .workery-case-heading h2, .workery-screens-heading h2 { font-size: 40px; }
  .workery-case-grid { grid-template-columns: 1fr; }
  .workery-case-grid article, .workery-case-grid article:first-child, .workery-case-grid article:last-child { min-height: 0; padding: 24px 0 28px; border-right: 0; border-bottom: 1px solid #d3dddb; }
  .workery-case-grid article:last-child { border-bottom: 0; }
  .workery-case-grid h3 { min-height: 0; margin: 25px 0 13px; font-size: 26px; }
  .workery-case-grid article > p { font-size: 12.5px; line-height: 1.7; }
  .workery-case-summary { min-height: 0; padding-block: 24px 30px; grid-template-columns: 1fr; gap: 24px; }
  .workery-case-summary h3 { margin-top: 27px; font-size: 30px; }
  .workery-case-summary > p { margin-top: 0; font-size: 13px; line-height: 1.72; }
  .workery-screens-section { padding-block: 60px 70px; }
  .workery-screens-grid { grid-template-columns: 1fr; gap: 12px; }
  .workery-screens-grid article:nth-child(2) { margin-top: 0; }
  .workery-screen-visual { min-height: 480px; padding: 20px 20px 0; }
  .workery-screen-visual img { max-width: 240px; height: 460px; }
  .workery-screens-grid-single .workery-screen-visual { min-height: 390px; padding: 18px 12px 0; }
  .workery-screens-grid-single .workery-screen-visual img { max-width: 100%; height: 360px; }
  .workery-screen-caption { min-height: 94px; padding: 18px 19px; }
  .workery-contact { padding-block: 48px 0; }
  .not-found { width: min(100% - 24px, 1100px); min-height: 520px; padding: 36px 24px; border-radius: 24px; }
}
