* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

#about.page-section {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 60px 90px;
    gap: 44px;
    background-color: var(--primary-bg);
    color: var(--text-white);
    --about-fg: var(--text-white);
    --about-muted: var(--text-gray);
    --about-soft: color-mix(in srgb, var(--text-white) 42%, transparent);
    --about-divider: var(--divider);
}

#about.about-enter .section-watermark::before {
    opacity: 0;
    transform: translateX(-50%) translateY(22px) scale(0.975);
    filter: blur(10px);
    transition: opacity 1900ms cubic-bezier(0.16, 1, 0.3, 1), transform 1900ms cubic-bezier(0.16, 1, 0.3, 1), filter 1900ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 120ms;
    will-change: opacity, transform, filter;
}

#about.about-enter.about-revealed .section-watermark::before {
    opacity: var(--watermark-opacity);
    transform: translateX(-50%) translateY(0px) scale(1);
    filter: blur(0px);
}

#about.about-enter .section-watermark::after {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 1600ms cubic-bezier(0.16, 1, 0.3, 1), transform 1600ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 220ms;
    will-change: opacity, transform;
}

#about.about-enter.about-revealed .section-watermark::after {
    opacity: 1;
    transform: scaleX(1);
}

#about.about-enter .about-reveal {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
    transition: opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1), transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), filter 1200ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

#about.about-enter .about-reveal.about-reveal-visible {
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
}

@media (prefers-reduced-motion: reduce) {
    #about.about-enter .section-watermark::before,
    #about.about-enter .section-watermark::after,
    #about.about-enter .about-reveal {
        transition: none !important;
        filter: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

#about .about-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 44px;
    position: relative;
    z-index: 1;
}

.about-top {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 36px;
    align-items: start;
}

.about-year {
    margin: 6px 0 0;
    font-size: 12px;
    letter-spacing: 0.6px;
    color: var(--about-soft);
}

.about-heading {
    max-width: 800px;
}

.about-lead {
    margin: 0;
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.34;
    font-weight: 560;
    letter-spacing: -0.2px;
    color: var(--about-fg);
}

.about-lead-strong {
    margin: 6px 0 0;
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.34;
    font-weight: 660;
    letter-spacing: -0.2px;
    color: var(--about-fg);
}

.about-stats-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.about-cell {
    padding: 28px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-right: 1px solid var(--about-divider);
    border-bottom: 1px solid var(--about-divider);
}

.about-cell--i4,
.about-cell--t4 {
    border-right: none;
}

.about-cell--i1,
.about-cell--t2,
.about-cell--i3,
.about-cell--t4 {
    border-bottom: none;
}

.about-cell-text {
    align-items: flex-start;
}

.about-cell-media {
    align-items: center;
    justify-content: center;
}

.about-stat-img {
    width: min(100%, 260px);
    height: 160px;
    object-fit: cover;
    border-radius: 0;
    border: 1px solid var(--about-divider);
    opacity: 0.98;
}

.about-cell--t1 { grid-column: 1; grid-row: 1; }
.about-cell--i2 { grid-column: 2; grid-row: 1; }
.about-cell--t3 { grid-column: 3; grid-row: 1; }
.about-cell--i4 { grid-column: 4; grid-row: 1; }

.about-cell--i1 { grid-column: 1; grid-row: 2; }
.about-cell--t2 { grid-column: 2; grid-row: 2; }
.about-cell--i3 { grid-column: 3; grid-row: 2; }
.about-cell--t4 { grid-column: 4; grid-row: 2; }

.about-stat-number {
    margin: 0;
    font-size: clamp(34px, 3.6vw, 56px);
    font-weight: 650;
    letter-spacing: -1.2px;
    line-height: 0.95;
    color: var(--about-fg);
}

.about-stat-title {
    margin: 0;
    font-size: 16px;
    font-weight: 650;
    color: var(--about-fg);
}

.about-stat-subtitle {
    margin: -2px 0 0;
    font-size: clamp(14px, 0.95vw, 15px);
    font-weight: 500;
    color: var(--about-muted);
}

.about-avatars,
.about-thumbs {
    margin-top: 14px;
    display: flex;
    align-items: center;
}

.about-avatar {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid var(--primary-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-avatar + .about-avatar {
    margin-left: -10px;
}

.about-thumb {
    width: 56px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--divider);
}

.about-thumb + .about-thumb {
    margin-left: 8px;
}

.about-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-top: -14px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: min(620px, 100%);
    padding: 14px 16px 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    border: 1.5px solid color-mix(in srgb, var(--text-white) 22%, transparent);
    background: transparent;
    color: var(--about-fg);
    transition: background-color 240ms ease, color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

 .about-cta:hover {
     background-color: var(--text-white);
     color: var(--primary-bg);
     transform: translateY(-1px);
     box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
 }

 .about-cta:focus-visible {
     outline: 2px solid color-mix(in srgb, var(--text-white) 70%, transparent);
     outline-offset: 3px;
 }

.about-cta-text {
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 650;
    letter-spacing: -0.1px;
}

.about-cta-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--text-white);
    color: var(--primary-bg);
    transition: background-color 240ms ease, color 240ms ease;
}

 .about-cta:hover .about-cta-icon {
     background: var(--primary-bg);
     color: var(--text-white);
 }

.about-availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--about-muted);
}

.about-availability-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #38d16f;
    box-shadow: 0 0 0 5px rgba(56, 209, 111, 0.12);
}

@media (max-width: 1100px) {
    #about.page-section {
        padding: 44px 60px;
        gap: 54px;
    }

    .about-top {
        grid-template-columns: 70px 1fr;
        gap: 34px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .about-cell {
        padding: 26px 22px;
    }

    .about-cell {
        border-right: 1px solid var(--about-divider);
        border-bottom: 1px solid var(--about-divider);
    }

    .about-cell--i2,
    .about-cell--t2,
    .about-cell--i4,
    .about-cell--t4 {
        border-right: none;
    }

    .about-cell--i3,
    .about-cell--t4 {
        border-bottom: none;
    }

    .about-cell--t1 { grid-column: 1; grid-row: 1; }
    .about-cell--i1 { grid-column: 1; grid-row: 2; }
    .about-cell--i2 { grid-column: 2; grid-row: 1; }
    .about-cell--t2 { grid-column: 2; grid-row: 2; }

    .about-cell--t3 { grid-column: 1; grid-row: 3; }
    .about-cell--i3 { grid-column: 1; grid-row: 4; }
    .about-cell--i4 { grid-column: 2; grid-row: 3; }
    .about-cell--t4 { grid-column: 2; grid-row: 4; }
}

@media (min-width: 641px) and (max-width: 1101px) {
    #about.page-section {
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    #about.page-section {
        padding: 32px 18px;
        height: auto;
        min-height: 100vh;
    }

    .about-top {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-year {
        margin-top: 0;
    }

    .about-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 0;
        row-gap: 0;
        border: 1px solid var(--about-divider);
        border-radius: 14px;
        overflow: hidden;
    }

    .about-cell {
        padding: 16px;
        border-bottom: 1px solid var(--about-divider);
        border-right: 1px solid var(--about-divider);
        min-height: 148px;
    }

    .about-cell.about-cell-media {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-cell.about-cell-media img {
        width: 100%;
        height: 140px;
        max-width: 100%;
        border-radius: 8px;
        object-fit: cover;
    }

    .about-cell:nth-child(2n) {
        border-right: none;
    }

    .about-cell:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .about-cell--t1 { grid-column: 1; grid-row: 1; }
    .about-cell--i2 { grid-column: 2; grid-row: 1; }
    .about-cell--i1 { grid-column: 1; grid-row: 2; }
    .about-cell--t2 { grid-column: 2; grid-row: 2; }
    .about-cell--t3 { grid-column: 1; grid-row: 3; }
    .about-cell--i3 { grid-column: 2; grid-row: 3; }
    .about-cell--i4 { grid-column: 1; grid-row: 4; }
    .about-cell--t4 { grid-column: 2; grid-row: 4; }

    .about-bottom {
        margin-top: 32px;
        padding: 0 4px;
    }

    .about-cta {
        width: 100%;
        border-radius: 999px;
        padding: 16px 22px;
    }
}

:root {
    --primary-bg: #12100f;
    --secondary-bg: #1a1715;
    --text-white: #f5f2ec;
    --text-gray: #c7c1b8;
    --accent-color: #f5f2ec;
    --social-glow-rgb: 255, 255, 255;
    --social-glow-alpha: 0.32;
    --social-glow-blur: 14px;
    --sidebar-width: 20vw;
    --sidebar-bg: #0e0c0b;
    --divider: rgba(245, 242, 236, 0.12);
    --hero-overlay-left: rgba(18, 16, 15, 0.62);
    --hero-overlay-right: rgba(18, 16, 15, 0.28);
    --hero-subtitle-color: rgba(255, 255, 255, 0.9);
    --watermark-ink: color-mix(in srgb, var(--text-white) 12%, transparent);
    --watermark-opacity: 0.9;
    --services-bg: var(--primary-bg);
    --services-fg: var(--text-white);
    --services-muted: var(--text-gray);
    --services-border: rgba(255, 255, 255, 0.7);
    --services-hover-bg: var(--text-white);
    --services-hover-fg: var(--primary-bg);
    --services-btn-bg: var(--text-white);
    --services-btn-fg: var(--primary-bg);
    --projects-side-shade-strong: var(--primary-bg);
    --projects-side-shade-mid: color-mix(in srgb, var(--primary-bg) 88%, transparent);
    --projects-side-shade-soft: color-mix(in srgb, var(--primary-bg) 62%, transparent);
    --mobile-header-offset: 0px;
}

 html {
     overflow-x: hidden;
 }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--sidebar-bg);
    border-bottom: 1px solid var(--divider);
    z-index: 1001;
    padding: 0 20px;
}

.mobile-header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
}

.brand-logo-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    filter: brightness(0) invert(1);
    transform: translateZ(0);
    backface-visibility: hidden;
}


.mobile-logo .brand-logo-image {
    width: clamp(92px, 18vw, 150px);
}

.mobile-logo .logo-wordmark {
    font-size: clamp(22px, 5vw, 36px);
    letter-spacing: clamp(0.08em, 0.4vw, 0.2em);
}

.mobile-logo .logo-subline {
    font-size: clamp(9px, 2.8vw, 13px);
    letter-spacing: 0.32em;
    color: color-mix(in srgb, var(--text-white) 75%, transparent);
}

.hamburger {
    cursor: pointer;
    position: relative;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 2.4em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line {
    fill: none;
    stroke: var(--text-white);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}


.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: var(--sidebar-bg);
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    overflow: hidden;
    isolation: isolate;
    z-index: 1000;
    border-right: 1px solid var(--divider);
}

.sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 60% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 70%),
        radial-gradient(70% 55% at 50% 100%, rgba(255, 255, 255, 0.09), transparent 70%),
        repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.028) 0 1px, transparent 1px 10px);
    opacity: 0.85;
    pointer-events: none;
    z-index: -2;
}

.sidebar::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid color-mix(in srgb, var(--divider) 75%, transparent);
    border-radius: 10px;
    pointer-events: none;
    z-index: -1;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 30px;
    margin-bottom: 80px;
    position: relative;
    gap: 6px;
}

.logo .brand-logo-image {
    width: clamp(126px, 8.8vw, 180px);
}

.logo::after {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: -34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--text-white) 35%, transparent), transparent);
    opacity: 0.9;
}

.logo::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -39px;
    width: 8px;
    height: 8px;
    transform: translateX(-50%) rotate(45deg);
    border: 1px solid color-mix(in srgb, var(--text-white) 28%, transparent);
    background: transparent;
}

.logo-wordmark {
    font-size: clamp(36px, 2.8vw, 64px);
    font-family: "Bodoni Moda", Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: clamp(0.02em, 0.12vw, 0.1em);
    line-height: 1;
    color: var(--text-white);
    white-space: nowrap;
    transition: font-size 0.3s ease, letter-spacing 0.3s ease;
    text-transform: uppercase;
}

.logo-subline {
    font-size: clamp(12px, 1vw, 16px);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--text-white) 70%, transparent);
}

