@font-face {
    font-family: "Inter Text";
    src: url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter Text";
    src: url("../fonts/Inter_18pt-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Inter Text";
    src: url("../fonts/Inter_18pt-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Inter Text";
    src: url("../fonts/Inter_18pt-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Inter Text";
    src: url("../fonts/Inter_18pt-ExtraBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter_28pt-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter_28pt-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter_28pt-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter_28pt-ExtraBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("../fonts/Inter_28pt-Black.woff2") format("woff2");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

:root {
    --ink: #0b0b0c;
    --ink-2: #18191b;
    --ink-3: #303236;
    --muted: #686b70;
    --muted-2: #909399;
    --line: #dedfe2;
    --line-dark: #2a2b2f;
    --paper: #ffffff;
    --wash: #f5f5f4;
    --wash-2: #eeeeec;
    --blue: #276ef1;
    --blue-soft: #e9f1ff;
    --green: #1f8a55;
    --green-soft: #e7f5ed;
    --gold: #9a6c11;
    --gold-soft: #f7eed8;
    --orange: #c35c22;
    --orange-soft: #fbebe1;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: min(1240px, calc(100% - 48px));
    --shadow-soft: 0 18px 50px rgba(9, 10, 12, .08);
    --transition: 220ms cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Inter Text", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-synthesis: none;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

main {
    min-height: 70vh;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.site-page-shell { min-height: 55vh; padding: clamp(72px, 10vw, 140px) 0 110px; background: #fff; }
.site-page-container { max-width: 860px; }
.site-page-container h1 { max-width: 760px; margin: 14px 0 20px; font-family: "Inter Display", sans-serif; font-size: clamp(42px, 7vw, 84px); letter-spacing: -.075em; line-height: .96; }
.site-page-lead { max-width: 680px; margin: 0 0 42px; color: #676b73; font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.site-page-body { max-width: 760px; padding-top: 32px; border-top: 1px solid #e3e5e8; color: #34373c; font-size: 17px; line-height: 1.85; white-space: normal; }

.section {
    padding: 112px 0;
}

.section-shell {
    overflow: clip;
}

.muted-section {
    background: var(--wash);
}

.dark-section {
    background: var(--ink);
    color: var(--paper);
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 11px 16px;
    background: var(--paper);
    border: 1px solid var(--ink);
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(39, 110, 241, .38);
    outline-offset: 3px;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 78px;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(222, 223, 226, .85);
    backdrop-filter: blur(18px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 36px rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .97);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.brand-logo {
    width: 32px;
    height: 32px;
}

.brand-mark {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: var(--ink);
    border-radius: 5px;
}

.brand-mark svg {
    width: 18px;
    fill: #fff;
}

.brand-name span {
    color: var(--muted-2);
    font-weight: 600;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 100%;
}

.nav-link {
    position: relative;
    height: 100%;
    padding: 0 13px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 580;
    cursor: pointer;
    color: #303237;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 0;
    height: 2px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-dropdown.is-current>.nav-link::after {
    transform: scaleX(1);
}

.nav-link svg {
    width: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.header-cta {
    margin-left: 10px;
    padding: 11px 16px;
    border-radius: 7px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition);
}

.header-cta:hover {
    transform: translateY(-2px);
    background: #242528;
}

.nav-dropdown {
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    width: min(1050px, calc(100vw - 48px));
    padding: 28px;
    display: grid;
    grid-template-columns: .72fr 1.7fr;
    gap: 34px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 0;
    box-shadow: 0 26px 60px rgba(10, 10, 12, .14);
    transform: translate(-50%, -12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu-intro {
    padding: 6px 24px 6px 4px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mega-menu-intro strong {
    margin: 18px 0 28px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.13;
    letter-spacing: -.04em;
}

.mega-menu-intro a {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
}

.mega-menu-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 18px;
}

.mega-menu-links>a {
    min-height: 74px;
    padding: 12px;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    border-radius: 8px;
    transition: background var(--transition), transform var(--transition);
}

.mega-menu-links>a:hover {
    background: var(--wash);
    transform: translateX(3px);
}

.mega-menu-links>a>span:first-child {
    color: var(--muted-2);
    font-size: 11px;
    padding-top: 3px;
}

.mega-menu-links strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.mega-menu-links small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 7px;
    position: relative;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 12px;
    width: 19px;
    height: 1.5px;
    background: var(--ink);
    transition: transform var(--transition), top var(--transition);
}

.menu-toggle span:nth-child(2) {
    top: 17px;
}

.menu-toggle span:nth-child(3) {
    top: 25px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

.menu-backdrop {
    position: fixed;
    inset: 78px 0 0;
    z-index: 900;
    background: rgba(0, 0, 0, .36);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

body.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

/* Shared typography and buttons */
.eyebrow,
.micro-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #55585e;
}

.eyebrow>span {
    width: 22px;
    height: 1px;
    background: currentColor;
}

.eyebrow-light,
.micro-label-light {
    color: rgba(255, 255, 255, .62);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter Display", "Inter Text", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-wrap: balance;
}

.section-heading {
    margin-bottom: 54px;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, .65fr);
    gap: 80px;
    align-items: end;
}

.section-heading h2 {
    max-width: 800px;
    margin: 18px 0 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 680;
}

.section-heading>p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.button {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), color var(--transition), border var(--transition);
}

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

.button-dark {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.button-dark:hover {
    background: #28292d;
}

.button-light {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
}

.button-light:hover {
    color: #fff;
    background: transparent;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    font-weight: 750;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
}

.text-link span,
.card-link span {
    transition: transform var(--transition);
}

.text-link:hover span,
a:hover .card-link span {
    transform: translate(3px, -2px);
}

.card-link {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 720;
}

.case-badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 9px;
    border: 1px solid #d5d6d8;
    border-radius: 999px;
    background: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.case-badge-blue {
    background: var(--blue-soft);
    color: #1956bc;
    border-color: #c7dcff;
}

.case-badge-gold {
    background: var(--gold-soft);
    color: #7a540b;
    border-color: #ead6aa;
}

.case-badge-green {
    background: var(--green-soft);
    color: #17683f;
    border-color: #c8e8d5;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.feature-tags span {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    color: var(--muted);
    background: rgba(255, 255, 255, .8);
}

/* Hero */
.hero {
    padding: 155px 0 0;
    min-height: 820px;
    background: linear-gradient(180deg, #fff 0%, #f7f7f6 100%);
}

.hero-grid {
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.05fr);
    gap: 70px;
    align-items: center;
}

.home-hero-content {
    padding: 55px 0 70px;
}

.home-hero-content h1 {
    margin: 25px 0 28px;
    font-size: clamp(55px, 6.7vw, 92px);
    line-height: .91;
    letter-spacing: -.065em;
    font-weight: 690;
}

.home-hero-content h1 em {
    color: #76787d;
    font-style: normal;
    font-weight: 580;
}

.hero-lead {
    max-width: 660px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.hero-platforms {
    margin-top: 46px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.hero-platforms span {
    color: #71747a;
    font-size: 11px;
    font-weight: 780;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    height: 570px;
    /* background: linear-gradient(145deg, #f7f7f5 0%, #eef0f1 100%); */
    /* border: 1px solid #d9dbde; */
    border-radius: 2px;
    overflow: hidden;
    /* box-shadow: 0 28px 72px rgba(9, 10, 12, .09); */
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 11, 12, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 11, 12, .045) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 13% 17%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 110, 241, .09), transparent 68%);
    filter: blur(28px);
}

.hero-orbit {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(11, 11, 12, .16);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
}

.hero-orbit-one {
    width: 365px;
    height: 365px;
}

.hero-orbit-two {
    width: 500px;
    height: 260px;
    transform: translate(-50%, -50%) rotate(25deg);
}

.hero-core {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%);
    display: grid;
    place-content: center;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #d8dade;
    box-shadow: 0 0 0 12px rgba(11, 11, 12, .055), 0 18px 45px rgba(9, 10, 12, .12);
}

.hero-core span {
    font-size: 32px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -.08em;
}

.hero-core small {
    margin-top: 7px;
    color: #85888d;
    font-size: 9px;
    letter-spacing: .16em;
}

.system-node {
    position: absolute;
    z-index: 4;
    min-width: 155px;
    padding: 13px 14px;
    display: grid;
    grid-template-columns: 35px 1fr;
    column-gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #d5d7da;
    box-shadow: 0 12px 30px rgba(9, 10, 12, .09);
    color: var(--ink);
    backdrop-filter: blur(10px);
}

.system-node::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 1px;
    background: rgba(11, 11, 12, .22);
}

.system-node strong {
    font-size: 12px;
}

.system-node small {
    grid-column: 2;
    color: #7f8287;
    font-size: 9px;
}

.node-icon {
    grid-row: span 2;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 850;
    background: #fff;
    color: #111;
}

.node-mobile {
    left: 8%;
    top: 18%;
}

.node-mobile::before {
    right: -42px;
    transform: rotate(23deg);
    transform-origin: left;
}

.node-mobile .node-icon {
    background: #cce0ff;
    color: #1d5cbb;
}

.node-web {
    right: 7%;
    top: 21%;
}

.node-web::before {
    left: -42px;
    transform: rotate(-21deg);
    transform-origin: right;
}

.node-web .node-icon {
    background: #d8f0e1;
    color: #26714a;
}

.node-desktop {
    left: 8%;
    bottom: 18%;
}

.node-desktop::before {
    right: -42px;
    transform: rotate(-21deg);
    transform-origin: left;
}

.node-desktop .node-icon {
    background: #f4e6c3;
    color: #866319;
}

.node-api {
    right: 7%;
    bottom: 20%;
}

.node-api::before {
    left: -42px;
    transform: rotate(24deg);
    transform-origin: right;
}

.node-api .node-icon {
    background: #f5d8ca;
    color: #a2471a;
}

.system-status {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 27px;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid #d4d6d9;
    color: #686b70;
    box-shadow: 0 8px 22px rgba(9, 10, 12, .06);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.system-status span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: #55d48a;
    box-shadow: 0 0 0 4px rgba(85, 212, 138, .12);
}

.hero-bottom-line {
    min-height: 88px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.3fr repeat(4, .65fr);
    gap: 20px;
    align-items: center;
    color: #777a80;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.hero-bottom-line p {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
}

.hero-bottom-line div span {
    margin-right: 9px;
    color: #b0b1b5;
}

/* Service overview */
.services-overview {
    background: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 390px;
    padding: 27px 28px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    transition: background var(--transition);
}

.service-card:hover {
    background: var(--wash);
}

.card-index {
    color: #aaaeb3;
    font-size: 10px;
    letter-spacing: .1em;
}

.service-symbol {
    position: relative;
    width: 96px;
    height: 84px;
    margin: 45px 0 35px;
}

.service-symbol i {
    position: absolute;
    display: block;
    border: 2px solid var(--ink);
    background: #fff;
    transition: transform 450ms cubic-bezier(.22, 1, .36, 1);
}

.service-card:hover .service-symbol i:nth-child(1) {
    transform: translate(-4px, -4px) rotate(-3deg);
}

.service-card:hover .service-symbol i:nth-child(2) {
    transform: translate(4px, 3px) rotate(3deg);
}

.service-symbol-mobil-uygulamalar i:nth-child(1) {
    left: 17px;
    top: 2px;
    width: 49px;
    height: 78px;
    border-radius: 10px;
}

.service-symbol-mobil-uygulamalar i:nth-child(2) {
    left: 33px;
    top: 9px;
    width: 17px;
    height: 3px;
    border: 0;
    background: #111;
}

.service-symbol-mobil-uygulamalar i:nth-child(3) {
    left: 39px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111;
}

.service-symbol-web-platformlari i:nth-child(1) {
    left: 2px;
    top: 8px;
    width: 91px;
    height: 65px;
    border-radius: 5px;
}

.service-symbol-web-platformlari i:nth-child(2) {
    left: 2px;
    top: 22px;
    width: 91px;
    height: 2px;
    border: 0;
    background: #111;
}

.service-symbol-web-platformlari i:nth-child(3) {
    left: 10px;
    top: 14px;
    width: 4px;
    height: 4px;
    border: 0;
    border-radius: 50%;
    background: #111;
    box-shadow: 8px 0 #111, 16px 0 #111;
}

.service-symbol-windows-linux i:nth-child(1) {
    left: 1px;
    top: 4px;
    width: 94px;
    height: 61px;
    border-radius: 4px;
}

.service-symbol-windows-linux i:nth-child(2) {
    left: 35px;
    top: 66px;
    width: 27px;
    height: 12px;
    border-width: 0 2px 2px;
}

.service-symbol-windows-linux i:nth-child(3) {
    left: 22px;
    top: 76px;
    width: 53px;
    height: 2px;
    border: 0;
    background: #111;
}

.service-symbol-backend-sistemleri i:nth-child(1),
.service-symbol-backend-sistemleri i:nth-child(2),
.service-symbol-backend-sistemleri i:nth-child(3) {
    left: 8px;
    width: 80px;
    height: 20px;
    border-radius: 4px;
}

.service-symbol-backend-sistemleri i:nth-child(1) {
    top: 4px;
}

.service-symbol-backend-sistemleri i:nth-child(2) {
    top: 32px;
}

.service-symbol-backend-sistemleri i:nth-child(3) {
    top: 60px;
}

.service-symbol-api-entegrasyon i:nth-child(1) {
    left: 4px;
    top: 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.service-symbol-api-entegrasyon i:nth-child(2) {
    right: 4px;
    top: 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.service-symbol-api-entegrasyon i:nth-child(3) {
    left: 30px;
    top: 41px;
    width: 38px;
    height: 2px;
    border: 0;
    background: #111;
}

.service-symbol-devops-bulut i:nth-child(1) {
    left: 18px;
    top: 17px;
    width: 60px;
    height: 44px;
    border-radius: 30px 30px 8px 8px;
}

.service-symbol-devops-bulut i:nth-child(2) {
    left: 1px;
    top: 44px;
    width: 94px;
    height: 2px;
    border: 0;
    background: #111;
}

.service-symbol-devops-bulut i:nth-child(3) {
    left: 46px;
    top: 60px;
    width: 3px;
    height: 20px;
    border: 0;
    background: #111;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: 24px;
    letter-spacing: -.035em;
}

.service-card p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* Product system */
.product-system {
    position: relative;
    overflow: hidden;
}

.product-system::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, black, transparent 70%);
    opacity: .4;
}

.product-system-grid {
    position: relative;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.product-system-content {
    position: sticky;
    top: 125px;
}

.product-system-content h2 {
    margin: 23px 0 25px;
    font-size: clamp(44px, 5.4vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;
}

.product-system-content h2 em {
    color: #85878c;
    font-style: normal;
    font-weight: 520;
}

.product-system-content p {
    max-width: 520px;
    margin-bottom: 33px;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
    line-height: 1.65;
}

.system-principles {
    border-top: 1px solid var(--line-dark);
}

.system-principle {
    min-height: 184px;
    padding: 33px 0;
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 22px;
    border-bottom: 1px solid var(--line-dark);
}

.system-principle>span {
    color: #666970;
    font-size: 12px;
}

.system-principle h3 {
    margin-bottom: 14px;
    font-size: 25px;
    letter-spacing: -.035em;
}

.system-principle p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: 15px;
    line-height: 1.65;
}

/* Solution tabs */
.solution-tabs {
    border: 1px solid var(--line);
    overflow: hidden;
}

.tab-panels,
.tab-panel,
.solution-tab-content,
.solution-mockup,
.solution-product-preview,
.mockup-body,
.mockup-content {
    min-width: 0;
    max-width: 100%;
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
}

.tab-list button {
    min-height: 82px;
    padding: 18px 20px;
    border: 0;
    border-right: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    gap: 13px;
    text-align: left;
    font-size: 13px;
    font-weight: 720;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.tab-list button:last-child {
    border-right: 0;
}

.tab-list button span {
    color: var(--muted);
    font-size: 10px;
}

.tab-list button[aria-selected="true"] {
    color: #fff;
    background: var(--ink);
}

.tab-list button[aria-selected="true"] span {
    color: rgba(255, 255, 255, .45);
}

.tab-panel {
    min-height: 505px;
    padding: 48px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.solution-tab-content h3 {
    margin: 18px 0 14px;
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.solution-tab-content>p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.solution-metric {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: #1757bd;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.solution-label-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-type-tag {
    display: inline-flex;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #55585e;
    background: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.solution-type-tag.is-ready {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.check-list {
    margin: 26px 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 20px;
    color: #3f4247;
    font-size: 13px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ink);
    font-weight: 800;
}

.solution-mockup {
    width: 100%;
    min-height: 370px;
    background: #f1f2f4;
    border: 1px solid #dfe1e4;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: perspective(900px) rotateY(-3deg) rotateX(1deg);
}

.solution-product-preview {
    width: 100%;
    min-height: 370px;
    padding: 15px;
    display: flex;
    overflow: hidden;
    background: #f1f2f4;
    border: 1px solid #dfe1e4;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.solution-product-art {
    min-height: 338px;
    border-radius: 9px;
}

.solution-product-art svg {
    display: block;
}

.solution-home-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.solution-home-actions .button {
    min-height: 48px;
}

.mockup-toolbar {
    height: 37px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 8px 8px 0 0;
}

.mockup-toolbar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c4c6ca;
}

.mockup-toolbar span {
    width: 120px;
    height: 7px;
    margin-left: 15px;
    border-radius: 5px;
    background: #e9eaec;
}

.mockup-body {
    min-height: 0;
    flex: 1;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    overflow: hidden;
}

.mockup-sidebar {
    background: #111214;
    border-radius: 0 0 0 8px;
}

.mockup-content {
    padding: 18px;
    background: #fff;
    border-radius: 0 0 8px 0;
}

.mockup-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.mockup-kpis i {
    height: 52px;
    border-radius: 7px;
    background: #f1f2f4;
}

.mockup-chart {
    height: 106px;
    margin-top: 12px;
    border-radius: 7px;
    background: linear-gradient(165deg, #f1f2f4 0 48%, #d9e7ff 49% 52%, #f1f2f4 53%);
}

.mockup-list {
    margin-top: 12px;
    display: grid;
    gap: 7px;
}

.mockup-list i {
    height: 25px;
    border-radius: 5px;
    background: #f1f2f4;
}

.solution-mockup-siparis-stok .mockup-chart {
    background: linear-gradient(165deg, #f1f2f4 0 48%, #f0dbad 49% 52%, #f1f2f4 53%);
}

.solution-mockup-crm-portallar .mockup-chart {
    background: linear-gradient(165deg, #f1f2f4 0 48%, #c9ebd7 49% 52%, #f1f2f4 53%);
}

.solution-mockup-gorev-yonetimi .mockup-chart {
    background: repeating-linear-gradient(90deg, #f1f2f4 0 30%, #fff 30% 33%);
}

/* Projects */
.featured-projects-section {
    background: var(--wash);
}

.featured-projects-section .empty-state {
    max-width: 640px;
    padding: 48px;
    border: 1px solid var(--line);
    background: #fff;
}

.featured-projects-section .empty-state h3 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.featured-projects-section .empty-state p {
    max-width: 520px;
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.65;
}

.featured-project {
    min-height: 565px;
    display: grid;
    grid-template-columns: .73fr 1.27fr;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.featured-project-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.featured-project-content h3 {
    margin: 25px 0 17px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -.055em;
}

.featured-project-content>p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.featured-project-content .feature-tags {
    margin-top: 18px;
}

.project-visual {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-visual svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-visual {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, .72), rgba(255, 255, 255, .72)),
        linear-gradient(90deg, transparent 49.8%, rgba(16, 17, 19, .08) 50%, transparent 50.2%),
        linear-gradient(transparent 49.8%, rgba(16, 17, 19, .08) 50%, transparent 50.2%);
    background-size: auto, 54px 54px, 54px 54px;
}

.reference-visual-dernek-stk {
    background-color: #f3f0e9;
}

.reference-visual-e-ticaret {
    background-color: #edf4f0;
}

.reference-visual-kicker {
    position: absolute;
    left: 28px;
    top: 25px;
    color: #686b70;
    font-size: 9px;
    line-height: 1;
    font-weight: 780;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.reference-logo-frame {
    width: 220px;
    height: 220px;
    max-width: 58%;
    max-height: 58%;
    flex: 0 0 auto;
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(16, 17, 19, .12);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(16, 17, 19, .1);
    transition: transform 500ms cubic-bezier(.22, 1, .36, 1);
}

.reference-logo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

a:hover .reference-logo-frame {
    transform: translateY(-6px) scale(1.015);
}

.featured-project-art {
    min-height: 565px;
    padding: 36px;
    background: #eaf1fb;
    display: flex;
    align-items: center;
}

.featured-project-art.reference-visual {
    height: 565px;
}

.featured-project-art .reference-logo-frame,
.case-hero-art .reference-logo-frame {
    width: 275px;
    height: 275px;
}

.featured-project-art svg {
    filter: drop-shadow(0 20px 32px rgba(25, 45, 80, .12));
    transition: transform 500ms cubic-bezier(.22, 1, .36, 1);
}

.featured-project:hover .featured-project-art svg {
    transform: translateY(-7px) scale(1.01);
}

.project-mini-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.project-mini-card {
    min-height: 510px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.project-mini-art {
    height: 275px;
    padding: 25px;
    background: #f1f0ed;
}

.project-mini-art.reference-visual {
    flex: 0 0 275px;
    min-height: 275px;
}

.project-mini-art .reference-logo-frame {
    width: 160px;
    height: 160px;
}

.project-mini-card:nth-child(2) .project-mini-art {
    background: #edf4f0;
}

.project-mini-art svg {
    transition: transform 500ms cubic-bezier(.22, 1, .36, 1);
}

.project-mini-card:hover .project-mini-art svg {
    transform: scale(1.025);
}

.project-card-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.project-card-content h3 {
    margin: 17px 0 11px;
    font-size: 28px;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.project-card-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Process */
.process-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    border: 1px solid var(--line);
}

.process-list {
    border-right: 1px solid var(--line);
}

.process-button {
    width: 100%;
    min-height: 88px;
    padding: 0 23px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 10px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.process-button:last-child {
    border-bottom: 0;
}

.process-button span {
    color: var(--muted);
    font-size: 10px;
}

.process-button strong {
    font-size: 15px;
}

.process-button i {
    font-style: normal;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity var(--transition), transform var(--transition);
}

.process-button.is-active {
    color: #fff;
    background: var(--ink);
}

.process-button.is-active i {
    opacity: 1;
    transform: translateX(0);
}

.process-panels {
    min-height: 420px;
    background: var(--wash);
}

.process-panel {
    height: 100%;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.process-panel::before {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    border: 1px solid #d9dadc;
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(255, 255, 255, .5), 0 0 0 80px rgba(255, 255, 255, .32);
}

.process-number {
    color: var(--muted);
    font-size: 12px;
}

.process-panel h3 {
    margin: 25px 0 15px;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -.05em;
}

.process-panel>p {
    position: relative;
    z-index: 1;
    max-width: 550px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.deliverable-grid {
    position: relative;
    z-index: 1;
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 570px;
}

.deliverable-grid span {
    padding: 14px 15px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 650;
}

.deliverable-grid i {
    margin-right: 9px;
    font-style: normal;
    color: var(--green);
}

/* Guarantees and FAQ */
.guarantees-section {
    background: var(--ink);
    color: #fff;
}

.guarantees-intro {
    max-width: 820px;
}

.guarantees-intro h2 {
    margin: 20px 0 55px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1;
    letter-spacing: -.055em;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.guarantee-card {
    min-height: 280px;
    padding: 28px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.guarantee-card>span {
    color: #60636a;
    font-size: 10px;
}

.guarantee-card h3 {
    margin: 74px 0 12px;
    font-size: 22px;
    letter-spacing: -.035em;
}

.guarantee-card p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    line-height: 1.65;
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 100px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    margin: 20px 0 20px;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.faq-intro p {
    color: var(--muted);
    font-size: 15px;
}

.faq-intro .text-link {
    margin-top: 15px;
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
    margin: 0;
}

.accordion-item button {
    width: 100%;
    min-height: 90px;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 680;
    cursor: pointer;
}

.accordion-item button i {
    position: relative;
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    top: 12px;
    height: 1px;
    background: var(--ink);
    transition: transform var(--transition);
}

.accordion-item button i::after {
    transform: rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i::after {
    transform: rotate(0);
}

.accordion-panel {
    padding: 0 60px 27px 0;
}

.accordion-panel p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Page hero */
.page-hero {
    padding: 175px 0 90px;
    border-bottom: 1px solid var(--line);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 90px;
    align-items: end;
}

.page-hero h1 {
    max-width: 920px;
    margin: 25px 0 0;
    font-size: clamp(54px, 6.7vw, 88px);
    line-height: .94;
    letter-spacing: -.065em;
}

.page-hero-grid>p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.dark-page-hero {
    color: #fff;
    background: var(--ink);
    border-color: var(--line-dark);
}

.dark-page-hero .page-hero-grid>p {
    color: rgba(255, 255, 255, .55);
}

/* Services page */
.service-detail-list {
    border-top: 1px solid var(--line);
}

.service-detail {
    scroll-margin-top: 100px;
    min-height: 330px;
    padding: 52px 0;
    display: grid;
    grid-template-columns: 100px .9fr 1.1fr;
    gap: 35px;
    align-items: start;
    border-bottom: 1px solid var(--line);
}

.service-detail-number {
    color: #aaadb2;
    font-size: 12px;
}

.service-detail-main h2 {
    margin: 16px 0 16px;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -.05em;
}

.service-detail-main p {
    max-width: 550px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-detail-features span {
    min-height: 58px;
    padding: 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 650;
}

.sector-cloud {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d7d8da;
    border-left: 1px solid #d7d8da;
}

.sector-cloud span {
    min-height: 120px;
    padding: 23px;
    display: flex;
    align-items: end;
    border-right: 1px solid #d7d8da;
    border-bottom: 1px solid #d7d8da;
    font-size: 16px;
    font-weight: 680;
    letter-spacing: -.02em;
}

.delivery-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.delivery-grid h2 {
    max-width: 560px;
    margin: 20px 0 0;
    font-size: clamp(40px, 4.6vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.delivery-list {
    border-top: 1px solid var(--line);
}

.delivery-list div {
    min-height: 72px;
    padding: 0 4px;
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.delivery-list span {
    color: #a6a9ae;
    font-size: 10px;
}

.delivery-list strong {
    font-size: 17px;
}

.inline-cta {
    padding: 90px 0;
    color: #fff;
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
}

.inline-cta-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.inline-cta h2 {
    max-width: 800px;
    margin: 17px 0 0;
    font-size: clamp(36px, 4.8vw, 61px);
    line-height: 1;
    letter-spacing: -.055em;
}

.inline-cta .button {
    flex: 0 0 auto;
}

/* Solutions page */
.solutions-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.solution-detail-card {
    scroll-margin-top: 105px;
    min-height: 520px;
    padding: 38px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
}

.solution-detail-card:hover {
    background: var(--wash);
}

.solution-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.solution-card-head>span:first-child {
    color: #a7aab0;
    font-size: 10px;
}

.solution-detail-card h2 {
    margin: 62px 0 17px;
    font-size: 37px;
    line-height: 1;
    letter-spacing: -.05em;
}
.solution-kind-label {
    display: inline-block;
    margin: 0 0 12px;
    color: #777b82;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.solution-detail-card>p {
    max-width: 550px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.solution-detail-card ul {
    margin: auto 0 0;
    padding: 28px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 25px;
    border-top: 1px solid var(--line);
    list-style: none;
}

.solution-detail-card li {
    position: relative;
    padding-left: 15px;
    font-size: 12px;
    color: #45484e;
}

.solution-detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ink);
}

.solution-case-link {
    margin-top: 26px;
}

.solution-detail-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 440px;
}

.system-architecture-section {
    background: var(--wash);
}

.architecture-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    align-items: center;
}

.architecture-content h2 {
    margin: 22px 0 20px;
    font-size: clamp(43px, 5vw, 66px);
    line-height: .99;
    letter-spacing: -.055em;
}

.architecture-content>p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.architecture-principles {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #d4d6d8;
    border-left: 1px solid #d4d6d8;
}

.architecture-principles span {
    min-height: 54px;
    padding: 14px;
    border-right: 1px solid #d4d6d8;
    border-bottom: 1px solid #d4d6d8;
    font-size: 11px;
    font-weight: 680;
}

.architecture-visual {
    position: relative;
    min-height: 510px;
    border: 1px solid #d8d9db;
    background: #fff;
    overflow: hidden;
}

.architecture-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#d8d9dc 1px, transparent 1px);
    background-size: 22px 22px;
}

.architecture-visual svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.architecture-visual svg path {
    fill: none;
    stroke: #b9bcc1;
    stroke-width: 1.2;
    stroke-dasharray: 5 6;
}

.architecture-core {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    box-shadow: 0 0 0 14px rgba(12, 12, 13, .06);
}

.architecture-core strong {
    font-size: 28px;
}

.architecture-core small {
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
}

.architecture-device {
    position: absolute;
    z-index: 3;
    width: 130px;
    height: 96px;
    display: grid;
    place-content: center;
    gap: 8px;
    text-align: center;
    background: #fff;
    border: 1px solid #d5d6d8;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    font-size: 11px;
    font-weight: 750;
}

.architecture-device i {
    width: 38px;
    height: 30px;
    margin: auto;
    display: block;
    border: 2px solid var(--ink);
}

.device-phone {
    left: 40px;
    top: 55px;
}

.device-phone i {
    width: 20px;
    height: 34px;
    border-radius: 4px;
}

.device-browser {
    right: 40px;
    top: 55px;
}

.device-browser i {
    position: relative;
}

.device-browser i::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 7px;
    border-top: 2px solid var(--ink);
}

.device-desktop {
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
}

/* Project index and case */
.project-filter {
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-filter button {
    min-height: 39px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.project-filter button.is-active {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

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

.project-index-card {
    min-height: 580px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
}

.project-index-card[hidden] {
    display: none;
}

.project-index-art {
    height: 330px;
    padding: 27px;
    background: var(--wash);
}

.project-index-art.reference-visual {
    flex: 0 0 330px;
    min-height: 330px;
}

.project-index-art .reference-logo-frame {
    width: 195px;
    height: 195px;
}

.project-index-card:nth-child(3n+1) .project-index-art {
    background: #edf3fc;
}

.project-index-card:nth-child(3n+2) .project-index-art {
    background: #f3f0e9;
}

.project-index-card:nth-child(3n) .project-index-art {
    background: #edf4f0;
}

.project-index-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.project-index-content h2 {
    margin: 17px 0 12px;
    font-size: 31px;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.project-index-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.project-card-footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 720;
}

.project-card-footer i {
    font-style: normal;
}

.filter-empty {
    padding: 60px;
    text-align: center;
    color: var(--muted);
    border: 1px solid var(--line);
}

.case-hero {
    padding: 150px 0 80px;
    background: var(--wash);
    border-bottom: 1px solid var(--line);
}

.case-hero-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px;
    align-items: center;
}

.back-link {
    display: inline-block;
    margin-bottom: 38px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.case-hero-content h1 {
    margin: 20px 0 21px;
    font-size: clamp(52px, 6vw, 78px);
    line-height: .93;
    letter-spacing: -.065em;
}

.case-hero-content>p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.case-hero-content .feature-tags {
    margin-top: 25px;
}

.case-live-action {
    margin-top: 36px;
}

.case-live-link {
    min-height: 52px;
}

.case-hero-art {
    min-height: 500px;
    padding: 35px;
}

.case-hero-art.reference-visual {
    height: 500px;
}

.case-hero-art svg {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.case-narrative-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 100px;
    align-items: start;
}

.case-sidebar {
    position: sticky;
    top: 110px;
    padding: 25px;
    border: 1px solid var(--line);
}

.case-sidebar nav {
    margin: 25px 0;
    display: grid;
}

.case-sidebar nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
}

.case-sidebar p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.case-section {
    position: relative;
    min-height: 440px;
    padding: 20px 0 80px;
    scroll-margin-top: 96px;
    border-bottom: 1px solid var(--line);
}

.case-section+.case-section {
    padding-top: 80px;
}

.case-section-number {
    position: absolute;
    right: 0;
    top: 15px;
    color: #dedfe1;
    font-size: 88px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: -.08em;
}

.case-section h2 {
    max-width: 750px;
    margin: 22px 0 35px;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.case-bullet-list {
    margin: 0;
    padding: 0;
    max-width: 790px;
    border-top: 1px solid var(--line);
    list-style: none;
}

.case-bullet-list li {
    min-height: 68px;
    padding: 19px 15px 19px 42px;
    position: relative;
    border-bottom: 1px solid var(--line);
    color: #42454a;
    font-size: 14px;
}

.case-bullet-list li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 27px;
    width: 7px;
    height: 7px;
    background: var(--ink);
}

.case-chip-grid {
    max-width: 790px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.case-chip-grid span {
    min-height: 70px;
    padding: 20px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 680;
}

.module-list {
    border-top: 1px solid var(--line);
}

.module-list>div {
    min-height: 125px;
    padding: 23px 0;
    display: grid;
    grid-template-columns: 55px .8fr 1.2fr;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.module-list span {
    color: #a4a7ac;
    font-size: 10px;
}

.module-list h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -.025em;
}

.module-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.case-outcome {
    min-height: 390px;
    padding: 65px 55px !important;
    color: #fff;
    background: var(--ink);
    border: 0;
}

.case-outcome .case-section-number {
    top: 45px;
    right: 45px;
    color: #292a2e;
}

.case-outcome blockquote {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 35px 0 28px;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.13;
    letter-spacing: -.045em;
}

.case-outcome>p {
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

.product-references-section {
    background: var(--wash);
}

.product-reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 22px;
}

.product-reference-card {
    min-height: 480px;
    display: grid;
    grid-template-rows: 280px 1fr;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
}

.product-reference-art {
    min-height: 280px;
}

.product-reference-art.reference-visual {
    height: 280px;
}

.product-reference-art .reference-logo-frame {
    width: 165px;
    height: 165px;
}

.product-reference-card>div:last-child {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.product-reference-card h3 {
    margin: 17px 0 10px;
    font-size: 28px;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.product-reference-card p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.product-reference-card .card-link {
    margin-top: auto;
}

/* About */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.principle-card {
    min-height: 310px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.principle-card>span {
    color: #aaadb2;
    font-size: 10px;
}

.principle-card h2 {
    margin: 95px 0 13px;
    font-size: 30px;
    letter-spacing: -.045em;
}

.principle-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.journey-section {
    color: #fff;
    background: var(--ink);
}

.journey-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.journey-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.journey-intro h2 {
    margin: 22px 0 20px;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -.055em;
}

.journey-intro p {
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
    line-height: 1.7;
}

.journey-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-dark);
    list-style: none;
}

.journey-list li {
    min-height: 105px;
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
}

.journey-list span {
    color: #5c5f65;
    font-size: 11px;
}

.journey-list strong {
    font-size: 24px;
    letter-spacing: -.03em;
}

.continuity-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: center;
}

.continuity-grid h2 {
    margin: 21px 0 20px;
    font-size: clamp(42px, 4.8vw, 62px);
    line-height: 1;
    letter-spacing: -.055em;
}

.continuity-grid p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.continuity-tags {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.continuity-tags span {
    min-height: 56px;
    padding: 15px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 680;
}

.continuity-visual {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: center;
    background: var(--wash);
    border: 1px solid var(--line);
    overflow: hidden;
}

.continuity-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#e4e5e7 1px, transparent 1px), linear-gradient(90deg, #e4e5e7 1px, transparent 1px);
    background-size: 34px 34px;
}

.doc-stack {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 280px;
    padding: 35px;
    background: #fff;
    border: 1px solid #cfd1d4;
    box-shadow: 18px 18px 0 #dfe0e1, 36px 36px 0 #ececeb;
}

.doc-stack i {
    display: block;
    height: 8px;
    margin-bottom: 16px;
    background: #dedfe1;
}

.doc-stack i:nth-child(2) {
    width: 75%;
}

.doc-stack i:nth-child(3) {
    width: 55%;
}

.doc-stack span {
    position: absolute;
    left: 35px;
    bottom: 35px;
    font-family: ui-monospace, monospace;
    font-size: 13px;
    font-weight: 700;
}

.repo-line {
    position: absolute;
    z-index: 1;
    width: 340px;
    height: 1px;
    background: #aaaeb3;
    transform: rotate(-25deg);
}

.repo-node {
    position: absolute;
    z-index: 3;
    right: 70px;
    bottom: 55px;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

/* Contact form */
.contact-hero {
    background: var(--wash);
}

.brief-layout {
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    gap: 80px;
    align-items: start;
}

.brief-aside {
    position: sticky;
    top: 115px;
}

.brief-aside h2 {
    margin: 20px 0 17px;
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.brief-aside>p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.source-note {
    margin-top: 28px;
    padding: 16px;
    border-left: 3px solid var(--blue);
    background: var(--blue-soft);
}

.source-note span {
    display: block;
    color: #53719c;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.source-note strong {
    display: block;
    margin-top: 4px;
    font-size: 13px;
}

.contact-details {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.contact-details>div+div {
    margin-top: 18px;
}

.contact-details span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contact-details a {
    display: inline-block;
    max-width: 320px;
    font-size: 14px;
    font-weight: 720;
    line-height: 1.55;
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.form-alert,
.form-submit-status {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.form-alert {
    padding: 14px 35px;
    border-bottom: 1px solid var(--line);
}

.form-alert-error,
.form-submit-status {
    color: #a12c2c;
}

.form-submit-status:not(:empty) {
    margin-top: 18px;
}

[data-submit-button]:disabled {
    cursor: wait;
    opacity: .65;
}

.consent-field a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.brief-card {
    min-height: 650px;
    scroll-margin-top: 96px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .07);
}

.form-progress {
    height: 76px;
    padding: 0 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.form-progress span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9a9da2;
    font-size: 11px;
    font-weight: 700;
}

.form-progress span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    height: 2px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.form-progress span.is-active {
    color: var(--ink);
}

.form-progress span.is-active::after {
    transform: scaleX(1);
}

.form-progress i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 9px;
    font-style: normal;
}

.form-step,
.brief-result {
    padding: 44px;
}

.form-step h2,
.brief-result h2 {
    margin: 18px 0 9px;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.form-step>p {
    color: var(--muted);
    font-size: 13px;
}

.choice-grid {
    margin: 32px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border: 0;
}

.choice-grid label {
    cursor: pointer;
}

.choice-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-grid label>span {
    min-height: 83px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    transition: border var(--transition), background var(--transition), transform var(--transition);
}

.choice-grid label:hover>span {
    transform: translateY(-2px);
    border-color: #aeb0b5;
}

.choice-grid input:focus-visible+span {
    outline: 3px solid rgba(39, 110, 241, .35);
    outline-offset: 2px;
}

.choice-grid input:checked+span {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.choice-grid i {
    color: #9a9da2;
    font-size: 9px;
    font-style: normal;
}

.choice-grid strong {
    font-size: 13px;
}

.form-actions {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-button {
    padding: 8px 0;
    border: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 720;
    cursor: pointer;
}

.status-choice-row {
    margin: 27px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 0;
}

.status-choice-row label {
    cursor: pointer;
}

.status-choice-row input {
    position: absolute;
    opacity: 0;
}

.status-choice-row span {
    min-height: 50px;
    padding: 12px;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 680;
}

.status-choice-row input:checked+span {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.field-group {
    display: grid;
    gap: 8px;
}

.field-group>span:first-child {
    font-size: 12px;
    font-weight: 720;
}

.field-group input,
.field-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    transition: border var(--transition), box-shadow var(--transition);
}

.field-group input {
    height: 50px;
    padding: 0 13px;
}

.field-group textarea {
    padding: 13px;
    resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: 0;
    border-color: #777b82;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
}

.field-group small {
    color: var(--muted-2);
    font-size: 10px;
    text-align: right;
}

.form-grid-two {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field-error {
    min-height: 17px;
    margin: 6px 0 0;
    color: #b12b25;
    font-size: 11px;
}

[aria-invalid="true"] {
    border-color: #b12b25 !important;
}

.consent-field {
    margin-top: 24px;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.consent-field input {
    margin-top: 3px;
    accent-color: var(--ink);
}

.result-check {
    width: 54px;
    height: 54px;
    margin-bottom: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    font-size: 22px;
}

.brief-result>p {
    margin-top: 30px;
    color: var(--muted);
    font-size: 12px;
}

.result-summary {
    margin-top: 35px;
    border-top: 1px solid var(--line);
}

.result-summary div {
    min-height: 70px;
    padding: 15px 0;
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.result-summary span {
    color: var(--muted-2);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.result-summary strong {
    font-size: 14px;
}

.brief-result .text-button {
    margin-top: 10px;
}

/* Legal and 404 */
.legal-hero {
    padding: 175px 0 85px;
    background: var(--wash);
    border-bottom: 1px solid var(--line);
}

.legal-hero-inner {
    max-width: 900px;
}

.legal-hero h1 {
    margin: 24px 0 20px;
    font-size: clamp(54px, 6.5vw, 84px);
    line-height: .95;
    letter-spacing: -.065em;
}

.legal-hero p {
    max-width: 700px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 100px;
    align-items: start;
}

.legal-layout aside {
    position: sticky;
    top: 115px;
    padding: 22px;
    border: 1px solid var(--line);
}

.legal-layout aside p {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.legal-layout aside .micro-label:not(:first-child) {
    display: block;
    margin-top: 25px;
}

.legal-layout aside>a {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.65;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content {
    border-top: 1px solid var(--line);
}

.legal-content article {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 55px .7fr 1.3fr;
    gap: 25px;
    border-bottom: 1px solid var(--line);
}

.legal-content article>span {
    color: #aaaeb3;
    font-size: 10px;
}

.legal-content h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.035em;
}

.legal-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.legal-content a {
    color: var(--ink);
    text-decoration: underline;
}

.not-found-section {
    padding: 155px 0 80px;
    min-height: 780px;
    display: flex;
    align-items: center;
}

.not-found-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.not-found-code {
    display: block;
    color: #e1e2e4;
    font-size: 100px;
    line-height: .8;
    font-weight: 800;
    letter-spacing: -.1em;
}

.not-found-content h1 {
    margin: 20px 0;
    font-size: clamp(52px, 6vw, 80px);
    line-height: .94;
    letter-spacing: -.065em;
}

.not-found-content p {
    max-width: 600px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.not-found-content>div {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.not-found-map {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: var(--wash);
    border: 1px solid var(--line);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#dedfe1 1px, transparent 1px), linear-gradient(90deg, #dedfe1 1px, transparent 1px);
    background-size: 38px 38px;
    transform: rotate(12deg) scale(1.2);
}

.map-point {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 0 0 1px var(--ink);
}

.point-one {
    left: 22%;
    top: 28%;
}

.point-two {
    right: 20%;
    top: 36%;
}

.point-three {
    left: 34%;
    bottom: 20%;
}

.lost-marker {
    position: absolute;
    left: 56%;
    top: 58%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50% 50% 50% 0;
    rotate: -45deg;
    font-size: 35px;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}

.lost-marker::first-letter {
    rotate: 45deg;
}

/* Footer */
.site-footer {
    color: #fff;
    background: #080809;
}

.footer-top {
    padding: 95px 0 70px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    border-bottom: 1px solid #27282c;
}

.footer-statement h2 {
    max-width: 720px;
    margin: 22px 0 32px;
    font-size: clamp(43px, 5.2vw, 68px);
    line-height: .98;
    letter-spacing: -.06em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-grid h3 {
    margin-bottom: 22px;
    color: #7b7e84;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.footer-grid a {
    display: block;
    margin: 11px 0;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    transition: color var(--transition);
}

.footer-grid a:hover {
    color: #fff;
}

.footer-grid .footer-address {
    max-width: 230px;
    margin-top: 18px;
    line-height: 1.6;
}

.footer-bottom {
    min-height: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    color: #797c82;
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-brand {
    color: #fff;
    font-size: 13px;
    font-weight: 750;
}

.footer-legal {
    justify-self: end;
    display: flex;
    gap: 20px;
}

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

.toast {
    position: fixed;
    z-index: 1300;
    right: 22px;
    bottom: 22px;
    max-width: 340px;
    padding: 13px 16px;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
    font-size: 12px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.toast.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Reveal */
.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms cubic-bezier(.22, 1, .36, 1), transform 650ms cubic-bezier(.22, 1, .36, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    :root {
        --container: min(100% - 38px, 1100px);
    }

    .primary-nav {
        position: fixed;
        top: 78px;
        right: 0;
        width: min(440px, 100%);
        height: calc(100dvh - 78px);
        padding: 18px;
        display: block;
        overflow-y: auto;
        background: #fff;
        transform: translateX(105%);
        transition: transform var(--transition);
    }

    body.menu-open .primary-nav {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }

    .nav-link {
        width: 100%;
        height: 54px;
        padding: 0 8px;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown {
        height: auto;
        display: block;
    }

    .mega-menu {
        position: static;
        width: auto;
        padding: 0;
        display: block;
        border: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 350ms ease;
    }

    .nav-dropdown.is-open .mega-menu {
        transform: none;
        max-height: 1200px;
    }

    .mega-menu-intro {
        display: none;
    }

    .mega-menu-links {
        padding: 8px 0 15px 18px;
        display: block;
        border-bottom: 1px solid var(--line);
    }

    .mega-menu-links>a {
        min-height: 56px;
        padding: 9px 4px;
    }

    .header-cta {
        width: 100%;
        min-height: 49px;
        margin: 17px 0 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 25px;
    }

    .home-hero-content {
        padding-bottom: 0;
    }

    .hero-visual {
        height: 560px;
    }

    .hero-bottom-line {
        margin-top: 65px;
        padding-bottom: 20px;
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-bottom-line p {
        grid-column: 1 / -1;
        padding-top: 20px;
    }

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

    .product-system-grid,
    .architecture-grid,
    .continuity-grid {
        gap: 60px;
    }

    .tab-panel {
        gap: 35px;
    }

    .featured-project {
        grid-template-columns: 1fr;
    }

    .featured-project-art {
        min-height: 480px;
        order: -1;
    }

    .featured-project-art.reference-visual {
        height: 480px;
    }

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

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .page-hero-grid>p {
        max-width: 700px;
    }

    .service-detail {
        grid-template-columns: 60px .8fr 1.2fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    :root {
        --container: calc(100% - 30px);
    }

    .section {
        padding: 82px 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero {
        padding-top: 125px;
        min-height: auto;
    }

    .home-hero-content h1 {
        font-size: clamp(52px, 12vw, 78px);
    }

    .hero-visual {
        height: 470px;
    }

    .system-node {
        min-width: 135px;
    }

    .node-mobile,
    .node-desktop {
        left: 4%;
    }

    .node-web,
    .node-api {
        right: 4%;
    }

    .hero-bottom-line {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 20px;
    }

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

    .service-card {
        min-height: 330px;
    }

    .product-system-grid {
        grid-template-columns: 1fr;
    }

    .product-system-content,
    .faq-intro,
    .journey-intro,
    .brief-aside,
    .legal-layout aside,
    .case-sidebar {
        position: static;
    }

    .tab-list {
        grid-template-columns: 1fr 1fr;
    }

    .tab-list button:nth-child(2) {
        border-right: 0;
    }

    .tab-list button:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .tab-panel {
        padding: 30px;
        grid-template-columns: minmax(0, 1fr);
        overflow: hidden;
    }

    .solution-mockup,
    .solution-product-preview {
        transform: none;
    }

    .project-mini-grid,
    .projects-grid,
    .solutions-detail-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .process-layout {
        grid-template-columns: 1fr;
    }

    .process-list {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .faq-layout,
    .delivery-grid,
    .journey-grid,
    .case-narrative-grid,
    .brief-layout,
    .legal-layout,
    .not-found-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .footer-bottom {
        padding: 22px 0;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-legal {
        justify-self: start;
    }

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

    .page-hero {
        padding-top: 145px;
    }

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

    .service-detail-features {
        grid-column: 2;
    }

    .sector-cloud {
        grid-template-columns: 1fr 1fr;
    }

    .architecture-grid,
    .continuity-grid {
        grid-template-columns: 1fr;
    }

    .architecture-visual {
        min-height: 480px;
    }

    .case-hero-grid {
        grid-template-columns: 1fr;
    }

    .case-hero-art {
        min-height: 420px;
    }

    .case-hero-art.reference-visual {
        height: 420px;
    }

    .case-sidebar nav {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }

    .module-list>div {
        grid-template-columns: 42px 1fr;
    }

    .module-list p {
        grid-column: 2;
    }

    .brief-aside {
        max-width: 650px;
    }

    .footer-grid {
        gap: 20px;
    }
}

@media (max-width: 560px) {
    :root {
        --container: calc(100% - 24px);
    }

    .site-header {
        height: 68px;
    }

    .brand {
        font-size: 15px;
        gap: 9px;
    }

    .brand-mark {
        width: 28px;
        height: 28px;
    }

    .primary-nav {
        top: 68px;
        height: calc(100dvh - 68px);
        width: 100%;
    }

    .menu-backdrop {
        inset: 68px 0 0;
    }

    .section {
        padding: 68px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 39px;
    }

    .hero {
        padding-top: 98px;
    }

    .hero-grid {
        gap: 35px;
    }

    .home-hero-content h1 {
        margin-top: 20px;
        font-size: 50px;
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-visual {
        height: 420px;
        margin-inline: -12px;
    }

    .hero-core {
        width: 92px;
        height: 92px;
    }

    .hero-core span {
        font-size: 26px;
    }

    .hero-orbit-one {
        width: 270px;
        height: 270px;
    }

    .hero-orbit-two {
        width: 370px;
        height: 200px;
    }

    .system-node {
        min-width: 116px;
        padding: 9px;
        grid-template-columns: 28px 1fr;
    }

    .node-icon {
        width: 28px;
        height: 28px;
    }

    .system-node strong {
        font-size: 10px;
    }

    .system-node small {
        font-size: 8px;
    }

    .node-mobile,
    .node-desktop {
        left: 2%;
    }

    .node-web,
    .node-api {
        right: 2%;
    }

    .system-node::before {
        display: none;
    }

    .system-status {
        bottom: 17px;
    }

    .hero-bottom-line {
        font-size: 9px;
    }

    .service-card {
        padding: 24px;
        min-height: 310px;
    }

    .service-symbol {
        margin: 35px 0 25px;
    }

    .product-system-content h2,
    .faq-intro h2,
    .delivery-grid h2,
    .architecture-content h2,
    .continuity-grid h2,
    .journey-intro h2 {
        font-size: 40px;
    }

    .system-principle {
        grid-template-columns: 42px 1fr;
    }

    .tab-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .tab-list button {
        flex: 0 0 73%;
        border-bottom: 0 !important;
        scroll-snap-align: start;
    }

    .tab-panel {
        padding: 22px 16px 26px;
        gap: 30px;
        grid-template-columns: minmax(0, 1fr);
        overflow: hidden;
    }

    .solution-tab-content h3 {
        font-size: 33px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .solution-mockup,
    .solution-product-preview {
        width: 100%;
        height: 300px;
        min-height: 0;
        padding: 10px;
        transform: none;
        box-shadow: 0 12px 32px rgba(9, 10, 12, .07);
    }

    .solution-product-art {
        height: 100%;
        min-height: 0;
    }

    .solution-home-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .solution-home-actions .button {
        width: 100%;
    }

    .mockup-toolbar {
        flex: 0 0 37px;
    }

    .mockup-toolbar span {
        width: min(120px, 45%);
    }

    .mockup-body {
        width: 100%;
        min-height: 0;
        grid-template-columns: 52px minmax(0, 1fr);
        overflow: hidden;
    }

    .mockup-content {
        padding: 12px;
        overflow: hidden;
    }

    .mockup-chart {
        height: 92px;
    }

    .mockup-list i {
        height: 22px;
    }

    .featured-project-content,
    .project-card-content,
    .project-index-content {
        padding: 24px;
    }

    .featured-project-art {
        min-height: 330px;
        padding: 14px;
    }

    .featured-project-art.reference-visual {
        height: 330px;
    }

    .project-mini-art,
    .project-index-art {
        height: 245px;
        padding: 15px;
    }

    .project-mini-art.reference-visual,
    .project-index-art.reference-visual {
        min-height: 245px;
        height: 245px;
        flex-basis: 245px;
    }

    .project-mini-art .reference-logo-frame,
    .project-index-art .reference-logo-frame {
        width: 150px;
        height: 150px;
    }

    .process-panel {
        padding: 30px 24px;
    }

    .process-panel h3 {
        font-size: 36px;
    }

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

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

    .guarantee-card {
        min-height: 230px;
    }

    .guarantee-card h3 {
        margin-top: 55px;
    }

    .accordion-item button {
        font-size: 16px;
    }

    .page-hero {
        padding: 125px 0 62px;
    }

    .page-hero h1 {
        font-size: 48px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-detail-number {
        margin-bottom: 8px;
    }

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

    .sector-cloud {
        grid-template-columns: 1fr;
    }

    .sector-cloud span {
        min-height: 85px;
    }

    .inline-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .inline-cta h2 {
        font-size: 39px;
    }

    .solution-detail-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .solution-detail-card h2 {
        margin-top: 45px;
        font-size: 33px;
    }

    .solution-detail-card ul {
        margin-top: 35px;
        grid-template-columns: 1fr;
    }

    .architecture-principles,
    .continuity-tags {
        grid-template-columns: 1fr;
    }

    .architecture-visual {
        min-height: 420px;
    }

    .architecture-device {
        width: 105px;
        height: 78px;
    }

    .device-phone {
        left: 16px;
    }

    .device-browser {
        right: 16px;
    }

    .device-desktop {
        bottom: 24px;
    }

    .architecture-core {
        width: 95px;
        height: 95px;
    }

    .case-hero {
        padding-top: 120px;
    }

    .case-hero-content h1 {
        font-size: 48px;
    }

    .case-live-action {
        margin-top: 30px;
    }

    .case-live-link {
        width: 100%;
    }

    .case-hero-art {
        min-height: 300px;
        padding: 8px;
    }

    .case-hero-art.reference-visual {
        height: 300px;
    }

    .case-hero-art .reference-logo-frame {
        width: 175px;
        height: 175px;
    }

    .case-sidebar nav {
        grid-template-columns: 1fr;
    }

    .case-section-number {
        font-size: 62px;
    }

    .case-section h2 {
        font-size: 38px;
        padding-right: 20px;
    }

    .case-chip-grid {
        grid-template-columns: 1fr;
    }

    .case-outcome {
        padding: 45px 25px !important;
    }

    .case-outcome blockquote {
        font-size: 30px;
    }

    .principle-card {
        min-height: 270px;
    }

    .journey-list li {
        grid-template-columns: 45px 1fr;
    }

    .journey-list strong {
        font-size: 20px;
    }

    .continuity-visual {
        min-height: 390px;
    }

    .brief-card {
        margin-inline: -4px;
    }

    .form-progress {
        padding: 0 20px;
    }

    .form-progress span {
        font-size: 9px;
    }

    .form-progress span::after {
        bottom: -27px;
    }

    .form-step,
    .brief-result {
        padding: 30px 22px;
    }

    .form-step h2,
    .brief-result h2 {
        font-size: 31px;
    }

    .choice-grid,
    .status-choice-row,
    .form-grid-two {
        grid-template-columns: 1fr;
    }

    .choice-grid label>span {
        min-height: 62px;
    }

    .form-actions {
        gap: 15px;
    }

    .form-actions .button {
        padding-inline: 14px;
        font-size: 12px;
    }

    .result-summary div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .legal-hero {
        padding-top: 125px;
    }

    .legal-hero h1 {
        font-size: 49px;
    }

    .legal-content article {
        grid-template-columns: 35px 1fr;
    }

    .legal-content p {
        grid-column: 2;
    }

    .not-found-section {
        padding-top: 120px;
    }

    .not-found-map {
        min-height: 380px;
    }

    .not-found-content>div {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top {
        padding-top: 70px;
    }

    .footer-statement h2 {
        font-size: 43px;
    }

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

    .footer-grid>div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 22px 0;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-legal {
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.service-brief-link {
    margin-top: 24px;
}

#proje-formu {
    scroll-margin-top: 76px;
}

[hidden] {
    display: none !important;
}
