:root {
    --ink: #101418;
    --paper: #f6f2eb;
    --line: rgba(16, 20, 24, .14);
    --red: #d71920;
    --gold: #e1b857;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body.intro-active {
    overflow: hidden;
}

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

.intro {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 26% 18%, rgba(225, 184, 87, .3), transparent 28%),
        radial-gradient(circle at 74% 70%, rgba(215, 25, 32, .34), transparent 32%),
        linear-gradient(145deg, #0b0f13 0%, #1b2229 52%, #090b0e 100%);
    transition: opacity .8s ease, visibility .8s ease, transform .8s ease;
    perspective: 1100px;
}

.intro::before,
.intro::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.intro::before {
    width: min(86vw, 760px);
    height: min(86vw, 760px);
    border: 1px solid rgba(255, 255, 255, .12);
    transform: rotateX(64deg) rotateZ(-22deg);
    animation: blueprintOrbit 5.8s linear infinite;
}

.intro::after {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, #000 0 48%, transparent 74%);
}

.intro.is-hidden {
    visibility: hidden;
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.intro-stage {
    position: relative;
    z-index: 1;
    width: min(86vw, 720px);
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
    animation: introStageSettle 2.9s cubic-bezier(.18, .78, .2, 1) forwards;
    cursor: pointer;
}

.intro-stage:hover .intro-sign {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateZ(76px) scale(1.025);
}

.intro-stage:hover .intro-letter {
    animation-duration: .85s;
}

.intro-sign {
    position: relative;
    width: min(78vw, 620px);
    padding: clamp(28px, 7vw, 58px) clamp(22px, 6vw, 52px);
    border: 1px solid rgba(255, 255, 255, .18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .03)),
        linear-gradient(135deg, rgba(215, 25, 32, .92), rgba(116, 14, 20, .92));
    box-shadow:
        0 34px 80px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .28),
        inset 0 -18px 40px rgba(0, 0, 0, .24);
    transform: rotateX(58deg) rotateY(-22deg) rotateZ(-8deg) translateZ(22px);
    transform-style: preserve-3d;
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
    animation: introStraighten 2.8s cubic-bezier(.18, .78, .2, 1) forwards;
}

.intro-sign::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, .32);
}

.intro-sign::after {
    content: "";
    position: absolute;
    inset: 100% 8% auto;
    height: 44px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .32), transparent);
    filter: blur(10px);
    transform: rotateX(90deg);
    transform-origin: top;
}

.intro-logo {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: .08em;
    color: var(--white);
    font-size: clamp(2.15rem, 7.2vw, 5.5rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow:
        0 1px 0 #a61218,
        0 2px 0 #8d1016,
        0 3px 0 #711014,
        0 16px 32px rgba(0, 0, 0, .35);
    transform: translateZ(52px);
}

.intro-letter {
    display: inline-block;
    min-width: .22em;
    animation: letterRise 1.6s ease-in-out infinite;
    animation-delay: calc(var(--i) * .055s);
}

.intro-subtitle {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(.76rem, 2vw, 1rem);
    font-weight: 800;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
    transform: translateZ(34px);
}

.intro-hint {
    position: absolute;
    z-index: 2;
    bottom: clamp(22px, 5vw, 42px);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.site-shell {
    min-height: 100vh;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease .16s, transform .7s ease .16s;
}

body.site-ready .site-shell {
    opacity: 1;
    transform: translateY(0);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 64px);
    background: rgba(246, 242, 235, .86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 950;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--red);
    box-shadow: 6px 6px 0 var(--gold);
    font-weight: 950;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(16, 20, 24, .7);
    font-size: .95rem;
    font-weight: 800;
}

.nav a:hover {
    color: var(--red);
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    color: var(--white);
    background: var(--ink);
    font-weight: 900;
}

.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: calc(100vh - 78px);
    padding: clamp(42px, 8vw, 86px) clamp(18px, 5vw, 64px) clamp(28px, 6vw, 54px);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 10% auto auto 50%;
    width: min(88vw, 860px);
    height: 68%;
    background:
        linear-gradient(rgba(16, 20, 24, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 20, 24, .06) 1px, transparent 1px);
    background-size: 54px 54px;
    transform: translateX(-50%) rotateX(62deg) rotateZ(-14deg);
    transform-origin: center;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 20px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    color: var(--red);
    background: rgba(255, 255, 255, .46);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(3.1rem, 8vw, 7.2rem);
    line-height: .88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(16, 20, 24, .72);
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    line-height: 1.65;
    font-weight: 650;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--ink);
    font-weight: 950;
}