@keyframes sidebar-fade-rise {
    0% {
        opacity: 0;
        transform: translateY(14px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes sidebar-line-in {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 0.9;
        transform: scaleX(1);
    }
}

@keyframes sidebar-mark-in {
    0% {
        opacity: 0;
        transform: translateX(-50%) rotate(45deg) scale(0.7);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) rotate(45deg) scale(1);
    }
}

.logo {
    animation: sidebar-fade-rise 820ms cubic-bezier(0.2, 0.9, 0.2, 1) 90ms both;
    will-change: transform, opacity, filter;
}

.logo::after {
    transform-origin: 50% 50%;
    animation: sidebar-line-in 740ms cubic-bezier(0.2, 0.9, 0.2, 1) 320ms both;
}

.logo::before {
    transform-origin: 50% 50%;
    animation: sidebar-mark-in 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 420ms both;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(10px, 1.1vh, 16px);
    padding: 0 30px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 30px;
    font-weight: 350;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 180ms ease, color 180ms ease;
    line-height: 1.25;
    text-align: center;
    display: flex;
    position: relative;
    --arrow-start-outset: 10px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.nav-text {
    display: inline-block;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

 .nav-link:focus-visible {
    opacity: 1;
    outline: 3px solid color-mix(in srgb, var(--text-white) 32%, transparent);
    outline-offset: 6px;
 }

.nav-link:hover {
    transform: none;
}

.nav-link:not(.active) {
    opacity: 0.6;
}

.nav-link {
    color: color-mix(in srgb, var(--text-white) 55%, transparent);
}

.nav-link.active {
    color: var(--text-white);
    opacity: 1;
}

.nav-link {
    animation: sidebar-fade-rise 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
    animation-delay: calc(520ms + var(--sidebar-i, 0) * 110ms);
    animation-fill-mode: backwards;
    will-change: transform, opacity, filter;
}

.nav-menu .nav-link:nth-child(1) { --sidebar-i: 0; }
.nav-menu .nav-link:nth-child(2) { --sidebar-i: 1; }
.nav-menu .nav-link:nth-child(3) { --sidebar-i: 2; }
.nav-menu .nav-link:nth-child(4) { --sidebar-i: 3; }
.nav-menu .nav-link:nth-child(5) { --sidebar-i: 4; }

.nav-anim {
    display: inline-flex;
    align-items: flex-start;
}

.nav-letter {
    display: inline-block;
    height: 1.25em;
    line-height: 1.25em;
    overflow: hidden;
    vertical-align: top;
}

.nav-letter-inner {
    display: flex;
    flex-direction: column;
    transform: translate3d(0, 0, 0);
    transition: transform 260ms cubic-bezier(.2,.8,.2,1);
    transition-delay: calc(var(--i) * 18ms);
    will-change: transform;
    backface-visibility: hidden;
}

.nav-letter-top,
.nav-letter-bottom {
    font-size: 1em;
    font-weight: inherit;
    line-height: 1.25em;
}

.nav-letter-top {
    color: color-mix(in srgb, var(--text-white) 70%, transparent);
}

.nav-letter-bottom {
    color: var(--text-white);
}

.nav-link:hover .nav-letter-inner,
.nav-link:focus-visible .nav-letter-inner {
    transform: translateY(-50%);
}

.nav-link.active-full .nav-letter-inner {
    transform: translateY(-50%);
    transition-delay: 0ms;
}

.nav-link.active-full:hover .nav-letter-inner,
.nav-link.active-full:focus-visible .nav-letter-inner {
    transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .nav-link,
    .nav-letter-inner {
        transition: none !important;
    }

    .nav-link:focus-visible {
        outline-offset: 4px;
    }

    .nav-link:hover .nav-letter-inner,
    .nav-link:focus-visible .nav-letter-inner {
        transform: translate3d(0, 0, 0);
    }

}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
    padding: 0 30px;
}

.sidebar-footer {
    margin-top: auto;
    width: 100%;
    padding-bottom: 0;
    position: relative;
}

.sidebar-footer::before {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    top: -26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--text-white) 22%, transparent), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.sidebar-footer {
    animation: sidebar-fade-rise 820ms cubic-bezier(0.2, 0.9, 0.2, 1) 880ms both;
    will-change: transform, opacity, filter;
}

.sidebar-footer::before {
    transform-origin: 50% 50%;
    animation: sidebar-line-in 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 980ms both;
}

.made-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 30px;
    margin-top: clamp(26px, 3vh, 54px);
    font-size: clamp(12px, 1.075vw, 16px);
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
}

.made-by-logo {
    height: clamp(32px, 2.8vw, 58px);
    width: auto;
    display: inline-block;
    align-self: center;
}

.social-link {
    color: var(--text-white);
    font-size: 36px;
    position: relative;
    isolation: isolate;
    transition: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link {
    animation: sidebar-fade-rise 740ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
    animation-delay: calc(1040ms + var(--sidebar-i, 0) * 90ms);
    animation-fill-mode: backwards;
    will-change: transform, opacity, filter;
}

.social-icons .social-link:nth-child(1) { --sidebar-i: 0; }
.social-icons .social-link:nth-child(2) { --sidebar-i: 1; }
.social-icons .social-link:nth-child(3) { --sidebar-i: 2; }

@media (prefers-reduced-motion: reduce) {
    .logo,
    .nav-link,
    .sidebar-footer,
    .social-link {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        will-change: auto;
    }

    .logo::after,
    .sidebar-footer::before {
        animation: none !important;
        transform: none !important;
        opacity: 0.9;
    }

    .logo::before {
        animation: none !important;
        opacity: 1;
    }
}

 .social-link::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(var(--social-glow-rgb), var(--social-glow-alpha)), rgba(var(--social-glow-rgb), 0) 68%);
    filter: blur(var(--social-glow-blur));
    opacity: 0;
    transform: scale(0.78);
    transition: opacity 180ms ease, transform 260ms cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
    z-index: -1;
 }

.social-link .social-icon {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
}

 .social-link:hover::before,
 .social-link:focus-visible::before {
    opacity: 1;
    transform: scale(1);
 }

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    max-width: 100%;
    overflow-x: hidden;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 100%;
    margin-right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    display: none;
    opacity: 0;
    transition: none;
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
}

.hero.hero-revealed .hero-overlay {
    animation: hero-overlay-fade 900ms cubic-bezier(0.2, 0.9, 0.2, 1) 900ms both;
}

.hero-stack {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    filter: none;
}

.hero-cutout {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.hero-cutout-line {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.hero-cutout-line-1 {
    font-family: "Bodoni Moda", serif;
    font-weight: 500;
    font-size: clamp(64px, 12vw, 188px);
    line-height: 0.86;
    letter-spacing: -0.02em;
}

.hero-cutout-line-2 {
    font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(24px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.hero-headline {
    position: absolute;
    top: clamp(18px, 3.2vh, 34px);
    right: clamp(18px, 3.2vw, 44px);
    z-index: 3;
    margin: 0;
    font-size: clamp(34px, 5.6vw, 92px);
    font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    text-align: right;
    text-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
    max-width: min(860px, 68vw);
}

.hero:not(.hero-revealed) .hero-headline {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.hero.hero-revealed .hero-headline {
    animation: hero-ui-in 700ms cubic-bezier(0.4, 0, 0.2, 1) 0ms both;
    pointer-events: auto;
}

.hero-headline-line {
    display: block;
}

.hero-headline-line-1,
.hero-headline-line-2 {
    white-space: nowrap;
}

.hero-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 62vw, 900px);
    height: clamp(180px, 36vw, 520px);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@media (orientation: portrait) {
    .hero-card {
        width: auto !important;
        height: clamp(320px, 58vh, 680px) !important;
        aspect-ratio: 9 / 16;
    }
}

.hero-card picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-card-1 {
    animation: hero-card-in-1 420ms cubic-bezier(0.12, 0.85, 0.2, 1) 0ms both;
}

.hero-card-2 {
    animation: hero-card-in-2 420ms cubic-bezier(0.12, 0.85, 0.2, 1) 420ms both;
}

.hero-card-3 {
    animation: hero-card-in-3 420ms cubic-bezier(0.12, 0.85, 0.2, 1) 840ms both;
}

.hero-card-3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.52) 0%,
        rgba(0, 0, 0, 0.52) 100%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0;
    pointer-events: none;
}

.hero.hero-revealed .hero-card-3::after {
    animation: hero-card-3-dim-in 820ms cubic-bezier(0.2, 0.9, 0.2, 1) 0ms both;
}

.hero-card-3.hero-card-3-expanding {
    animation: hero-card-3-expand 820ms cubic-bezier(0.4, 0, 0.2, 1) 0ms forwards;
}

.hero.hero-slider-active .hero-card-1,
.hero.hero-slider-active .hero-card-2 {
    display: none;
}

@keyframes hero-card-3-dim-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes hero-card-in-1 {
    0% {
        transform: translate3d(-50%, -50%, 0) translateY(90vh) rotate(-9deg);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(-4.5deg);
    }
}

@keyframes hero-card-in-2 {
    0% {
        transform: translate3d(-50%, -50%, 0) translateY(90vh) rotate(8deg);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(3.5deg);
    }
}

@keyframes hero-card-in-3 {
    0% {
        transform: translate3d(-50%, -50%, 0) translateY(90vh) rotate(-7deg);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(-2.2deg);
    }
}

@keyframes hero-card-3-expand {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(-2.2deg) scale(1);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(var(--hero-card-3-scale, 1.12));
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 50px;
    max-width: min(900px, 90%);
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    transition: none;
}

.hero:not(.hero-revealed) .hero-content {
    pointer-events: none;
}

.hero.hero-revealed .hero-content {
    animation: hero-content-fade 820ms cubic-bezier(0.4, 0, 0.2, 1) 120ms both;
}

@keyframes hero-content-fade {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-card {
        animation: none !important;
        opacity: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border-radius: 0;
    }

    .hero-card-1,
    .hero-card-2 {
        display: none;
    }

    .hero-card-3::after {
        opacity: 1;
        animation: none !important;
    }

    .hero-overlay {
        display: none;
        opacity: 0;
        animation: none !important;
    }

    .hero-stack {
        animation: none !important;
        filter: none;
    }

    .hero-headline {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .hero-content {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}

.hero-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: clamp(34px, 4.2vw, 72px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.02em;
    max-width: 20ch;
    margin: 0 auto;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.55;
    margin: 16px auto 0;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-scroll-hint {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
}

.hero.hero-revealed .hero-scroll-hint {
    animation: hero-scroll-hint-in 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 500ms both;
    pointer-events: auto;
}

@keyframes hero-scroll-hint-in {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 0.55;
        transform: translateY(0px);
    }
}

.hero-scroll-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.hero-scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    position: relative;
}

.hero-scroll-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    opacity: 1;
    animation: hero-scroll-dot 900ms cubic-bezier(0.4, 0, 0.2, 1) 0ms infinite alternate;
}

@keyframes hero-scroll-dot {
    0% {
        transform: translateX(-50%) translateY(-2px);
    }
    100% {
        transform: translateX(-50%) translateY(12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-dot {
        animation: none;
        transform: translateX(-50%) translateY(4px);
    }
}

.hero-scroll-hint:hover {
    opacity: 0.8;
}

.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--text-white);
    color: var(--primary-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-bg);
}

.services {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 90px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: var(--services-bg);
    position: relative;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .services {
        height: auto;
        min-height: 100vh;
        overflow-y: visible;
    }
}

.services.services-enter .section-watermark::before {
    opacity: 0;
    transform: translateX(-50%) translateY(22px) scale(0.975);
    filter: blur(10px);
    transition: opacity 1900ms cubic-bezier(0.16, 1, 0.3, 1), transform 1900ms cubic-bezier(0.16, 1, 0.3, 1), filter 1900ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 120ms;
    will-change: opacity, transform, filter;
}

.services.services-enter.services-wm-revealed .section-watermark::before {
    opacity: var(--watermark-opacity);
    transform: translateX(-50%) translateY(0px) scale(1);
    filter: blur(0px);
}

.services.services-enter .section-watermark::after {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 1600ms cubic-bezier(0.16, 1, 0.3, 1), transform 1600ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 220ms;
    will-change: opacity, transform;
}

.services.services-enter.services-wm-revealed .section-watermark::after {
    opacity: 1;
    transform: scaleX(1);
}

.services.services-enter .services-content {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(10px);
    pointer-events: none;
    transition: opacity 1600ms cubic-bezier(0.16, 1, 0.3, 1), transform 1600ms cubic-bezier(0.16, 1, 0.3, 1), filter 1600ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 240ms;
    will-change: opacity, transform, filter;
}

.services.services-enter.services-revealed .services-content {
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
    pointer-events: auto;
}

.services-content {
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: -100px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.services-left {
    grid-area: services-left;
}

.services-right {
    grid-area: services-right;
}

.services-content {
    grid-template-areas: "services-left services-right";
}

.services.services-reversed .services-content {
    grid-template-areas: "services-right services-left";
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 100px;
}

.services-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.08;
    color: var(--services-fg);
    margin: 0;
    margin-top: -24px;
    letter-spacing: -2px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.service-piece {
    display: inline-block;
    will-change: auto;
}

.service-piece-space {
    width: 0.32em;
}

.services-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.services-label {
    font-size: 25px;
    font-weight: 500;
    color: var(--services-muted);
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.services-description {
    font-size: 17px;
    font-weight: 450;
    line-height: 1.7;
    color: var(--services-fg);
    margin: 0;
    max-width: 460px;
    min-height: calc(1.7em * 4);
}

.services-fade {
    transition: opacity 220ms ease, transform 220ms ease;
    will-change: opacity, transform;
}

.services-fade.is-fading {
    opacity: 0;
    transform: translateY(-10px);
}

@media (prefers-reduced-motion: reduce) {
    .service-piece {
        will-change: auto;
    }

    .services-fade {
        transition: none;
    }

    .services.services-enter .services-content {
        transition: none;
        filter: none;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
}

.services-tags {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 12px;
    max-width: 460px;
    width: max-content;
    max-width: 100%;
    justify-items: start;
    justify-content: start;
}

.service-tag-break {
    flex-basis: 100%;
    height: 0;
    padding: 0;
    margin: 0;
    display: none;
}

.service-tag {
    width: fit-content;
    padding: 8px 16px;
    border: 1.5px solid var(--services-border);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: var(--services-fg);
    transition: none;
    cursor: default;
}

.services-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--services-fg);
    color: var(--services-bg);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
}

.services-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-learn-more i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-learn-more:hover i {
    transform: translateX(4px);
}

/* New Service Page Styles */
.sp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    padding: 100px 60px 60px;
    background-color: var(--primary-bg);
}

.sp-hero-content {
    max-width: 600px;
}

.sp-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.sp-back:hover {
    color: var(--text-white);
    transform: translateX(-4px);
}

.sp-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.sp-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.sp-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
}

.sp-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sp-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-content {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ─── sp-intro: stacked header + 2×2 feature grid ─── */
.sp-intro {
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
    padding: 80px 0 0;
}

.sp-intro-text {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 60px;
    align-items: end;
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sp-intro-text h2 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    letter-spacing: -2px;
    line-height: 1.1;
    white-space: nowrap;
}

.sp-intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 480px;
    margin: 0;
    padding-bottom: 6px;
}

/* 2×2 feature card grid */
.sp-intro-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    counter-reset: sp-item;
}

.sp-list-item {
    counter-increment: sp-item;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 36px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.sp-list-item::before {
    content: counter(sp-item, decimal-leading-zero);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
    color: rgba(255,255,255,0.07);
    transition: color 0.5s ease;
}

.sp-list-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201,169,110,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.sp-list-item:hover::before {
    color: rgba(201,169,110,0.25);
}

.sp-list-item i {
    display: none;
}

.sp-list-item span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
    line-height: 1.45;
    position: relative;
    z-index: 1;
}

.sp-list-item--highlight {
border-color: color-mix(in srgb, var(--accent-warm) 55%, rgba(255, 255, 255, 0.25));
background: linear-gradient(135deg, color-mix(in srgb, var(--accent-warm) 18%, transparent), rgba(255, 255, 255, 0.03));
}

.sp-list-item--highlight i {
    color: var(--accent-warm);
}

.sp-list-item--highlight span {
    font-weight: 600;
}

.sp-image-full {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 100px;
}

.sp-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-gallery {
    width: 100%;
    margin-bottom: 100px;
}

.sp-gallery-main {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

body.service-page-adaptacija .sp-gallery-main {
    width: 668px;
    height: 716px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    cursor: grab;
    border-radius: 20px;
    background: transparent;
    border: none;
    padding-bottom: 46px;
    box-sizing: border-box;
    isolation: isolate;
    --project-slider-edge-fade-width: 21%;
}

body.service-page-adaptacija .project-detail-slider {
    width: min(100%, 1100px);
    height: clamp(560px, 68vw, 716px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    cursor: grab;
    border-radius: 20px;
    background: transparent;
    border: none;
    padding-bottom: 46px;
    box-sizing: border-box;
    isolation: isolate;
    --project-slider-edge-fade-width: 21%;
}

body.service-page-adaptacija .project-detail-slider:active {
    cursor: grabbing;
}

body.service-page-adaptacija .project-detail-slider::before,
body.service-page-adaptacija .project-detail-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 46px;
    width: var(--project-slider-edge-fade-width);
    background: var(--primary-bg);
    pointer-events: none;
    z-index: 3;
}

body.service-page-adaptacija .project-detail-slider::before {
    left: 0;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0) 100%);
}

body.service-page-adaptacija .project-detail-slider::after {
    right: 0;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0) 100%);
}

body.service-page-adaptacija .project-slider-track {
    display: flex;
    height: calc(100% - 46px);
    transition: transform 0.5s ease-out;
    width: 100%;
    align-items: center;
}

body.service-page-adaptacija .project-slide {
    min-width: 46%;
    height: 100%;
    position: relative;
    padding: 0 10px;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    opacity: 0.72;
    transform: scale(0.92);
    filter: saturate(0.9);
}

body.service-page-adaptacija .project-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

body.service-page-adaptacija .project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.22);
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    display: block;
}

body.service-page-adaptacija .slider-pagination {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

body.service-page-adaptacija .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 240ms ease, background 240ms ease;
}

body.service-page-adaptacija .slider-dot.active {
    background: var(--accent-warm);
    transform: scale(1.35);
    box-shadow: 0 0 12px rgba(184, 151, 112, 0.55);
}

@media (max-width: 640px) {
    body.service-page-adaptacija .sp-gallery-main {
        width: 100%;
        height: auto;
        aspect-ratio: 668 / 716;
    }

    body.service-page-adaptacija .project-detail-slider {
        width: 100%;
        height: auto;
        aspect-ratio: 668 / 716;
        --project-slider-edge-fade-width: 16%;
    }

    body.service-page-adaptacija .project-slide {
        min-width: 72%;
        padding: 0 8px;
    }
}

.sp-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 260ms ease;
    will-change: opacity;
}

body.service-page-adaptacija .sp-gallery-main img {
    object-fit: contain;
}

.sp-gallery-main img.is-fade {
    opacity: 0;
}

.sp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.45);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, border-color 180ms ease;
    z-index: 2;
}

.sp-gallery-arrow i {
    font-size: 14px;
}

.sp-gallery-arrow-prev {
    left: 14px;
    transform: translateY(-50%) translateX(-10px);
}

.sp-gallery-arrow-next {
    right: 14px;
    transform: translateY(-50%) translateX(10px);
}

.sp-gallery-main:hover .sp-gallery-arrow,
.sp-gallery-main:focus-within .sp-gallery-arrow {
    opacity: 1;
    pointer-events: auto;
}

.sp-gallery-main:hover .sp-gallery-arrow-prev,
.sp-gallery-main:focus-within .sp-gallery-arrow-prev {
    transform: translateY(-50%) translateX(0);
}

.sp-gallery-main:hover .sp-gallery-arrow-next,
.sp-gallery-main:focus-within .sp-gallery-arrow-next {
    transform: translateY(-50%) translateX(0);
}

.sp-gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .sp-gallery-main img {
        transition: none;
    }
}

.sp-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}

body.service-page-adaptacija .sp-gallery-thumbs {
    width: 668px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

body.service-page-adaptacija .sp-gallery-thumbs::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body.service-page-adaptacija .sp-gallery-thumbs.is-dragging {
    cursor: grabbing;
}

.sp-gallery-thumb {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    flex: 0 0 116px;
    height: 74px;
    cursor: pointer;
    opacity: 0.78;
    transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

body.service-page-adaptacija .sp-gallery-thumb {
    flex: 0 0 148px;
    height: 88px;
}

body.service-page-adaptacija .sp-gallery-thumb img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.sp-gallery-thumb:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
}

.sp-gallery-thumb.is-active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.35);
}

.sp-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-process {
    margin-bottom: 100px;
}

.sp-process h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 650;
    color: var(--text-white);
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 20px;
}

.sp-process h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--accent-warm);
    border-radius: 2px;
}

.sp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sp-process-step {
    padding: 40px 30px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.sp-step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    line-height: 1;
}

.sp-process-step h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.sp-process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.sp-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: #2a2a2a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-cta-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 650;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.sp-cta-content p {
    font-size: 18px;
    color: var(--text-gray);
}

.sp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: var(--text-white);
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

.sp-cta-btn i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-cta-btn:hover i {
    transform: translateX(5px);
}

.sp-footer {
    background-color: #0a0a0a;
    padding: 60px 0 30px;
    color: var(--text-white);
}

.sp-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.sp-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-footer-logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.sp-footer-brand p {
    color: var(--text-gray);
    font-size: 15px;
}

.sp-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sp-footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.sp-footer-col a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.sp-footer-col a:hover {
    color: var(--text-white);
}

.sp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