.primary-action {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    box-shadow: 8px 8px 0 var(--gold);
}

.secondary-action {
    background: rgba(255, 255, 255, .5);
}

.service-showcase {
    position: relative;
    z-index: 1;
    width: min(96vw, 1120px);
    min-height: 720px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.banner-depth {
    position: absolute;
    inset: 8% 6% 0 12%;
    background: linear-gradient(145deg, #303b44, #20282e);
    box-shadow: 0 36px 80px rgba(16, 20, 24, .24);
    transform: rotateY(-14deg) rotateX(6deg) translateZ(-42px);
}

.banner-screen {
    position: relative;
    width: min(96%, 1040px);
    height: 650px;
    padding: 24px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 84px),
        linear-gradient(180deg, #2e3841 0 18%, #f9f7f1 18% 88%, #252d34 88%);
    box-shadow:
        18px 24px 0 rgba(16, 20, 24, .18),
        0 38px 76px rgba(16, 20, 24, .24);
    transform: rotateY(-14deg) rotateX(6deg);
    transform-style: preserve-3d;
    animation: showcaseSway 5.4s ease-in-out infinite;
}

.banner-screen::after {
    content: "";
    position: absolute;
    inset: 146px 40px 54px;
    border: 10px solid #192127;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .72) 0 10%, transparent 10% 25%, rgba(255, 255, 255, .35) 25% 32%, transparent 32%),
        linear-gradient(145deg, #d9f0f5, #f7ffff);
}

.showcase-stage {
    position: absolute;
    inset: 0;
    z-index: 3;
    transform-style: preserve-3d;
}

.showcase-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(56%) rotateY(-34deg) translateZ(-120px) scale(.88);
    transition:
        opacity .78s ease,
        transform .78s cubic-bezier(.18, .82, .22, 1);
    transform-style: preserve-3d;
}

.showcase-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) rotateY(0deg) translateZ(30px) scale(1);
}

.showcase-card.is-exiting {
    opacity: 0;
    transform: translateX(-54%) rotateY(28deg) translateZ(-130px) scale(.86);
}

.showcase-sign {
    position: absolute;
    top: 28px;
    left: 58px;
    right: 58px;
    min-height: 86px;
    display: grid;
    place-items: center;
    padding: 10px 18px;
    color: var(--white);
    background: linear-gradient(135deg, #d71920, #950f16);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, .2);
    text-align: center;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .22);
    transform: translateZ(80px);
}

.showcase-sign span {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 950;
    line-height: .94;
}

.showcase-body {
    position: absolute;
    inset: 174px 68px 76px;
    display: grid;
    grid-template-columns: minmax(270px, .75fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 42px;
    border: 10px solid #192127;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .74) 0 11%, transparent 11% 25%, rgba(255, 255, 255, .4) 25% 33%, transparent 33%),
        linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .28));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
    transform: translateZ(46px);
}

.showcase-body p {
    margin: 0;
    color: rgba(16, 20, 24, .82);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.45;
}

.showcase-visual {
    position: relative;
    display: block;
    width: min(100%, 310px);
    aspect-ratio: 1 / .86;
    border: 6px solid #050708;
    border-radius: 6px;
    background: #f7f7f1;
    box-shadow:
        10px 12px 0 rgba(16, 20, 24, .16),
        inset 0 0 0 1px rgba(255, 255, 255, .6);
}

.showcase-visual::before,
.showcase-visual::after {
    content: "";
    position: absolute;
}