.sp-footer-dev {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.sp-footer-dev-logo {
    height: 20px;
    width: auto;
}

@media (max-width: 1024px) {
    .sp-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 40px 40px;
    }

    .sp-hero-image {
        height: 400px;
    }

    .sp-intro-text {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sp-intro-text h2 {
        white-space: normal;
    }

    .sp-intro-list {
        grid-template-columns: 1fr 1fr;
    }

    .sp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sp-hero {
        padding: 60px 24px 40px;
    }

    .sp-container {
        padding: 0 24px;
    }

    .sp-content {
        padding: 60px 0;
    }

    .sp-intro {
        padding: 60px 0 0;
        margin-bottom: 80px;
    }

    .sp-intro-text {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
        padding-bottom: 32px;
    }

    .sp-intro-text h2 {
        font-size: clamp(36px, 8vw, 48px);
        white-space: normal;
    }

    .sp-intro-text p {
        font-size: 16px;
    }

    .sp-intro-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sp-list-item {
        padding: 28px 24px;
        gap: 14px;
    }

    .sp-list-item::before {
        font-size: 36px;
    }

    .sp-list-item span {
        font-size: 16px;
    }

    .sp-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sp-cta {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
    }

    .sp-footer-container {
        padding: 0 24px;
    }

    .sp-footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sp-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.service-page-animate .sp-hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: spFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.service-page-animate .sp-hero-image {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: spFadeInUpScale 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.service-page-animate .sp-back {
    opacity: 0;
    transform: translateX(-20px);
    animation: spFadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.05s;
}

.service-page-animate .sp-hero-badge {
    opacity: 0;
    transform: scale(0.8);
    animation: spFadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.15s;
}

.service-page-animate .sp-hero-title {
    opacity: 0;
    transform: translateY(20px);
    animation: spFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.25s;
}

.service-page-animate .sp-hero-desc {
    opacity: 0;
    transform: translateY(20px);
    animation: spFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.35s;
}

.service-page-animate .sp-intro-text {
    opacity: 0;
    transform: translateY(30px);
    animation: spFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.service-page-animate .sp-intro-list {
    opacity: 0;
    transform: translateY(30px);
    animation: spFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

.service-page-animate .sp-list-item:nth-child(1) {
    opacity: 0;
    transform: translateX(-20px);
    animation: spFadeInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.service-page-animate .sp-list-item:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
    animation: spFadeInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
}

.service-page-animate .sp-list-item:nth-child(3) {
    opacity: 0;
    transform: translateX(-20px);
    animation: spFadeInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

.service-page-animate .sp-list-item:nth-child(4) {
    opacity: 0;
    transform: translateX(-20px);
    animation: spFadeInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
}

.service-page-animate .sp-image-full {
    opacity: 0;
    transform: scale(0.95);
    animation: spFadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

.service-page-animate .sp-process h2 {
    opacity: 0;
    transform: translateY(30px);
    animation: spFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
}

.service-page-animate .sp-process-step:nth-child(1) {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: spFadeInUpScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
}

.service-page-animate .sp-process-step:nth-child(2) {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: spFadeInUpScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.3s;
}

.service-page-animate .sp-process-step:nth-child(3) {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: spFadeInUpScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.4s;
}

.service-page-animate .sp-process-step:nth-child(4) {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: spFadeInUpScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.5s;
}

.service-page-animate .sp-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: spFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.6s;
}

@keyframes spFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spFadeInUpScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spFadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spFadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-page-animate .sp-hero-content,
    .service-page-animate .sp-hero-image,
    .service-page-animate .sp-back,
    .service-page-animate .sp-hero-badge,
    .service-page-animate .sp-hero-title,
    .service-page-animate .sp-hero-desc,
    .service-page-animate .sp-intro-text,
    .service-page-animate .sp-intro-list,
    .service-page-animate .sp-list-item,
    .service-page-animate .sp-image-full,
    .service-page-animate .sp-process h2,
    .service-page-animate .sp-process-step,
    .service-page-animate .sp-cta {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-page-animate .service-hero-content,
    .service-page-animate .service-intro-box,
    .service-page-animate .service-feature-card,
    .service-page-animate .service-details-text,
    .service-page-animate .service-details-image,
    .service-page-animate .service-cta-section {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.service-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 40px;
}

.service-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-back-link:hover {
    color: white;
    transform: translateX(-4px);
}

.service-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.service-content-section {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.service-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-intro-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.service-intro-box h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 650;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.service-intro-text {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: var(--text-gray);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
}

.service-feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.service-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.service-details-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-details-text h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 650;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.service-details-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.service-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-cta-section {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-cta-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 650;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.service-cta-section p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: var(--text-white);
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

.service-cta-button i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .service-details-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 60vh;
        min-height: 400px;
    }

    .service-hero-content {
        padding: 0 24px;
    }

    .service-content-container {
        padding: 0 24px;
    }

    .service-content-section {
        padding: 60px 0;
    }

    .service-intro-box {
        margin-bottom: 60px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .service-feature-card {
        padding: 40px 30px;
    }

    .service-details-section {
        margin-bottom: 60px;
    }

    .service-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-cta-section {
        padding: 60px 30px;
    }
}

.btn-dark {
    background-color: var(--services-btn-bg);
    color: var(--services-btn-fg);
    align-self: flex-start;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 12px;
}

.services-intro-wrap {
    font-size: 17px;
    font-weight: 450;
    line-height: 1.7;
    color: var(--services-fg);
    max-width: 480px;
    height: calc(1.7em * 2);
    display: flex;
    align-items: flex-end;
}

.services-intro {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    max-width: 100%;
}

.services-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.services-image-secondary {
    height: 240px;
}

.services-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.services-image-side {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.services-image-main {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    height: 520px;
}

.services-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-tour {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--services-muted);
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.tour-description {
    font-size: 17px;
    font-weight: 450;
    line-height: 1.7;
    color: var(--services-fg);
    margin: 0;
}

.services-pagination {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.pagination-btn {
    width: 46px;
    height: 46px;
    border: 1px solid var(--services-border);
    border-radius: 999px;
    background-color: transparent;
    color: var(--services-fg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

 .pagination-btn i,
 .pagination-btn svg {
    pointer-events: none;
 }

 .pagination-btn:focus:not(:focus-visible) {
    outline: none;
 }

.pagination-btn:hover {
    background-color: var(--services-hover-bg);
    color: var(--services-hover-fg);
    border-color: var(--services-hover-bg);
}

.pagination-btn i {
    font-size: 14px;
}

.pagination-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--services-fg);
}

.projects-section {
    min-height: calc(100vh - var(--mobile-header-offset, 0px));
    height: calc(100vh - var(--mobile-header-offset, 0px));
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    justify-content: center;
    padding: 60px 90px;
    background-color: var(--primary-bg);
    overflow-x: hidden;
    overflow-y: hidden;
    gap: 64px;
    max-width: 100%;
}

.projects-section.projects-enter .projects-reveal {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1400ms cubic-bezier(0.16, 1, 0.3, 1), transform 1400ms cubic-bezier(0.16, 1, 0.3, 1), filter 1400ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.projects-section.projects-enter .projects-reveal.projects-reveal-left {
    transform: translateX(-42px) skewX(-6deg);
}

.projects-section.projects-enter .projects-reveal.projects-reveal-right {
    transform: translateX(42px) scale(0.985);
}

.projects-section.projects-enter .projects-reveal.projects-reveal-visible {
    opacity: 1;
    transform: translateX(0px) skewX(0deg) scale(1);
    filter: blur(0px);
}

.projects-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    isolation: isolate;
    padding-bottom: 24px;
    min-height: 160px;
}

.projects-header::before {
    content: 'PROJEKTI';
    position: absolute;
    left: 50%;
    top: 14px;
    transform: translateX(-50%);
    font-size: 128px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--watermark-ink);
    opacity: var(--watermark-opacity);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
}

 .projects-section.projects-enter .projects-header::before {
     opacity: 0;
     transform: translateX(-50%) translateY(22px) scale(0.975);
     filter: blur(10px);
     transition: opacity 1900ms cubic-bezier(0.16, 1, 0.3, 1), transform 1900ms cubic-bezier(0.16, 1, 0.3, 1), filter 1900ms cubic-bezier(0.16, 1, 0.3, 1);
     transition-delay: 120ms;
     will-change: opacity, transform, filter;
 }

 .projects-section.projects-enter .projects-header.projects-reveal-visible::before {
     opacity: var(--watermark-opacity);
     transform: translateX(-50%) translateY(0px) scale(1);
     filter: blur(0px);
 }

.projects-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: color-mix(in srgb, var(--text-white) 22%, transparent);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

 .projects-section.projects-enter .projects-header::after {
     opacity: 0;
     transform: scaleX(0);
     transform-origin: center;
     transition: opacity 1600ms cubic-bezier(0.16, 1, 0.3, 1), transform 1600ms cubic-bezier(0.16, 1, 0.3, 1);
     transition-delay: 220ms;
     will-change: opacity, transform;
 }

 .projects-section.projects-enter .projects-header.projects-reveal-visible::after {
     opacity: 1;
     transform: scaleX(1);
 }

.projects-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    --project-card-width: 450px;
    --carousel-arrow-size: 50px;
    --carousel-arrow-gap: 18px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--carousel-arrow-size);
    height: var(--carousel-arrow-size);
    border: 1.5px solid var(--text-white);
    border-radius: 50%;
    background-color: transparent;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 30;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

 .carousel-arrow i,
 .carousel-arrow svg {
    pointer-events: none;
 }

 .carousel-arrow:focus:not(:focus-visible) {
    outline: none;
 }

.carousel-arrow-left {
    left: calc(
        50% - (var(--project-card-width) / 2) - var(--carousel-arrow-gap) - var(--carousel-arrow-size)
    );
}

.carousel-arrow-right {
    left: calc(
        50% + (var(--project-card-width) / 2) + var(--carousel-arrow-gap)
    );
}

@media (min-width: 480px) and (max-width: 700px) {
    .projects-carousel {
        padding-left: calc(var(--carousel-arrow-size) + 16px);
        padding-right: calc(var(--carousel-arrow-size) + 16px);
    }

    .carousel-arrow-left {
        left: 10px;
    }

    .carousel-arrow-right {
        left: auto;
        right: 10px;
    }
}

.carousel-arrow:hover {
    background-color: var(--text-white);
    color: var(--primary-bg);
}

.carousel-arrow i {
    font-size: 16px;
}

.projects-track-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 550px;
    --projects-edge-fade-width: 36%;
}

.projects-track-wrapper::before,
.projects-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--projects-edge-fade-width);
    z-index: 20;
    pointer-events: none;
}

.projects-track-wrapper::before {
    left: 0;
    background: var(--primary-bg);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.85) 44%, rgba(0, 0, 0, 0.45) 56%, rgba(0, 0, 0, 0.18) 64%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.85) 44%, rgba(0, 0, 0, 0.45) 56%, rgba(0, 0, 0, 0.18) 64%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}

.projects-track-wrapper::after {
    right: 0;
    background: var(--primary-bg);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.85) 44%, rgba(0, 0, 0, 0.45) 56%, rgba(0, 0, 0, 0.18) 64%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.85) 44%, rgba(0, 0, 0, 0.45) 56%, rgba(0, 0, 0, 0.18) 64%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}

.projects-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.project-card {
    position: absolute;
    left: 50%;
    top: 0;
    width: 450px;
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.4;
    transform: translateX(-50%) scale(0.85);
    pointer-events: none;
}

.project-card.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    z-index: 5;
    pointer-events: auto;
}

.project-card.prev-card,
.project-card.next-card {
    pointer-events: none;
}

.project-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-card-content {
    padding: 28px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-card-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
    letter-spacing: -0.5px;
}

.project-card-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.project-card-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-card-price {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-white);
}

.project-card-specs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    text-align: right;
}

.page-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.section-watermark {
    position: relative;
    width: 100%;
    height: 160px;
    pointer-events: none;
    z-index: 0;
    isolation: isolate;
    flex: 0 0 auto;
}

.section-watermark::before {
    content: attr(data-watermark);
    position: absolute;
    left: 50%;
    top: 14px;
    transform: translateX(-50%);
    font-size: 128px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--watermark-ink);
    opacity: var(--watermark-opacity);
    user-select: none;
    white-space: nowrap;
}

.section-watermark::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: color-mix(in srgb, var(--text-white) 22%, transparent);
    opacity: 1;
}

#footer-kontakt.page-section {
    height: auto;
    min-height: auto;
    align-items: stretch;
    justify-content: stretch;
    background: var(--sidebar-bg);
    position: relative;
    overflow: hidden;
}

#footer-kontakt.contact-enter .contact-reveal {
    opacity: 0;
    transform: translateY(26px) perspective(900px) rotateX(10deg);
    filter: blur(10px);
    transition: opacity 1500ms cubic-bezier(0.16, 1, 0.3, 1), transform 1500ms cubic-bezier(0.16, 1, 0.3, 1), filter 1500ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

#footer-kontakt.contact-enter .contact-wordmark.contact-reveal {
    transform: translateY(34px) skewY(-6deg) scale(0.985);
    filter: blur(14px);
}

#footer-kontakt.contact-enter .contact-reveal.contact-reveal-visible {
    opacity: 1;
    transform: translateY(0px) perspective(900px) rotateX(0deg) skewY(0deg) scale(1);
    filter: blur(0px);
}

@media (prefers-reduced-motion: reduce) {
    .projects-section.projects-enter .projects-reveal,
    #footer-kontakt.contact-enter .contact-reveal {
        transition: none !important;
        filter: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

#footer-kontakt.page-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(120px, 24vh, 260px);
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(
        to top,
        var(--sidebar-bg) 0%,
        color-mix(in srgb, var(--sidebar-bg) 96%, transparent) 14%,
        color-mix(in srgb, var(--sidebar-bg) 88%, transparent) 30%,
        color-mix(in srgb, var(--sidebar-bg) 72%, transparent) 48%,
        color-mix(in srgb, var(--sidebar-bg) 46%, transparent) 66%,
        color-mix(in srgb, var(--sidebar-bg) 22%, transparent) 82%,
        transparent 100%
    );
}

.contact-shell {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(18px, 2.2vh, 28px);
    padding: clamp(20px, 3.2vh, 38px) clamp(22px, 3.2vw, 46px);
    position: relative;
    z-index: 1;
}

.contact-panels {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: clamp(14px, 1.8vw, 22px);
    align-items: stretch;
}

.contact-panel {
    border: 1px solid color-mix(in srgb, var(--text-white) 35%, transparent);
    padding: clamp(22px, 2.8vh, 34px) clamp(20px, 2.4vw, 36px);
    min-height: clamp(170px, 24vh, 240px);
}

.contact-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(10px, 1.4vh, 14px);
}

.contact-nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 400;
    letter-spacing: -0.2px;
    opacity: 0.95;
    transition: opacity 180ms ease;
}

.contact-nav-link:hover {
    opacity: 0.7;
}

.contact-panel-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
}

.contact-info-left {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.contact-info-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
    min-height: 100%;
}

.contact-info-top {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.contact-copyright {
    text-align: right;
}

.contact-info-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    margin-top: auto;
}

.contact-policies {
    text-align: right;
}

.contact-left {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: clamp(18px, 3vw, 44px);
    row-gap: clamp(14px, 2.2vh, 20px);
    align-items: stretch;
}

.contact-left-primary,
.contact-left-secondary {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: space-between;
    height: 5em;
}

.contact-left-secondary {
    align-items: center;
    margin-top: 0;
    justify-self: center;
    text-align: center;
}

.contact-left > .contact-info-label {
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-size: 12px;
}

.contact-company-name {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin: 0;
    opacity: 0.95;
}

.contact-left-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.2px;
    opacity: 0.95;
    width: fit-content;
    line-height: 1.32;
    transition: opacity 180ms ease;
}

.contact-left-link:hover {
    opacity: 0.7;
}

.contact-left-text {
    color: color-mix(in srgb, var(--text-white) 78%, transparent);
    font-size: 16px;
    line-height: 1.32;
    margin: 0;
}

.contact-left-hours {
    color: color-mix(in srgb, var(--text-white) 78%, transparent);
    font-size: 16px;
    line-height: 1.32;
    margin: 0;
}

.contact-mini-social {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    justify-content: space-between;
    justify-self: end;
    margin-top: 0;
    height: 5em;
}

.contact-mini-social-link {
    color: var(--text-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
    transition: none;
}

 .contact-mini-social-link::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(var(--social-glow-rgb), var(--social-glow-alpha)), rgba(var(--social-glow-rgb), 0) 68%);
    filter: blur(var(--social-glow-blur));
    opacity: 0;
    transform: scale(0.78);
    transition: opacity 180ms ease, transform 260ms cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
    z-index: -1;
 }

 .contact-mini-social-link:hover::before,
 .contact-mini-social-link:focus-visible::before {
    opacity: 1;
    transform: scale(1);
 }

.contact-mini-social-link .social-icon {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
}

@media (max-width: 768px) {
    #footer-kontakt.page-section {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    #footer-kontakt.page-section::after {
        height: clamp(40px, 12vh, 120px);
    }

    #footer-kontakt.contact-enter .contact-reveal,
    #footer-kontakt.contact-enter .contact-wordmark.contact-reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-shell {
        flex: 1;
    }

    .contact-panels {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    #footer-kontakt.page-section {
        overflow: hidden;
        height: auto !important;
        min-height: auto !important;
    }
}

@media (max-width: 480px) {
    .contact-shell {
        gap: 18px;
        padding: 24px 18px 30px;
    }

    .contact-panel {
        padding: 20px 16px;
    }

    .contact-left {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .contact-left-primary,
    .contact-left-secondary {
        height: auto;
        gap: 6px;
        justify-content: flex-start;
        text-align: left;
    }

    .contact-left-secondary {
        align-items: center;
        text-align: center;
    }

    .contact-mini-social {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        height: auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-info-text,
    .contact-left-text,
    .contact-left-hours,
    .contact-developed-label {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
    }

    .contact-wordmark {
        font-size: clamp(34px, 18vw, 110px);
    }
}

@media (min-width: 480px) and (max-width: 1024px) {
    #footer-kontakt.page-section {
        height: auto !important;
        min-height: auto !important;
    }

    .contact-wordmark {
        margin-top: clamp(14px, 2vh, 24px) !important;
    }

    #footer-kontakt.page-section::after {
        height: clamp(120px, 24vh, 260px) !important;
    }

    .services-tags {
        display: grid !important;
        grid-template-columns: repeat(4, max-content) !important;
        width: 100% !important;
        justify-self: center !important;
        justify-content: center !important;
        justify-items: center;
        column-gap: 12px;
        row-gap: 0;
    }

    .service-tag {
        width: fit-content !important;
        padding: 7px 10px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
    }
}

.contact-social {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--text-white) 35%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    position: relative;
    isolation: isolate;
    transition: none;
}

 .contact-social-link::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(var(--social-glow-rgb), var(--social-glow-alpha)), rgba(var(--social-glow-rgb), 0) 68%);
    filter: blur(var(--social-glow-blur));
    opacity: 0;
    transform: scale(0.78);
    transition: opacity 180ms ease, transform 260ms cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
    z-index: -1;
 }

 .contact-social-link:hover::before,
 .contact-social-link:focus-visible::before {
    opacity: 1;
    transform: scale(1);
 }

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2vw, 28px);
    align-items: flex-end;
}

.contact-info-label {
    color: color-mix(in srgb, var(--text-white) 78%, transparent);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-info-text {
    color: color-mix(in srgb, var(--text-white) 78%, transparent);
    font-size: 16px;
    line-height: 1.32;
}

.contact-info-block-right {
    text-align: right;
}

.contact-developed {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    transform: translateY(10px);
}

.contact-developed-label {
    color: color-mix(in srgb, var(--text-white) 72%, transparent);
    font-size: 16px;
    line-height: 1.32;
    margin: 0;
}

.contact-developed-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0;
    line-height: 0;
    display: inline-flex;
    align-items: flex-start;
    gap: 0;
    width: fit-content;
    transition: opacity 180ms ease;
    overflow: visible;
    margin-top: 0;
    cursor: pointer;
    position: relative;
    top: 0;
}

.contact-developed-logo {
    height: 68px;
    width: auto;
    display: block;
    margin-top: -6px;
    cursor: pointer;
    filter: brightness(0) invert(1);
    transform: none;
}


.contact-developed-link:hover {
    opacity: 0.8;
}

.contact-policy-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.contact-policy-link {
    color: color-mix(in srgb, var(--text-white) 60%, transparent);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 180ms ease;
    width: fit-content;
}

.contact-policy-link::after {
    display: none;
}

.contact-policy-link:not(:last-child)::after {
    display: none;
}

.contact-policy-link:hover {
    color: var(--text-white);
    opacity: 1;
}


@media (max-width: 768px) {
    .contact-panel-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .contact-info-left {
        width: 100%;
    }

    .contact-info-right {
        width: 100%;
        align-items: flex-start;
    }

    .contact-info-top {
        justify-content: flex-start;
    }

    .contact-copyright {
        text-align: left;
    }

    .contact-info-bottom {
        justify-content: flex-start;
    }

    .contact-policies {
        text-align: left;
    }

    .contact-policy-links {
        align-items: flex-start;
    }
}

.contact-wordmark {
    width: 100%;
    margin-top: clamp(14px, 2vh, 24px);
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 0.86;
    font-size: clamp(52px, 16vw, 220px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    padding-left: clamp(0px, 1.2vw, 16px);
}

/* Policy Modal */
html.modal-open {
    overflow: hidden !important;
}

body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 300ms ease;
    overscroll-behavior: contain;
}

.policy-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.policy-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.policy-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 85vh;
    max-height: 85vh;
    background: var(--sidebar-bg);
    border: 1px solid color-mix(in srgb, var(--text-white) 20%, transparent);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.policy-modal.active .policy-modal-content {
    transform: scale(1);
}

.policy-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease;
    z-index: 2;
}

.policy-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.policy-modal-body {
    padding: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.policy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.policy-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.policy-modal-body::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--text-white) 30%, transparent);
    border-radius: 4px;
}

.policy-modal-body::-webkit-scrollbar-thumb:hover {
    background: color-mix(in srgb, var(--text-white) 40%, transparent);
}

.policy-modal-body h2 {
    color: var(--text-white);
    font-size: 32px;
    margin: 0 0 24px 0;
    font-weight: 600;
}

.policy-modal-body h3 {
    color: var(--text-white);
    font-size: 22px;
    margin: 32px 0 16px 0;
    font-weight: 500;
}

.policy-modal-body p {
    color: color-mix(in srgb, var(--text-white) 85%, transparent);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.policy-modal-body ul {
    color: color-mix(in srgb, var(--text-white) 85%, transparent);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.policy-modal-body li {
    margin-bottom: 8px;
}


/* Consultation images layout */
.sp-consultation-images {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.sp-consultation-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-consultation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sp-consultation-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.sp-consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sp-consultation-card:hover .sp-consultation-image img {
    transform: scale(1.05);
}

.sp-consultation-content {
    padding: 2rem;
}

.sp-consultation-content h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
}

.sp-consultation-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}


/* Service page responsive media queries */
@media (max-width: 768px) {
    .sp-gallery {
        margin: 3rem 0;
    }

    .sp-gallery-main {
        height: 250px;
        border-radius: 12px;
    }

    .sp-gallery-thumbs {
        margin-top: 1rem;
        gap: 0.75rem;
    }

    .sp-gallery-thumb {
        width: 60px;
        height: 45px;
        border-radius: 6px;
    }

    .sp-gallery-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .sp-gallery-arrow-prev {
        left: 0.75rem;
    }

    .sp-gallery-arrow-next {
        right: 0.75rem;
    }

    /* Responsive consultation images */
    .sp-consultation-images {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }

    .sp-consultation-image {
        height: 200px;
    }

    .sp-consultation-content {
        padding: 1.5rem;
    }

    .sp-consultation-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .sp-gallery-main {
        height: 340px;
    }

    .sp-gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .sp-gallery-arrow-prev {
        left: 10px;
    }

    .sp-gallery-arrow-next {
        right: 10px;
    }

    .sp-gallery-thumb {
        flex-basis: 94px;
        height: 64px;
        border-radius: 12px;
    }

    .policy-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .policy-modal-body {
        padding: 40px 24px;
    }

    .policy-modal-body h2 {
        font-size: 26px;
    }

    .policy-modal-body h3 {
        font-size: 20px;
    }

    .policy-modal-body p,
    .policy-modal-body ul {
        font-size: 15px;
    }
}

.page-section-content {
    width: 100%;
    padding: 70px 90px;
    position: relative;
    z-index: 1;
}

.page-section-title {
    margin: 0;
    font-size: 72px;
    font-weight: 600;
    color: var(--text-white);
}

/* ================================
    Desktop-Laptop (MacBook Pro 14.2" / 1512×982)
    Goal: keep the same layout/design, but proportionally reduce sizing so
    content fits comfortably in the viewport without overflow.
    Single breakpoint as requested.
    ================================ */
@media (max-width: 1600px) {
    .sidebar {
        padding: 2rem 0;
    }

    .sidebar::after {
        inset: 0.875rem;
    }

    .logo {
        padding: 0 1.625rem;
        margin-bottom: 4rem;
    }

    .logo h1 {
        font-size: 3.3rem;
    }

    .nav-menu {
        padding: 0 1.625rem;
    }

    .nav-link {
        font-size: 1.625rem;
    }

    .social-icons {
        padding: 0 1.625rem;
    }

    .page-section-content {
        padding: 3.5rem 4.5rem;
    }

    .page-section-title {
        font-size: 3.875rem;
    }

    .section-watermark {
        height: 8.75rem;
    }

    .section-watermark::before {
        top: 0.75rem;
        font-size: 7rem;
    }

    .hero-content {
        padding: 0 2.5rem;
        max-width: 51.25rem;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
    }

    .services {
        padding: 3rem 4.5rem;
        gap: 3.25rem;
    }

    .services-left {
        gap: 3.25rem;
        padding-top: 5.25rem;
    }

    .services-title {
        font-size: 3.875rem;
    }

    .services-label {
        font-size: 1.375rem;
    }

    .services-description {
        font-size: 1rem;
        max-width: 26.25rem;
    }

    .services-intro-wrap {
        font-size: 1rem;
        max-width: 27.5rem;
    }

    .services-image-secondary {
        height: 13.75rem;
    }

    .services-image-main {
        height: 29.375rem;
    }

    .projects-section {
        padding: 3rem 4.5rem;
        gap: 3.25rem;
    }

    .projects-header {
        min-height: 8.75rem;
    }

    .projects-header::before {
        font-size: 7rem;
    }

    .projects-track-wrapper {
        height: 35rem;
        --projects-edge-fade-width: 32%;
    }

    .project-card {
        width: 26.25rem;
    }

    .project-card-image {
        height: 18.75rem;
    }

    .contact-wordmark {
        font-size: clamp(3.25rem, 14vw, 12rem);
    }

    #about.page-section {
        padding: 3rem 4.5rem;
        gap: 2.25rem;
    }

    #about .about-inner {
        gap: 2.25rem;
    }

    .about-top {
        gap: 1.875rem;
    }

    .about-lead,
    .about-lead-strong {
        font-size: clamp(17px, 1.25vw, 20px);
    }

    .about-cell {
        padding: 1.5rem 1.75rem;
    }

    .about-stat-img {
        width: min(100%, 15rem);
        height: 9.375rem;
    }

    .about-stat-number {
        font-size: clamp(32px, 3.2vw, 52px);
    }

    .about-bottom {
        margin-top: -0.625rem;
    }

    .about-cta {
        min-width: min(35rem, 100%);
    }
}

/* ≤1366px - Standardni laptopi */
@media (max-width: 1366px) {
    .sidebar {
        padding: 32px 0;
    }

    .logo {
        padding: 0 24px;
        margin-bottom: 60px;
    }

    .logo h1 {
        font-size: 60px;
    }

    .nav-menu {
        padding: 0 24px;
        gap: clamp(8px, 1vh, 14px);
    }

    .nav-link {
        font-size: 26px;
    }

    .social-icons {
        padding: 0 24px;
    }

    .social-link .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-link:hover::before {
        opacity: 0;
        transform: scale(0.9);
    }

    .contact-mini-social-link:hover::before {
        opacity: 0;
        transform: scale(0.9);
    }

    .contact-social-link:hover::before {
        opacity: 0;
        transform: scale(0.9);
    }

    .hero-title {
        font-size: clamp(32px, 4.6vw, 58px);
    }

    .hero-subtitle {
        font-size: clamp(13px, 1.3vw, 17px);
    }

    .hero-card {
        width: clamp(280px, 58vw, 850px);
        height: clamp(170px, 32vw, 490px);
    }

    #about.page-section {
        padding: 50px 70px;
        gap: 40px;
    }

    .about-cell {
        padding: 24px 28px;
    }

    .about-stat-img {
        width: min(100%, 240px);
        height: 145px;
    }

    .about-cta {
        min-width: min(560px, 100%);
        padding: 13px 15px 13px 18px;
    }

    .services {
        padding: 50px 70px;
        gap: 52px;
    }

    .services-left {
        gap: 52px;
        padding-top: 90px;
    }

    .services-title {
        font-size: 64px;
        margin-top: -20px;
    }

    .services-description {
        font-size: 16px;
        max-width: 420px;
    }

    .services-intro-wrap {
        font-size: 16px;
        max-width: 440px;
    }

    .services-image-main {
        height: 480px;
    }

    .services-image-secondary {
        height: 220px;
    }

    .services-tags {
        max-width: 420px;
    }

    .service-tag {
        padding: 7px 14px;
        font-size: 15px;
    }

    .projects-section {
        padding: 50px 70px;
        gap: 52px;
    }

    .section-watermark {
        height: 145px;
    }

    .section-watermark::before {
        top: 12px;
        font-size: 116px;
        opacity: var(--watermark-opacity);
    }

    .projects-header {
        min-height: 145px;
        padding-bottom: 22px;
    }

    .projects-header::before {
        left: 50%;
        top: 12px;
        transform: translateX(-50%);
        font-size: 116px;
        opacity: var(--watermark-opacity);
    }

    .projects-subtitle-wrap {
        padding: 16px 16px;
        max-width: 420px;
    }

    .projects-heading {
        font-size: 46px;
    }

    .projects-subtitle {
        font-size: 15px;
    }

    .projects-track-wrapper {
        height: 510px;
        --projects-edge-fade-width: 30%;
    }

    .project-card {
        width: 420px;
    }

    .project-card-image {
        height: 300px;
    }

    .project-card-title {
        font-size: 30px;
    }

    .project-card-price {
        font-size: 26px;
    }

    #footer-kontakt.page-section {
        height: 60vh;
        min-height: 60vh;
    }

    .contact-wordmark {
        font-size: clamp(52px, 16vw, 220px);
    }

    .hero {
        margin-bottom: clamp(32px, 6vh, 72px);
    }

    #about.page-section {
        margin-top: clamp(18px, 4vh, 48px);
        margin-bottom: clamp(32px, 6vh, 72px);
    }

    .services {
        margin-top: clamp(32px, 6vh, 72px);
    }
}