.tone-silver { background: radial-gradient(circle, #f5f5f2, #aeb1b2); }
.tone-coral { background: radial-gradient(circle, #fff7f4, #ff8187); }
.tone-cream { background: radial-gradient(circle, #fffef6, #ffe08a); }
.tone-sky { background: radial-gradient(circle, #ffffff, #7ba5f5); }
.tone-mint { background: radial-gradient(circle, #fbfff6, #70f18b); }
.tone-blue { background: radial-gradient(circle, #f8fbff, #1267f5); }
.tone-yellow { background: radial-gradient(circle, #ffffff, #f2ec00); }
.tone-red { background: radial-gradient(circle, #fff8f6, #ff2d1b); }
.tone-green { background: radial-gradient(circle, #eaffed, #129a2f); }
.tone-teal { background: radial-gradient(circle, #f6fbff, #176a98); }
.tone-gold { background: radial-gradient(circle, #fffad2, #9f8200); }
.tone-graphite { background: radial-gradient(circle, #f4f4ec, #343738); }

.visual-letters {
    background:
        linear-gradient(135deg, transparent 0 43%, rgba(255, 255, 255, .4) 43% 56%, transparent 56%),
        linear-gradient(135deg, #111, #62676b);
}

.visual-letters::before {
    content: "AR";
    inset: 13px 6px auto;
    color: #f8cf4f;
    font-size: 1.6rem;
    font-weight: 950;
    transform: rotate(-12deg);
}

.visual-totem::before {
    inset: 6px 26px 6px 26px;
    background: linear-gradient(#20242a 0 15%, #f74572 15% 32%, #5f7df5 32% 52%, #52ca66 52% 70%, #ffd74b 70%);
}

.visual-panel::before {
    inset: 8px;
    border: 2px solid #21a1ad;
    background: repeating-linear-gradient(0deg, #fff 0 8px, #d9f0f2 8px 12px);
}

.visual-machine::before {
    inset: 9px 16px;
    border: 2px solid #b7c0c7;
    background: linear-gradient(#ffffff, #cfd8df);
}

.visual-plexi::before {
    inset: 9px;
    border-radius: 50%;
    border: 2px solid var(--red);
}

.visual-plexi::after {
    inset: 22px 14px auto;
    height: 2px;
    background: var(--red);
    transform: rotate(-18deg);
}

.visual-stand::before {
    inset: 8px;
    background:
        linear-gradient(90deg, #e1b857 0 22%, #d71920 22% 56%, #0f6ff2 56%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .25) 0 7px, transparent 7px 14px);
}

.visual-direction::before {
    inset: 10px;
    background: #d9993c;
}

.visual-direction::after {
    inset: 16px 12px auto;
    height: 7px;
    background: #fff;
    box-shadow: 0 13px 0 #fff, 0 26px 0 #fff;
}

.visual-label::before {
    inset: 8px;
    background: repeating-linear-gradient(-12deg, #f7e442 0 10px, #111 10px 12px, #f7e442 12px 22px);
}

.visual-vehicle::before {
    left: 7px;
    right: 7px;
    bottom: 16px;
    height: 20px;
    border-radius: 14px 18px 6px 6px;
    background: #37b24d;
}

.visual-vehicle::after {
    left: 15px;
    right: 15px;
    bottom: 10px;
    height: 8px;
    background: radial-gradient(circle at 8px 4px, #111 0 4px, transparent 5px), radial-gradient(circle at calc(100% - 8px) 4px, #111 0 4px, transparent 5px);
}

.visual-print::before {
    inset: 8px;
    background:
        linear-gradient(90deg, #d71920, #e1b857, #21a675, #1267f5, #9226db);
    transform: skewY(-8deg);
}

.visual-safety::before {
    inset: 7px;
    background: #ffd500;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.visual-safety::after {
    content: "!";
    left: 31px;
    top: 21px;
    color: #111;
    font-size: 1.5rem;
    font-weight: 950;
}

.visual-sign::before {
    inset: 12px 16px;
    background: #222;
}

.visual-sign::after {
    inset: 22px 29px;
    border-radius: 50%;
    background: #f9f5e8;
}

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

.service {
    min-height: 146px;
    padding: 28px clamp(18px, 3vw, 34px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.service span {
    color: rgba(16, 20, 24, .66);
    line-height: 1.55;
}

@keyframes serviceScroll {
    from {
        transform: translateY(0) translateZ(34px);
    }

    to {
        transform: translateY(calc(-50% - 6px)) translateZ(34px);
    }
}

@keyframes stageFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(-1deg);
    }

    50% {
        transform: translateY(-14px) rotateZ(1deg);
    }
}

@keyframes introStageSettle {
    0% {
        transform: translateY(18px) scale(.94);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes introStraighten {
    0% {
        transform: rotateX(58deg) rotateY(-22deg) rotateZ(-8deg) translateZ(22px);
    }

    68% {
        transform: rotateX(7deg) rotateY(-4deg) rotateZ(-1deg) translateZ(62px);
    }

    100% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateZ(76px);
    }
}

@keyframes introFlatSway {
    0%, 100% {
        transform: translateX(-16px);
    }

    50% {
        transform: translateX(16px);
    }
}

@keyframes showcaseSway {
    0%, 100% {
        transform: translateX(0) rotateY(-14deg) rotateX(6deg);
    }

    50% {
        transform: translateX(18px) rotateY(-10deg) rotateX(5deg);
    }
}

@keyframes letterRise {
    0%, 100% {
        transform: translateZ(0) translateY(0);
    }

    50% {
        transform: translateZ(28px) translateY(-6px);
    }
}

@keyframes blueprintOrbit {
    to {
        transform: rotateX(64deg) rotateZ(338deg);
    }
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
    }

    .service-showcase {
        min-height: 500px;
    }

    .banner-screen {
        height: 480px;
    }

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

@media (max-width: 640px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nav a:nth-child(3),
    .nav a:nth-child(4) {
        display: none;
    }

    .quote-btn {
        min-height: 38px;
        padding-inline: 14px;
    }

    .service-showcase {
        min-height: 430px;
    }

    .banner-screen {
        height: 430px;
        transform: rotateY(-7deg) rotateX(3deg);
    }

    .banner-depth {
        transform: rotateY(-7deg) rotateX(3deg) translateZ(-38px);
    }

    .showcase-sign {
        left: 26px;
        right: 26px;
        min-height: 58px;
    }

    .showcase-sign span {
        font-size: clamp(1rem, 7vw, 1.8rem);
    }

    .showcase-body {
        inset: 114px 28px 48px;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
        text-align: center;
    }

    .showcase-visual {
        width: min(100%, 150px);
        margin-inline: auto;
    }

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

    .service {
        min-height: auto;
        border-right: 0;
    }

    .intro-hint {
        width: calc(100% - 36px);
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* Tam ekran hizmet panoraması */
.site-shell {
    background: #0b0e10;
}

.topbar {
    position: fixed;
    inset: 18px auto auto 50%;
    z-index: 30;
    display: block;
    width: auto;
    padding: 0;
    color: var(--white);
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    transform: translateX(-50%);
}

.home-brand-sign {
    position: relative;
    display: grid;
    min-width: min(72vw, 440px);
    min-height: 82px;
    place-items: center;
    align-content: center;
    padding: 12px 34px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(215, 25, 32, .96), rgba(132, 13, 19, .96));
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow:
        10px 12px 0 rgba(0, 0, 0, .24),
        0 18px 46px rgba(0, 0, 0, .32),
        inset 0 1px 0 rgba(255, 255, 255, .26);
    text-align: center;
    animation: homeSignSway 5.6s ease-in-out infinite;
}

.home-brand-sign::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, .28);
    pointer-events: none;
}

.home-brand-sign strong {
    position: relative;
    z-index: 1;
    font-size: clamp(1.5rem, 3vw, 2.45rem);
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .22);
}

.home-brand-sign span {
    position: relative;
    z-index: 1;
    margin-top: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}

@keyframes homeSignSway {
    0%, 100% {
        transform: translateX(-12px);
    }

    50% {
        transform: translateX(12px);
    }
}

.nav {
    color: rgba(255, 255, 255, .82);
}

.nav a:hover {
    color: var(--white);
}

.quote-btn {
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
}

.panorama {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    background: #090c0f;
}

.panorama-panel {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    background-image: var(--panel-image);
    background-position: center;
    background-size: cover;
    transition: flex-grow .85s cubic-bezier(.2, .78, .2, 1), filter .65s ease;
}

.panorama-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: var(--panel-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: transform 1.1s cubic-bezier(.2, .78, .2, 1);
}

.panorama-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 32%, rgba(0, 0, 0, .58)),
        linear-gradient(90deg, rgba(0, 0, 0, .08), transparent 45%, rgba(0, 0, 0, .08));
    transition: background .55s ease;
}

.panorama-panel + .panorama-panel {
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.panorama-panel.is-active,
.panorama-panel:hover {
    flex-grow: 2.15;
}

.panorama-panel.is-active::before,
.panorama-panel:hover::before {
    transform: scale(1);
}

.panorama-panel.is-active::after,
.panorama-panel:hover::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .12), transparent 34%, rgba(0, 0, 0, .52)),
        linear-gradient(90deg, rgba(0, 0, 0, .05), transparent 54%, rgba(0, 0, 0, .05));
}

.panorama-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    bottom: auto;
    width: min(86%, 520px);
    color: var(--white);
    text-align: center;
    transform: translate(-50%, -50%);
}

.panorama-content::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -34px -24px;
    opacity: .48;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .72), rgba(0, 0, 0, .12) 68%, transparent 76%);
    filter: blur(4px);
    transition: opacity .45s ease, transform .45s ease;
}

.panorama-panel.is-active .panorama-content::before,
.panorama-panel:hover .panorama-content::before {
    opacity: .68;
    transform: scale(1.06);
}

.panorama-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #ffd56e;
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.panorama-content h1 {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 4rem;
    line-height: .94;
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, .82), 0 14px 34px rgba(0, 0, 0, .62);
    overflow-wrap: normal;
    white-space: nowrap;
}

.panorama-content p {
    max-width: 420px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .96);
    font-size: clamp(.9rem, 1.25vw, 1.16rem);
    font-weight: 750;
    line-height: 1.5;
    opacity: .72;
    transform: translateY(10px);
    transition: opacity .45s ease, transform .45s ease;
}

.panorama-panel.is-active .panorama-content p,
.panorama-panel:hover .panorama-content p {
    opacity: 1;
    transform: translateY(0);
}

.panorama-line {
    display: block;
    width: 34px;
    height: 4px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, var(--red), #ff655f);
    box-shadow: 0 4px 18px rgba(215, 25, 32, .48);
    transition: width .45s ease;
}

.inner-page {
    color: var(--ink);
    background: #f4f2ed;
}

.inner-page .site-shell {
    opacity: 1;
    transform: none;
    background: #f4f2ed;
}

.inner-page .topbar {
    position: absolute;
}

.inner-hero,
.service-detail-hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 150px 24px 120px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 11, 14, .92), rgba(28, 34, 39, .76)),
        url("/assets/img/services/kutu-harf.png") center / cover;
}

.service-detail-hero {
    background:
        linear-gradient(135deg, rgba(7, 11, 14, .86), rgba(18, 23, 27, .58)),
        var(--detail-image) center / cover;
}

.inner-hero-content,
.service-detail-copy {
    max-width: 880px;
    text-align: center;
}

.inner-eyebrow,
.service-detail-copy > a {
    color: #ffd56e;
    font-size: .8rem;
    font-weight: 950;
    text-transform: uppercase;
}

.inner-hero h1,
.service-detail-copy h1 {
    margin: 14px 0 20px;
    color: var(--white);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .92;
}

.inner-hero p,
.service-detail-copy p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 650;
    line-height: 1.65;
}

.content-section,
.service-grid-section {
    padding: clamp(64px, 9vw, 120px) 24px 150px;
}

.content-inner {
    max-width: 880px;
    margin: 0 auto;
}

.content-inner h2 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 5vw, 4.5rem);
}

.content-inner h3 {
    margin-top: 46px;
    font-size: 1.5rem;
}

.content-inner p {
    color: rgba(16, 20, 24, .72);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.8;
}

.content-cta {
    display: inline-flex;
    margin-top: 26px;
    padding: 14px 20px;
    color: var(--white);
    background: var(--red);
    font-weight: 900;
    box-shadow: 7px 7px 0 var(--gold);
}

.service-page-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(16, 20, 24, .14);
    border: 1px solid rgba(16, 20, 24, .14);
}

.service-page-card {
    min-height: 300px;
    padding: 32px;
    background: #fff;
    transition: color .3s ease, background .3s ease, transform .3s ease;
}

.service-page-card:hover {
    color: var(--white);
    background: var(--ink);
    transform: translateY(-5px);
}

.service-page-card svg {
    width: 32px;
    height: 32px;
    color: var(--red);
}

.service-page-card h2 {
    margin: 28px 0 14px;
    font-size: 1.45rem;
}

.service-page-card p {
    min-height: 76px;
    color: rgba(16, 20, 24, .64);
    line-height: 1.55;
}

.service-page-card:hover p {
    color: rgba(255, 255, 255, .72);
}

.service-page-card span {
    color: var(--red);
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .service-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.panorama-panel.is-active .panorama-line,
.panorama-panel:hover .panorama-line {
    width: 70px;
}

.quick-dock {
    position: fixed;
    z-index: 35;
    left: 50%;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: calc(100vw - 28px);
    padding: 10px;
    background: rgba(245, 245, 242, .86);
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.quick-dock .dock-item {
    display: flex;
    width: 54px;
    height: 50px;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    overflow: hidden;
    padding: 0 15px;
    color: rgba(16, 20, 24, .64);
    border-radius: 50%;
    font-weight: 950;
    white-space: nowrap;
    transition: width .35s cubic-bezier(.2, .8, .2, 1), color .25s ease, background .25s ease, transform .25s ease, border-radius .25s ease;
}

.dock-service-menu {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.dock-service-menu::before {
    content: "";
    position: absolute;
    right: -16px;
    bottom: 100%;
    left: -16px;
    height: 22px;
}

.service-flyout {
    position: absolute;
    z-index: 40;
    bottom: calc(100% + 18px);
    left: 50%;
    display: grid;
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 6px;
    width: 520px;
    max-height: min(66vh, 520px);
    padding: 12px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: rgba(245, 245, 242, .93);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
    backdrop-filter: blur(20px);
    transform: translate(-50%, 14px) scale(.96);
    transform-origin: bottom center;
    transition: opacity .25s ease, visibility .25s ease, transform .3s cubic-bezier(.2, .8, .2, 1);
}

.dock-service-menu:hover .service-flyout,
.dock-service-menu:focus-within .service-flyout {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.service-flyout a {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    color: rgba(16, 20, 24, .68);
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 850;
    line-height: 1.2;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.service-flyout a:hover,
.service-flyout a:focus-visible {
    color: var(--ink);
    background: rgba(16, 20, 24, .08);
    transform: translateX(3px);
}

.service-flyout svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--red);
    stroke-width: 1.8;
}

.quick-dock .dock-item svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.quick-dock .dock-item span {
    opacity: 0;
    font-size: .9rem;
    transition: opacity .2s ease .08s;
}

.quick-dock .dock-item:hover,
.quick-dock .dock-item:focus-visible {
    width: 166px;
    color: var(--ink);
    background: rgba(16, 20, 24, .08);
    border-radius: 24px;
    transform: translateY(-3px);
}

.quick-dock .dock-item.is-current {
    width: 166px;
    border-radius: 24px;
    transform: translateY(0);
}

.quick-dock .dock-item.dock-wide:hover,
.quick-dock .dock-item.dock-wide:focus-visible {
    width: 202px;
}

.quick-dock .dock-item.dock-wide.is-current {
    width: 202px;
}

.quick-dock .dock-item.is-current {
    color: #8f1117;
    background: rgba(215, 25, 32, .16);
    box-shadow: inset 0 0 0 1px rgba(215, 25, 32, .16);
}

.quick-dock .dock-item:hover span,
.quick-dock .dock-item:focus-visible span,
.quick-dock .dock-item.is-current span {
    opacity: 1;
}

.quick-dock .dock-whatsapp {
    color: #148a57;
    background: rgba(35, 196, 112, .12);
}

.quick-dock .dock-whatsapp:hover,
.quick-dock .dock-whatsapp:focus-visible {
    color: #096e40;
    background: rgba(35, 196, 112, .22);
}

.quick-dock .dock-phone {
    color: #35628f;
    background: rgba(76, 133, 190, .12);
}

.quick-dock .dock-phone:hover,
.quick-dock .dock-phone:focus-visible {
    color: #254e77;
    background: rgba(76, 133, 190, .22);
}

@media (max-width: 900px) {
    .topbar {
        position: absolute;
    }

    .panorama {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .panorama-panel,
    .panorama-panel.is-active,
    .panorama-panel:hover {
        flex: 0 0 84vw;
        scroll-snap-align: center;
    }

}

@media (max-width: 640px) {
    .panorama {
        min-height: 620px;
    }

    .topbar {
        top: 12px;
        left: 50%;
    }

    .home-brand-sign {
        min-width: min(82vw, 360px);
        min-height: 66px;
        padding: 10px 24px;
    }

    .home-brand-sign span {
        display: none;
    }

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

    .panorama-panel,
    .panorama-panel.is-active,
    .panorama-panel:hover {
        flex-basis: 92vw;
    }

    .panorama-content {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }

    .quick-dock {
        bottom: 18px;
        max-width: calc(100vw - 18px);
        gap: 2px;
        overflow: visible;
        justify-content: flex-start;
    }

    .quick-dock .dock-item {
        width: 42px;
        height: 42px;
        padding: 0 9px;
    }

    .quick-dock .dock-item.is-current {
        width: 42px;
        border-radius: 50%;
    }

    .quick-dock .dock-item.is-current span {
        opacity: 0;
    }

    .service-flyout {
        position: fixed;
        right: 9px;
        bottom: 82px;
        left: 9px;
        grid-template-columns: 1fr;
        width: auto;
        max-height: 58vh;
        transform: translateY(12px) scale(.98);
    }

    .dock-service-menu:hover .service-flyout,
    .dock-service-menu:focus-within .service-flyout {
        transform: translateY(0) scale(1);
    }
}