/* ≤1280px - Manji laptopi */
@media (max-width: 1280px) {
    .logo h1 {
        font-size: 54px;
    }

    .nav-link {
        font-size: 24px;
    }

    .hero-title {
        font-size: clamp(30px, 4.4vw, 56px);
    }

    .hero-card {
        width: clamp(260px, 56vw, 800px);
        height: clamp(160px, 30vw, 460px);
    }

    #about.page-section {
        padding: 45px 60px;
        gap: 38px;
    }

    .about-cell {
        padding: 22px 26px;
    }

    .about-stat-img {
        width: min(100%, 220px);
        height: 135px;
    }

    .services {
        padding: 45px 60px;
        gap: 52px;
    }

    .services-left {
        gap: 48px;
        padding-top: 80px;
    }

    .services-title {
        font-size: 58px;
        margin-top: -18px;
    }

    .services-description {
        font-size: 17px;
    }

    .services-intro-wrap {
        font-size: 17px;
    }

    .services-image-main {
        height: 440px;
    }

    .services-image-secondary {
        height: 205px;
    }

    .projects-section {
        padding: 45px 60px;
        gap: 52px;
    }

    .section-watermark {
        height: 138px;
    }

    .section-watermark::before {
        font-size: 108px;
        opacity: var(--watermark-opacity);
    }

    .projects-header {
        min-height: 138px;
        padding-bottom: 20px;
    }

    .projects-header::before {
        left: 50%;
        top: 12px;
        transform: translateX(-50%);
        font-size: 108px;
        opacity: var(--watermark-opacity);
    }

    .projects-track-wrapper {
        height: 490px;
        --projects-edge-fade-width: 24%;
    }

    .project-card {
        width: 400px;
    }

    .project-card-image {
        height: 280px;
    }

    .project-card-title {
        font-size: 29px;
    }

    .project-card-price {
        font-size: 26px;
    }

    #footer-kontakt.page-section {
        height: 60vh;
        min-height: 60vh;
    }

    .contact-wordmark {
        font-size: clamp(48px, 15vw, 200px);
    }
}

/* ≤1024px - Tablet landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(28px, 4.6vw, 48px);
    }

    .hero-subtitle {
        font-size: clamp(12px, 1.2vw, 15px);
    }

    .hero {
        height: calc(100vh - 70px);
        min-height: calc(100vh - 70px);
    }

    .hero-card {
        width: clamp(240px, 54vw, 750px);
        height: clamp(150px, 28vw, 430px);
    }


    #about.page-section {
        padding: 44px 60px;
        gap: 54px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }

    .about-cell {
        padding: 26px 22px;
        border-right: 1px solid var(--about-divider);
        border-bottom: 1px solid var(--about-divider);
    }

    .about-cell--i2,
    .about-cell--t2,
    .about-cell--i4,
    .about-cell--t4 {
        border-right: none;
    }

    .about-cell--i3,
    .about-cell--t4 {
        border-bottom: none;
    }

    .about-cell--t1 { grid-column: 1; grid-row: 1; }
    .about-cell--i1 { grid-column: 1; grid-row: 2; }
    .about-cell--i2 { grid-column: 2; grid-row: 1; }
    .about-cell--t2 { grid-column: 2; grid-row: 2; }

    .about-cell--t3 { grid-column: 1; grid-row: 3; }
    .about-cell--i3 { grid-column: 1; grid-row: 4; }
    .about-cell--i4 { grid-column: 2; grid-row: 3; }
    .about-cell--t4 { grid-column: 2; grid-row: 4; }

    .services {
        padding: 44px 60px;
        gap: 54px;
    }

    .services-content {
        gap: 44px;
        grid-template-columns: 1fr 1fr;
    }

    .services-left {
        gap: 46px;
        padding-top: 70px;
    }

    .services-title {
        font-size: 56px;
        margin-top: -18px;
    }

    .services-intro-wrap {
        font-size: 17px;
    }

    .services-image-secondary {
        height: 210px;
    }

    .services-image-main {
        height: 440px;
    }

    .projects-section {
        padding: 44px 60px;
        gap: 54px;
    }

    .section-watermark {
        height: 136px;
    }

    .section-watermark::before {
        top: 12px;
        font-size: 104px;
        opacity: var(--watermark-opacity);
    }

    .projects-header {
        min-height: 136px;
        padding-bottom: 22px;
    }

    .projects-header::before {
        left: 50%;
        top: 12px;
        transform: translateX(-50%);
        font-size: 104px;
        opacity: var(--watermark-opacity);
    }

    .projects-subtitle-wrap {
        padding: 16px 16px;
        max-width: 420px;
    }

    .projects-heading {
        font-size: 46px;
    }

    .projects-subtitle {
        font-size: 15px;
    }

    .projects-track-wrapper {
        height: 470px;
        --projects-edge-fade-width: 24%;
    }

    .project-card {
        width: 380px;
    }

    .project-card-image {
        height: 260px;
    }

    .project-card-title {
        font-size: 28px;
    }

    #footer-kontakt.page-section {
        height: 60vh;
        min-height: 60vh;
    }

    .contact-wordmark {
        font-size: clamp(44px, 14vw, 180px);
    }

    .hero {
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    #about.page-section {
        margin-top: clamp(28px, 6vh, 70px);
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    .services {
        margin-top: clamp(40px, 8vh, 90px);
    }
}

/* ≤1024px - Hamburger menu */
@media (max-width: 1024px) {
    body {
        padding-top: 70px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-header {
        display: block;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--sidebar-bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px 30px;
        border-right: none;
        border-bottom: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar::after {
        display: none;
    }

    .logo {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: stretch;
        position: static;
        transform: none;
        padding: 0;
        gap: 18px;
    }

    .nav-link {
        width: 100%;
        font-size: 24px;
        padding: 22px 26px;
        border: 1px solid var(--divider);
        border-radius: 18px;
        line-height: 1.35;
        background: color-mix(in srgb, var(--sidebar-bg) 70%, transparent);
        opacity: 1;
        color: var(--text-white);
        display: flex;
        align-items: center;
        min-height: 64px;
    }

    .nav-letter {
        height: auto;
        line-height: inherit;
    }

    .nav-letter-inner {
        transform: none !important;
        transition: none;
    }

    .nav-letter-top {
        display: none;
    }

    .nav-letter-bottom {
        color: inherit;
        line-height: inherit;
    }

    .social-icons {
        padding: 0;
        gap: 20px;
        margin-top: auto;
        justify-content: center;
        padding-top: 30px;
    }

    .social-link .social-icon {
        width: 32px;
        height: 32px;
    }

    .sidebar::before,
    .logo::after,
    .logo::before,
    .sidebar-footer::before {
        display: none;
    }

    .sidebar-footer {
        width: 100%;
        margin-top: auto;
        padding-top: 0;
    }

    .main-content {
        margin-left: 0;
    }

    .hero {
        width: 100%;
        margin-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }


    #about.page-section {
        padding: 36px 30px;
        gap: 46px;
    }

    .about-cell {
        padding: 26px 22px;
    }

    .about-stat-img {
        width: min(100%, 220px);
        height: 135px;
    }

    .services {
        padding: 36px 30px;
        gap: 46px;
    }

    .services-content {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
        align-items: start;
        grid-template-areas:
            "service-title service-title"
            "service-description service-description"
            "service-tags service-image"
            "service-intro service-intro"
            "service-secondary service-tour";
    }

    .services-left,
    .services-right,
    .services-images,
    .services-details,
    .services-image-side {
        display: contents;
    }

    .services-title {
        grid-area: service-title;
        text-align: center;
        margin: 0 auto 6px;
        width: min(90%, 560px);
    }

    .services-description {
        grid-area: service-description;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .services-tags {
        grid-area: service-tags;
        align-self: center;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        justify-self: end;
    }

    .services-intro-wrap {
        grid-area: service-intro;
        max-width: none;
        padding: 6px 0;
        text-align: center;
        justify-self: stretch;
    }

    .services-image-main {
        grid-area: service-image;
        height: 100%;
        min-height: 340px;
        align-self: stretch;
    }

    .services-image-main img {
        height: 100%;
    }

    .services-image-secondary {
        grid-area: service-image-secondary;
        height: clamp(160px, 24vw, 240px);
    }

    .services-tour {
        grid-area: service-tour;
        align-self: start;
        justify-self: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .services-pagination {
        justify-content: center;
        margin-top: 0;
    }

    .service-tag-break {
        display: none;
    }

    .services-description {
        min-height: auto;
    }

    .services-intro-wrap {
        height: auto;
    }
}

/* ≤1024px - Tablet landscape */
@media (max-width: 1024px) {
    .services {
        padding: 36px 30px;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        overflow-y: visible !important;
        gap: 46px;
    }

    .services-content {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        align-items: start;
        max-width: 980px;
        margin: 0 auto;
        grid-template-areas:
            "service-title service-title"
            "service-description service-description"
            "service-tags service-tags"
            "service-image-main service-image-secondary"
            "service-image-main service-intro"
            "service-tour service-tour";
    }

    .services-left,
    .services-right,
    .services-images,
    .services-details,
    .services-image-side {
        display: contents;
    }

    .services-title {
        grid-area: service-title;
        text-align: center;
        margin: 0 auto 6px;
        width: min(92%, 520px);
    }

    .services-description {
        grid-area: service-description;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .services-tags {
        grid-area: service-tags;
        align-self: center;
        justify-self: stretch;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        align-items: center;
        padding: 2px 0 4px;
    }

    .services-intro-wrap {
        grid-area: service-intro;
        max-width: none;
        padding: 6px 0;
        text-align: center;
        margin-top: 18px;
    }

    .services-image-main {
        grid-area: service-image-main;
        height: clamp(260px, 36vw, 420px);
        align-self: stretch;
    }

    .services-image-main img {
        height: 100%;
    }

    .services-image-secondary {
        grid-area: service-image-secondary;
        height: clamp(160px, 22vw, 240px);
    }

    .services-tour {
        grid-area: service-tour;
        align-self: start;
        justify-self: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: -8px;
    }

    .services-pagination {
        justify-content: center;
        margin-top: 0;
    }

    .service-tag-break {
        display: none;
    }

    .services-left {
        gap: 40px;
        padding-top: 30px;
    }

    .services-title {
        font-size: 38px;
        letter-spacing: -1px;
        margin-top: -12px;
    }

    .services-description {
        font-size: 14px;
        max-width: 100%;
        min-height: 0;
    }

    .services-intro-wrap {
        font-size: 14px;
        max-width: 100%;
    }

    .tour-label {
        font-size: 20px;
    }

    .service-tag {
        width: 100%;
        padding: 8px 14px !important;
        font-size: 13px !important;
        font-weight: 700;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.15;
    }

    .services-image-secondary {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero {
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    #about.page-section {
        margin-top: clamp(28px, 6vh, 70px);
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    .services {
        margin-top: clamp(40px, 8vh, 90px);
    }

    .services-image-secondary img {
        height: 240px;
    }

    .services-image-main img {
        height: 320px;
    }

    .tour-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .pagination-btn {
        width: 42px;
        height: 42px;
    }

    .pagination-btn i {
        font-size: 12px;
    }

    .pagination-text {
        font-size: 14px;
    }

    .projects-section {
        padding: 36px 30px;
        gap: 46px;
    }

    #about.page-section {
        padding: 36px 30px;
        gap: 46px;
    }

    .section-watermark {
        height: 118px;
    }

    .section-watermark::before {
        top: 10px;
        font-size: 86px;
        opacity: var(--watermark-opacity);
    }

    .projects-header {
        flex-direction: column;
        gap: 20px;
        min-height: 118px;
        padding-bottom: 18px;
    }

    .projects-header::before {
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
        font-size: 86px;
        opacity: var(--watermark-opacity);
    }

    .projects-subtitle-wrap {
        padding: 16px 16px;
        max-width: 100%;
    }

    .projects-heading {
        font-size: 36px;
    }

    .projects-subtitle {
        font-size: 13px;
    }

    .projects-track-wrapper {
        height: 500px;
        --projects-edge-fade-width: 18%;
    }

    .project-card {
        width: 300px;
    }

    .project-card-image {
        height: 220px;
    }

    .project-card-title {
        font-size: 24px;
    }

    .project-card-price {
        font-size: 24px;
    }

    .project-card-specs {
        font-size: 13px;
    }

    #footer-kontakt.page-section {
        height: 60vh;
        min-height: 60vh;
    }

    .contact-wordmark {
        font-size: clamp(44px, 14vw, 180px);
    }

    .hero {
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    #about.page-section {
        margin-top: clamp(28px, 6vh, 70px);
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    .services {
        margin-top: clamp(40px, 8vh, 90px);
    }
}

/* ≤768px - Tablet portrait */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-header {
        display: block;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--sidebar-bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px 30px;
        border-right: none;
        border-bottom: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar::after {
        display: none;
    }

    .logo {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: stretch;
        position: static;
        transform: none;
        padding: 0;
        gap: 8px;
    }

    .nav-link {
        width: 100%;
        font-size: 24px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--divider);
        opacity: 1;
        color: var(--text-white);
    }

    .nav-link:first-child {
        border-top: 1px solid var(--divider);
    }

    .social-icons {
        padding: 0;
        gap: 20px;
        margin-top: auto;
        justify-content: center;
        padding-top: 30px;
    }

    .social-link .social-icon {
        width: 32px;
        height: 32px;
    }

    .sidebar::before,
    .logo::after,
    .logo::before,
    .sidebar-footer::before {
        display: none;
    }

    .sidebar-footer {
        width: 100%;
        margin-top: auto;
        padding-top: 0;
    }

    .main-content {
        margin-left: 0;
    }

    .hero {
        width: 100%;
        margin-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }


    #about.page-section {
        padding: 36px 30px;
        gap: 46px;
    }

    .about-cell {
        padding: 26px 22px;
    }

    .about-stat-img {
        width: min(100%, 220px);
        height: 135px;
    }

    .services {
        padding: 36px 30px;
        gap: 46px;
    }

    .services-content {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
        align-items: start;
        max-width: 980px;
        margin: 0 auto;
        grid-template-areas:
            "service-title service-title"
            "service-description service-description"
            "service-tags service-tags"
            "service-image-main service-image-secondary"
            "service-image-main service-intro"
            "service-tour service-tour";
    }

    .services-left,
    .services-right,
    .services-images,
    .services-details,
    .services-image-side {
        display: contents;
    }

    .services-title {
        grid-area: service-title;
        text-align: center;
        margin: 0 auto 6px;
        width: min(92%, 520px);
    }

    .services-images {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-description {
        grid-area: service-description;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .services-tags {
        grid-area: service-tags;
        align-self: center;
        justify-self: stretch;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        align-items: center;
        padding: 2px 0 4px;
    }

    .services-intro-wrap {
        grid-area: service-intro;
        max-width: none;
        padding: 6px 0;
        text-align: center;
        margin-top: 18px;
    }

    .services-tour {
        gap: 8px;
        margin-top: -8px;
    }

    .services-pagination {
        margin-top: 0;
    }

    .service-tag-break {
        display: none;
    }

    .services-image-main {
        grid-area: service-image-main;
        height: clamp(180px, 26vw, 280px);
        align-self: stretch;
    }

    .services-image-main img {
        height: 100%;
    }

    .services-image-secondary {
        grid-area: service-image-secondary;
        height: clamp(180px, 26vw, 280px);
    }

    .services-tour {
        grid-area: service-tour;
        align-self: start;
        justify-self: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .services-pagination {
        justify-content: center;
    }

    .services-left {
        gap: 40px;
        padding-top: 30px;
    }

    .services-title {
        font-size: 38px;
        letter-spacing: -1px;
        margin-top: -12px;
    }

    .services-description {
        font-size: 14px;
        max-width: 100%;
        min-height: 0;
    }

    .services-intro-wrap {
        font-size: 14px;
        max-width: 100%;
    }

    .tour-label {
        font-size: 20px;
    }

    .services-image-secondary {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero {
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    #about.page-section {
        margin-top: clamp(28px, 6vh, 70px);
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    .services {
        margin-top: clamp(40px, 8vh, 90px);
    }

    .services-image-secondary img {
        height: 240px;
    }

    .services-image-main img {
        height: 320px;
    }

    .tour-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .pagination-btn {
        width: 42px;
        height: 42px;
    }

    .pagination-btn i {
        font-size: 12px;
    }

    .pagination-text {
        font-size: 14px;
    }

    .projects-section {
        padding: 36px 30px;
        gap: 46px;
    }

    #about.page-section {
        padding: 36px 30px;
        gap: 46px;
    }

    .section-watermark {
        height: 118px;
    }

    .section-watermark::before {
        top: 10px;
        font-size: 86px;
        opacity: var(--watermark-opacity);
    }

    .projects-header {
        flex-direction: column;
        gap: 20px;
        min-height: 118px;
        padding-bottom: 18px;
    }

    .projects-header::before {
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
        font-size: 86px;
        opacity: var(--watermark-opacity);
    }

    .projects-subtitle-wrap {
        padding: 16px 16px;
        max-width: 100%;
    }

    .projects-heading {
        font-size: 36px;
    }

    .projects-subtitle {
        font-size: 13px;
    }

    .projects-track-wrapper {
        height: 500px;
        --projects-edge-fade-width: 18%;
    }

    .project-card {
        width: 300px;
    }

    .project-card-image {
        height: 220px;
    }

    .project-card-title {
        font-size: 24px;
    }

    .project-card-price {
        font-size: 24px;
    }

    .project-card-specs {
        font-size: 13px;
    }

    #footer-kontakt.page-section {
        height: 60vh;
        min-height: 60vh;
    }

    .contact-wordmark {
        font-size: clamp(44px, 14vw, 180px);
    }

    .hero {
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    #about.page-section {
        margin-top: clamp(28px, 6vh, 70px);
        margin-bottom: clamp(44px, 9vh, 96px);
    }

    .services {
        margin-top: clamp(40px, 8vh, 90px);
    }
}

/* ≤480px - Mobiteli */
@media (max-width: 480px) {
    :root {
        --mobile-header-offset: 70px;
    }

    body {
        padding-top: 70px;
    }

    .mobile-header {
        display: block;
        height: 70px;
    }

    .mobile-logo {
        font-size: 26px;
    }

    .sidebar {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-link {
        font-size: 20px;
        padding: 14px 18px;
    }

    .social-link .social-icon,
    .contact-mini-social-link .social-icon {
        width: 28px;
        height: 28px;
    }

    .hero-title {
        font-size: clamp(26px, 6.5vw, 38px);
        max-width: 90%;
    }

    .hero-subtitle {
        font-size: clamp(12px, 3vw, 15px);
        margin: 12px auto 0;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-card {
        width: clamp(220px, 80vw, 400px);
        height: clamp(140px, 45vw, 250px);
    }

    .hero-scroll-hint {
        left: 12px;
        bottom: 12px;
    }

    .hero-scroll-mouse {
        width: 24px;
        height: 38px;
        border-width: 2px;
    }

    .hero-scroll-dot {
        width: 5px;
        height: 5px;
        top: 9px;
        animation-duration: 900ms;
    }


    #about.page-section {
        padding: 28px 20px;
        gap: 36px;
    }

    .about-top {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-lead,
    .about-lead-strong {
        font-size: 16px;
    }

    .about-bottom {
        flex-direction: column;
        align-items: stretch;
        margin-top: -6px;
    }

    .about-cta {
        min-width: 100%;
        padding: 12px 14px 12px 16px;
    }

    .about-cta-text {
        font-size: 13px;
    }

    .about-cta-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .services {
        padding: 28px 20px;
        gap: 38px;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        overflow-y: visible !important;
    }

    .services-left {
        gap: 32px;
        padding-top: 20px;
    }

    .services-title {
        font-size: 32px;
        letter-spacing: -0.8px;
        margin-top: -8px;
    }

    .services-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .services-intro-wrap {
        font-size: 13px;
    }

    .services-tags {
        width: 100%;
        justify-self: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-tag {
        width: 100%;
        white-space: normal;
        line-height: 1.15;
    }

    .services-image-main {
        height: 260px;
    }

    .services-image-secondary {
        height: 180px;
    }

    .tour-description {
        font-size: 13px;
    }

    .pagination-btn {
        width: 38px;
        height: 38px;
    }

    .pagination-btn i {
        font-size: 12px;
    }

    .pagination-text {
        font-size: 14px;
    }

    .projects-section {
        padding: 28px 20px;
        gap: 38px;
        height: calc(100vh - var(--mobile-header-offset, 0px));
        min-height: calc(100vh - var(--mobile-header-offset, 0px));
        justify-content: center;
    }

    .section-watermark {
        height: 100px;
    }

    .section-watermark::before {
        top: 8px;
        font-size: 72px;
        opacity: var(--watermark-opacity);
    }

    .projects-header {
        min-height: 100px;
        padding-bottom: 16px;
    }

    .projects-header::before {
        font-size: 72px;
        top: 8px;
        opacity: var(--watermark-opacity);
    }

    .projects-heading {
        font-size: 30px;
    }

    .projects-subtitle {
        font-size: 13px;
        text-align: left;
    }

    .projects-track-wrapper {
        height: 360px;
        --projects-edge-fade-width: 12%;
    }

    .projects-carousel {
        --project-card-width: 260px;
        --carousel-arrow-size: 38px;
        --carousel-arrow-gap: 14px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .carousel-arrow i {
        font-size: 12px;
    }

    .project-card {
        width: 260px;
    }

    .project-card-image {
        height: 180px;
    }

    .project-card-content {
        padding: 20px 0 0 0;
        gap: 18px;
    }

    .project-card-title {
        font-size: 20px;
    }

    .project-card-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .project-card-price {
        font-size: 20px;
    }

    .project-card-specs {
        font-size: 12px;
    }

    #footer-kontakt.page-section {
        height: auto;
        min-height: 50vh;
    }

    .contact-shell {
        padding: 16px 16px;
        gap: 16px;
    }

    .contact-panel {
        padding: 18px 16px;
        min-height: 150px;
    }

    .contact-company-name {
        font-size: 14px;
    }

    .contact-left-link {
        font-size: 15px;
    }

    .contact-left-text,
    .contact-left-hours {
        font-size: 14px;
    }

    .contact-info-label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .contact-info-text {
        font-size: 14px;
    }

    .contact-developed-label {
        font-size: 14px;
    }

    .contact-wordmark {
        font-size: clamp(32px, 12vw, 60px);
        letter-spacing: -0.5px;
    }
}

/* ≤360px - Mali mobiteli */
@media (max-width: 360px) {
    :root {
        --mobile-header-offset: 65px;
    }

    body {
        padding-top: 65px;
    }

    .mobile-header {
        display: block;
        height: 65px;
        padding: 0 16px;
    }

    .mobile-logo {
        font-size: 24px;
    }

    .hamburger svg {
        height: 2em;
    }

    .sidebar {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 30px 16px 20px;
    }

    .nav-link {
        font-size: 18px;
        padding: 12px 16px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-link .social-icon,
    .contact-mini-social-link .social-icon {
        width: 26px;
        height: 26px;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 32px);
    }

    .hero-subtitle {
        font-size: 11px;
        margin: 10px auto 0;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-card {
        width: clamp(200px, 85vw, 340px);
        height: clamp(130px, 50vw, 220px);
    }

    .hero-scroll-mouse {
        width: 22px;
        height: 34px;
        border-width: 2px;
    }

    .hero-scroll-dot {
        width: 4px;
        height: 4px;
        top: 8px;
    }


    #about.page-section {
        padding: 24px 16px;
        gap: 30px;
    }

    .about-lead,
    .about-lead-strong {
        font-size: 14px;
    }

    .about-cell {
        padding: 14px 0;
    }

    .about-stat-img {
        height: 160px;
    }

    .about-stat-number {
        font-size: clamp(26px, 7.5vw, 38px);
    }

    .about-stat-title {
        font-size: 14px;
    }

    .about-stat-subtitle {
        font-size: 12px;
    }

    .about-cta {
        padding: 10px 12px 10px 14px;
    }

    .about-cta-text {
        font-size: 12px;
    }

    .about-cta-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .services {
        padding: 24px 16px;
        gap: 32px;
    }

    .services-left {
        gap: 28px;
    }

    .services-title {
        font-size: 28px;
        letter-spacing: -0.6px;
    }

    .services-description,
    .services-intro-wrap,
    .tour-description {
        font-size: 12px;
    }

    .service-tag {
        padding: 7px 12px;
        font-size: 12px;
    }

    .services-image-main {
        height: 220px;
    }

    .services-image-secondary {
        height: 150px;
    }

    .pagination-btn {
        width: 36px;
        height: 36px;
    }

    .pagination-btn i {
        font-size: 11px;
    }

    .pagination-text {
        font-size: 13px;
    }

    .projects-section {
        padding: 24px 16px;
        gap: 32px;
        height: calc(100vh - var(--mobile-header-offset, 0px));
        min-height: calc(100vh - var(--mobile-header-offset, 0px));
        justify-content: center;
    }

    .section-watermark {
        height: 85px;
    }

    .section-watermark::before {
        top: 6px;
        font-size: 60px;
    }

    .projects-header {
        min-height: 85px;
        padding-bottom: 14px;
    }

    .projects-header::before {
        font-size: 60px;
        top: 6px;
    }

    .projects-heading {
        font-size: 26px;
    }

    .projects-subtitle {
        font-size: 12px;
    }

    .projects-track-wrapper {
        height: 320px;
    }

    .projects-carousel {
        --project-card-width: 230px;
        --carousel-arrow-size: 36px;
        --carousel-arrow-gap: 10px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow i {
        font-size: 11px;
    }

    .project-card {
        width: 230px;
    }

    .project-card-image {
        height: 160px;
    }

    .project-card-content {
        padding: 16px 0 0 0;
        gap: 14px;
    }

    .project-card-title {
        font-size: 18px;
    }

    .project-card-description {
        font-size: 12px;
    }

    .project-card-price {
        font-size: 18px;
    }

    .project-card-specs {
        font-size: 11px;
    }

    #footer-kontakt.page-section {
        min-height: 45vh;
    }

    .contact-shell {
        padding: 14px 14px;
        gap: 14px;
    }

    .contact-panel {
        padding: 16px 14px;
        min-height: 130px;
    }

    .contact-left {
        gap: 14px;
    }

    .contact-company-name {
        font-size: 13px;
    }

    .contact-left-link {
        font-size: 14px;
    }

    .contact-left-text,
    .contact-left-hours {
        font-size: 13px;
    }

    .contact-info-label {
        font-size: 9px;
    }

    .contact-info-text,
    .contact-developed-label {
        font-size: 13px;
    }

    .contact-mini-social {
        gap: 10px;
    }

    .contact-wordmark {
        font-size: clamp(28px, 11vw, 50px);
    }
}

@media (min-width: 1025px) and (max-width: 1512px) {
    #footer-kontakt.page-section {
        height: auto !important;
        min-height: auto !important;
    }

    #footer-kontakt.page-section::after {
        height: clamp(80px, 14vh, 150px);
    }

    .contact-shell {
        gap: clamp(14px, 2vh, 20px);
        padding: clamp(22px, 2.8vh, 30px) clamp(24px, 3vw, 40px);
    }

    .contact-panels {
        grid-template-columns: 1.35fr 0.65fr;
        gap: clamp(14px, 1.8vw, 22px);
    }

    .contact-panel {
        min-height: clamp(152px, 21vh, 190px);
        padding: clamp(20px, 2.4vh, 30px) clamp(18px, 2.2vw, 32px);
        display: flex;
        flex-direction: column;
    }

    .contact-panel-info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: clamp(18px, 1.8vw, 28px);
        flex: 1;
        width: 100%;
    }

    .contact-info-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        flex: 0 0 auto;
    }

    .contact-info-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        flex: 1;
        min-height: 100%;
        text-align: right;
    }

    .contact-developed {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: clamp(5px, 0.7vh, 8px);
    }

    .contact-developed-logo {
        height: clamp(64px, 6.8vh, 78px);
        width: auto;
    }

    .contact-panel-info .contact-developed-link {
        display: inline-flex;
        align-items: flex-start;
        height: clamp(44px, 4.8vh, 58px);
        overflow: visible;
    }

    .contact-info-text,
    .contact-developed-label,
    .contact-left-text,
    .contact-left-hours,
    .contact-left-link,
    .contact-company-name {
        font-size: clamp(13px, 0.95vw, 15px);
        line-height: 1.35;
    }

    .contact-policy-links {
        margin-top: auto;
        gap: 4px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .contact-policy-link {
        font-size: clamp(11px, 0.76vw, 12px);
        line-height: 1.2;
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
    }

    .contact-panel-info .contact-developed-label {
        font-size: clamp(12px, 0.88vw, 14px);
        line-height: 1.25;
    }

    .contact-panel-info .contact-info-text {
        font-size: clamp(13px, 0.95vw, 15px);
        line-height: 1.24;
    }

    .contact-wordmark {
        margin-top: clamp(24px, 3vh, 34px);
        padding-left: 0;
        font-size: clamp(74px, 13vw, 168px);
        letter-spacing: -3px;
        line-height: 0.88;
        color: color-mix(in srgb, var(--text-white) 72%, transparent);
        opacity: 0.42;
    }
}

.logo::after {
    bottom: -8px;
}

.logo::before {
    bottom: -13px;
}

body.service-page-animate .project-detail-slider {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    cursor: grab;
    border-radius: 20px;
    background: transparent;
    border: none;
    box-sizing: border-box;
    isolation: isolate;
    width: min(100%, 1180px);
    height: clamp(600px, 72vw, 760px);
    padding-bottom: 46px;
    --project-slider-edge-fade-width: 21%;
}

 body.service-page-animate .project-detail-slider::before,
 body.service-page-animate .project-detail-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 46px;
    width: var(--project-slider-edge-fade-width);
    background: var(--primary-bg);
    pointer-events: none;
    z-index: 3;
 }

 body.service-page-animate .project-detail-slider::before {
    left: 0;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0) 100%);
 }

 body.service-page-animate .project-detail-slider::after {
    right: 0;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.14) 78%, rgba(0, 0, 0, 0) 100%);
 }

 body.service-page-animate .project-slider-track {
    display: flex;
    height: calc(100% - 46px);
    transition: transform 0.5s ease-out;
    width: 100%;
    align-items: center;
 }

 body.service-page-animate .project-slide {
    min-width: 60%;
    height: 100%;
    position: relative;
    padding: 0 10px;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    opacity: 0.72;
    transform: scale(0.92);
    filter: saturate(0.9);
 }

 body.service-page-animate .project-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: none;
 }

 body.service-page-animate .project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.22);
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    display: block;
 }

 body.service-page-animate .slider-pagination {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
 }

 body.service-page-animate .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 240ms ease, background 240ms ease;
 }

 body.service-page-animate .slider-dot.active {
    background: var(--accent-warm);
    transform: scale(1.35);
    box-shadow: 0 0 12px rgba(184, 151, 112, 0.55);
 }

 @media (max-width: 900px) {
    body.service-page-animate .project-detail-slider {
        --project-slider-edge-fade-width: 18%;
    }

    body.service-page-animate .project-slide {
        min-width: 64%;
        padding: 0 8px;
    }
 }

 @media (max-width: 640px) {
    body.service-page-animate .project-detail-slider {
        width: 100%;
        height: auto;
        aspect-ratio: 668 / 716;
        --project-slider-edge-fade-width: 14%;
    }

    body.service-page-animate .project-slide {
        min-width: 78%;
        padding: 0 6px;
    }
 }

/* ─── Adaptacija kupaone sekcija ───────────────────────────────────────────── */

.sp-kupaona {
    margin-top: 80px;
    margin-bottom: 140px;
    padding: 0;
}

.sp-kupaona-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 60px;
    align-items: end;
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-kupaona-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-warm);
    margin-bottom: 16px;
}

.sp-kupaona-label::before {
    display: none;
}

.sp-kupaona-title {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0;
}

.sp-kupaona-header p {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
    letter-spacing: -0.2px;
    padding-bottom: 4px;
}

/* Masonry-style photo grid */
.sp-kupaona-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 260px 260px;
    gap: 8px;
}

.sp-kupaona-grid-item {
    overflow: hidden;
    border-radius: 6px;
    background: #111;
    position: relative;
}

.sp-kupaona-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp-kupaona-grid-item:hover img {
    transform: scale(1.04);
}

/* Layout: large left + 2 right on row 1, 3 equal on row 2 */
.sp-kupaona-grid-item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.sp-kupaona-grid-item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
}

.sp-kupaona-grid-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.sp-kupaona-grid-item:nth-child(4) {
    grid-column: 6 / 8;
    grid-row: 2 / 3;
}

.sp-kupaona-grid-item:nth-child(5) {
    grid-column: 8 / 10;
    grid-row: 2 / 3;
}

.sp-kupaona-grid-item:nth-child(6) {
    grid-column: 10 / 13;
    grid-row: 2 / 3;
}

/* Feature highlights bar */
.sp-kupaona-features {
    display: grid;
    grid-template-columns: repeat(var(--feat-cols, 5), 1fr);
    gap: 0;
    margin-top: 48px;
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    counter-reset: kup-feat;
}

.sp-kupaona-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 28px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
}

.sp-kupaona-feature:first-child {
    padding-left: 0;
}

.sp-kupaona-feature:last-child {
    border-right: none;
}

.sp-kupaona-feature i {
    font-size: 0;
    width: auto;
    height: auto;
    display: block;
    background: none;
    border-radius: 0;
}

.sp-kupaona-feature i::before {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-warm);
    line-height: 1;
    counter-increment: kup-feat;
}

.sp-kupaona-feature:nth-child(1) i::before { content: '01'; }
.sp-kupaona-feature:nth-child(2) i::before { content: '02'; }
.sp-kupaona-feature:nth-child(3) i::before { content: '03'; }
.sp-kupaona-feature:nth-child(4) i::before { content: '04'; }
.sp-kupaona-feature:nth-child(5) i::before { content: '05'; }
.sp-kupaona-feature:nth-child(6) i::before { content: '06'; }

.sp-kupaona-feature span {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.3px;
    line-height: 1.45;
}

.sp-kupaona-feature:hover span {
    color: var(--accent-warm);
}

/* Responsive */
@media (max-width: 900px) {
    .sp-kupaona-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sp-kupaona-title {
        font-size: clamp(36px, 8vw, 48px);
    }

    .sp-kupaona-grid {
        grid-template-rows: 220px 220px 220px;
    }
    .sp-kupaona-grid-item:nth-child(1) {
        grid-column: 1 / 7;
        grid-row: 1 / 2;
    }
    .sp-kupaona-grid-item:nth-child(2) {
        grid-column: 7 / 13;
        grid-row: 1 / 2;
    }
    .sp-kupaona-grid-item:nth-child(3) {
        grid-column: 1 / 7;
        grid-row: 2 / 3;
    }
    .sp-kupaona-grid-item:nth-child(4) {
        grid-column: 7 / 13;
        grid-row: 2 / 3;
    }
    .sp-kupaona-grid-item:nth-child(5) {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
    }
    .sp-kupaona-grid-item:nth-child(6) {
        grid-column: 7 / 13;
        grid-row: 3 / 4;
    }

    .sp-kupaona-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 0;
    }

    .sp-kupaona-feature {
        padding: 8px 20px;
    }

    .sp-kupaona-feature:nth-child(3),
    .sp-kupaona-feature:last-child {
        border-right: none;
    }

    .sp-kupaona-feature:nth-child(4) {
        padding-left: 0;
    }
}

@media (max-width: 600px) {
    .sp-kupaona-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 180px 180px;
        gap: 6px;
    }
    .sp-kupaona-grid-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .sp-kupaona-grid-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .sp-kupaona-grid-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    .sp-kupaona-grid-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    .sp-kupaona-grid-item:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    .sp-kupaona-grid-item:nth-child(6) {
        display: none;
    }
    .sp-kupaona {
        margin-top: 48px;
    }

    .sp-kupaona-header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
        padding-bottom: 28px;
    }

    .sp-kupaona-label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .sp-kupaona-title {
        font-size: clamp(36px, 8vw, 48px);
    }

    .sp-kupaona-header p {
        font-size: 16px;
    }

    .sp-kupaona-features {
        grid-template-columns: 1fr 1fr;
        gap: 24px 0;
        padding: 28px 0;
        margin-top: 32px;
    }

    .sp-kupaona-feature {
        padding: 8px 16px;
        border-right: none;
        align-items: center;
        text-align: center;
    }

    .sp-kupaona-feature:first-child {
        padding-left: 16px;
    }

    .sp-kupaona-feature:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .sp-kupaona-feature i::before {
        font-size: 26px;
    }

    .sp-kupaona-feature span {
        font-size: 14px;
    }
}

/* =============================================
   NEW PREMIUM HERO DESIGN FOR SERVICE SUBPAGES
   ============================================= */

.sp-hero-new {
    position: relative;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.sp-hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    background: var(--primary-bg);
    z-index: 2;
}

.sp-hero-right {
    position: relative;
    overflow: hidden;
}

.sp-hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.sp-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-hero-top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.sp-hero-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sp-hero-back-link:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(-4px);
}

.sp-hero-back-link i {
    font-size: 12px;
}

.sp-hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
}

.sp-hero-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.sp-hero-title-new {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.sp-hero-desc-new {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 480px;
}

.sp-hero-services-nav {
    margin-top: 50px;
}

.sp-hero-services-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sp-hero-services-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

.sp-hero-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.sp-hero-service-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.sp-hero-service-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sp-hero-service-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sp-hero-service-link:hover::before,
.sp-hero-service-link:hover::after {
    opacity: 1;
}

.sp-hero-service-link:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.sp-hero-service-link.active {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.sp-hero-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--text-white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.sp-hero-service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sp-hero-service-link:hover .sp-hero-service-icon {
    transform: scale(1.08) rotate(-5deg);
}

.sp-hero-service-link:hover .sp-hero-service-icon::before {
    opacity: 1;
}

.sp-hero-service-text {
    flex: 1;
}

.sp-hero-service-name {
    font-size: 17px;
    font-weight: 650;
    color: var(--text-white);
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.sp-hero-service-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.sp-hero-service-arrow {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--text-gray);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-hero-service-link:hover .sp-hero-service-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transform: translateX(4px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .sp-hero-new {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }

    .sp-hero-left {
        padding: 60px 40px 80px;
        min-height: 100vh;
    }

    .sp-hero-right {
        min-height: 400px;
        order: -1;
    }

    .sp-hero-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .sp-hero-new {
        height: auto;
        min-height: auto;
    }

    .sp-hero-left {
        padding: 32px 24px 40px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .sp-hero-top-nav {
        margin-bottom: 32px;
    }

    .sp-hero-main-content {
        margin-bottom: 0;
    }

    .sp-hero-title-new {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .sp-hero-desc-new {
        font-size: 16px;
        margin-bottom: 0;
    }

    .sp-hero-services-nav {
        margin-top: 36px;
    }

    .sp-hero-services-label {
        margin-bottom: 20px;
    }

    .sp-hero-right {
        min-height: 300px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .sp-hero-new {
        min-height: auto;
    }

    .sp-hero-left {
        padding: 28px 20px 36px;
        min-height: auto;
    }

    .sp-hero-top-nav {
        margin-bottom: 28px;
    }

    .sp-hero-title-new {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .sp-hero-desc-new {
        font-size: 15px;
        margin-bottom: 0;
    }

    .sp-hero-services-nav {
        margin-top: 32px;
    }

    .sp-hero-services-label {
        margin-bottom: 16px;
        font-size: 10px;
    }

    .sp-hero-services-grid {
        gap: 12px;
    }

    .sp-hero-service-link {
        padding: 16px 18px;
    }

    .sp-hero-service-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .sp-hero-service-name {
        font-size: 14px;
    }

    .sp-hero-service-desc {
        font-size: 12px;
    }

    .sp-hero-service-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .sp-hero-right {
        min-height: 280px;
    }
}
