
        :root {
            --accent-green: #2b6d3c;
            --accent-green-hover: #266035;
            --text-main: #363636;
            --text-secondary: #6b7280;
            --bg-white: #ffffff;
            --bg-soft: #f4f6f8;
            --border: #e8edf1;
            --radius-card: 24px;
            --radius-button: 12px;
            --container: 1280px;
            --transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html, body { overflow-x: hidden; }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background: var(--bg-white);
            line-height: 1.6;
        }
        body.lightbox-open {
            overflow: hidden;
            overscroll-behavior: none;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: var(--text-main); }
        p { color: var(--text-secondary); }
        .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
        .header.header--hidden {
            transform: translateX(-50%) translateY(-145%) translateZ(0);
            opacity: 0;
            pointer-events: none;
        }

        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 16px 28px; border: none; border-radius: var(--radius-button);
            background: var(--accent-green); color: #fff; text-decoration: none;
            font-weight: 700; cursor: pointer; transition: var(--transition);
        }
        .btn:hover { background: var(--accent-green-hover); transform: translateY(-2px); }
        .btn--outline { background: transparent; border: 1px solid var(--accent-green); color: var(--accent-green); }
        .btn--outline:hover { background: var(--accent-green); color: #fff; }

        .breadcrumbs { padding: 138px 0 16px; }
        .breadcrumbs ul { list-style: none; display: flex; gap: 10px; font-size: 0.92rem; color: var(--text-secondary); flex-wrap: wrap; }
        .breadcrumbs li::after { content: '/'; margin-left: 10px; opacity: 0.5; }
        .breadcrumbs li:last-child::after { content: ''; }
        .breadcrumbs a { color: inherit; text-decoration: none; }
        .project-title { padding: 26px 0 58px; }
        .project-title h1 {
            font-size: clamp(2rem, 3.1rem, 3.1rem);
            line-height: 1.12;
            letter-spacing: 0;
            max-width: min(100%, 1120px);
            overflow-wrap: anywhere;
            word-break: normal;
            background: linear-gradient(90deg, #132a3f 0%, #2f5f88 54%, #84b0d1 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .project-hero { padding: 0 0 48px; }
        .project-hero__media {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid var(--border);
            aspect-ratio: 16 / 6;
            box-shadow: 0 24px 56px rgba(16, 26, 36, 0.18);
            background: #17232d;
        }
        .project-hero__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(1.12) contrast(1.03);
            transform: scale(1.02);
            transition: transform .7s ease, filter .7s ease;
        }
        .project-hero__media::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(80% 120% at 10% 0%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 32%, rgba(0, 0, 0, 0.25) 100%);
            z-index: 2;
            pointer-events: none;
        }
        .hero-tags {
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 24px;
            z-index: 3;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity .28s ease, transform .28s ease;
            pointer-events: none;
        }
        .hero-tags span {
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: rgba(16, 31, 27, 0.55);
            backdrop-filter: blur(10px);
            color: #fff;
            border-radius: 999px;
            padding: 8px 12px;
            font-size: 0.86rem;
            font-weight: 600;
        }
        .project-hero__media:hover img {
            transform: scale(1.045);
            filter: saturate(1.15) contrast(1.05);
        }
        .project-hero__media:hover .hero-tags {
            opacity: 1;
            transform: translateY(0);
        }

        .project-hero--full {
            padding: 0 0 64px;
        }
        .project-hero--full .container {
            max-width: none;
            padding: 0;
        }
        .project-hero--full .project-hero__media {
            min-height: clamp(620px, 76vh, 820px);
            aspect-ratio: auto;
            border-radius: 0;
            border: none;
            box-shadow: none;
        }
        .project-hero--full .project-hero__media img {
            position: absolute;
            inset: 0;
            transform: scale(1.01);
        }
        .project-hero--full .project-hero__media::before {
            background:
                linear-gradient(90deg, rgba(7, 18, 24, 0.78) 0%, rgba(7, 18, 24, 0.46) 38%, rgba(7, 18, 24, 0.08) 72%),
                linear-gradient(180deg, rgba(7, 18, 24, 0.12) 0%, rgba(7, 18, 24, 0.3) 58%, rgba(7, 18, 24, 0.78) 100%);
        }
        .project-hero--full .project-hero__content {
            position: absolute;
            left: max(32px, calc((100vw - var(--container)) / 2 + 24px));
            right: max(32px, calc((100vw - var(--container)) / 2 + 24px));
            bottom: clamp(42px, 8vh, 86px);
            z-index: 3;
            max-width: 900px;
            color: #fff;
        }
        .project-hero--full [data-project-heading] {
            max-width: 860px;
            font-size: clamp(2.8rem, 6vw, 6.25rem);
            line-height: 0.98;
            letter-spacing: 0;
            color: #fff;
            text-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
            margin-bottom: 20px;
        }
        .project-hero__reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .34s ease, transform .34s ease;
            pointer-events: none;
        }
        .project-hero--full .project-hero__media:hover .project-hero__reveal,
        .project-hero--full .project-hero__media.is-revealed .project-hero__reveal {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .project-hero--full .hero-tags {
            position: static;
            opacity: 1;
            transform: none;
            pointer-events: auto;
            max-width: 760px;
        }
        .project-hero--full .hero-tags span {
            background: rgba(12, 31, 27, 0.52);
            border-color: rgba(255, 255, 255, 0.26);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
        }
        .project-hero--full:hover img {
            transform: scale(1.035);
        }

        .project-main { background: var(--bg-soft); padding: 56px 0 90px; }
        .sides-visual { padding: 22px 0 48px; overflow: hidden; }
        .sides-visual__head {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
            margin-bottom: 16px;
        }
        .sides-visual__head h2 {
            font-size: clamp(1.5rem, 2.6vw, 2.3rem);
            letter-spacing: -0.01em;
        }
        .sides-nav {
            display: inline-flex;
            gap: 8px;
            align-items: center;
        }
        .sides-nav button {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid #d7e0e5;
            background: #fff;
            color: #1f3444;
            cursor: pointer;
            font-size: 1.2rem;
            line-height: 1;
            transition: .2s;
        }
        .sides-nav button:hover {
            background: var(--accent-green);
            color: #fff;
            border-color: var(--accent-green);
        }
        .sides-track {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            scroll-behavior: smooth;
            padding: 4px 0 10px;
        }
        .sides-track::-webkit-scrollbar { display: none; }
        .sides-row {
            display: flex;
            gap: 18px;
            padding-right: 16px;
        }
        .side-card {
            flex: 0 0 min(84vw, 960px);
            scroll-snap-align: start;
            border-radius: 26px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: #fff;
            box-shadow: 0 18px 44px rgba(12, 25, 36, 0.12);
            position: relative;
            cursor: zoom-in;
        }
        .side-card img {
            width: 100%;
            aspect-ratio: 16 / 8;
            object-fit: cover;
            display: block;
            transition: transform .7s ease;
        }
        .side-card:hover img { transform: scale(1.03); }
        .side-card__meta {
            position: absolute;
            left: 14px;
            bottom: 14px;
            padding: 8px 12px;
            border-radius: 999px;
            color: #fff;
            background: rgba(16, 31, 27, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.34);
            backdrop-filter: blur(8px);
            font-size: .82rem;
            font-weight: 600;
            letter-spacing: .01em;
        }
        .sides-auto {
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .sides-auto__dots {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .sides-auto__dot {
            width: 8px;
            height: 8px;
            border: none;
            background: #e5e7eb;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            padding: 0;
        }
        .sides-auto__dot.is-active {
            width: 64px;
            background: #e5e7eb;
            border-radius: 10px;
        }
        .sides-auto__dot::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: var(--accent-green);
            border-radius: inherit;
            transition: none;
            z-index: 1;
        }
        .sides-visual.autoplay-on .sides-auto__dot.is-active::after {
            width: 100%;
            transition: width 6s linear;
        }
        .sides-auto__toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f4f5f6;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .22s ease;
            color: #1d1d1f;
            margin-left: 8px;
        }
        .sides-auto__toggle:hover {
            background: #e5e7eb;
            transform: scale(1.1);
        }
        .sides-auto__toggle svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }
        @media (max-width: 768px) {
            .sides-auto {
                margin-top: 8px;
                gap: 8px;
            }
            .sides-auto__dot.is-active { width: 48px; }
        }
        .gallery-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(7, 12, 18, 0.92);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .32s ease, visibility .32s ease;
            z-index: 4000;
            padding: 36px 24px;
        }
        .gallery-lightbox.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .gallery-lightbox__viewport {
            width: min(94vw, 1600px);
            height: min(90vh, 980px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .gallery-lightbox__img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
        }
        .gallery-lightbox__close,
        .gallery-lightbox__nav {
            border: 1px solid rgba(255, 255, 255, 0.28);
            background: rgba(8, 18, 30, 0.52);
            color: #fff;
            cursor: pointer;
            transition: .22s ease;
            backdrop-filter: blur(12px) saturate(140%);
            -webkit-backdrop-filter: blur(12px) saturate(140%);
        }
        .gallery-lightbox__close {
            position: absolute;
            top: 22px;
            right: 22px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 1.6rem;
            line-height: 1;
            z-index: 2;
        }
        .gallery-lightbox__close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }
        .gallery-lightbox__nav:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(calc(-50% - 1px));
        }
        .gallery-lightbox__nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            font-size: 1.9rem;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 24px rgba(3, 9, 17, 0.34);
            z-index: 2;
        }
        .gallery-lightbox__nav--prev { left: 22px; }
        .gallery-lightbox__nav--next { right: 22px; }
        .gallery-lightbox__caption {
            position: absolute;
            left: 50%;
            bottom: 18px;
            transform: translateX(-50%);
            color: #fff;
            background: rgba(12, 20, 29, 0.62);
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 999px;
            padding: 10px 16px;
            font-size: 0.92rem;
            font-weight: 600;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            max-width: calc(100% - 140px);
            text-align: center;
        }
        @media (max-width: 1024px) {
            .gallery-lightbox {
                padding: max(12px, env(safe-area-inset-top)) 10px max(12px, env(safe-area-inset-bottom));
                align-items: center;
                justify-content: center;
            }
            .gallery-lightbox.active {
                overscroll-behavior: contain;
                touch-action: pan-x pan-y pinch-zoom;
            }
            .gallery-lightbox__viewport {
                width: 100%;
                height: calc(100dvh - 24px);
                overflow: auto;
                overscroll-behavior: contain;
                touch-action: pan-x pan-y pinch-zoom;
            }
            .gallery-lightbox__img {
                max-width: 100%;
                max-height: calc(100dvh - 96px);
            }
            .gallery-lightbox__close {
                top: 12px;
                right: 12px;
                width: 42px;
                height: 42px;
            }
            .gallery-lightbox__nav {
                width: 44px;
                height: 44px;
                font-size: 1.6rem;
                top: auto;
                bottom: 52px;
                transform: none;
                z-index: 3;
                background: rgba(4, 12, 20, 0.72);
                border-color: rgba(255, 255, 255, 0.34);
            }
            .gallery-lightbox__nav:hover {
                transform: translateY(-1px);
            }
            .gallery-lightbox__nav--prev {
                left: calc(50% - 52px);
                right: auto;
            }
            .gallery-lightbox__nav--next {
                left: calc(50% + 8px);
                right: auto;
            }
            .gallery-lightbox__caption {
                display: none;
            }
        }

        .project-description-section {
            background: var(--bg-soft);
            padding: 0 0 78px;
        }
        .project-messenger-section {
            background: var(--bg-soft);
            padding: 0 0 56px;
        }
        .project-messenger-card {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 32px;
            align-items: center;
            min-height: 188px;
            overflow: hidden;
            padding: clamp(28px, 4vw, 42px);
            border: 1px solid rgba(43, 109, 60, 0.16);
            border-radius: var(--radius-card);
            background: linear-gradient(118deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 247, 0.94)), #fff;
            box-shadow: 0 18px 48px rgba(20, 35, 48, 0.08);
        }
        .project-messenger-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-green), #8dbb9b);
        }
        .project-messenger-card__eyebrow {
            display: inline-flex;
            margin-bottom: 12px;
            color: var(--accent-green);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .project-messenger-card h2 {
            margin: 0;
            color: var(--text-main);
            font-size: clamp(1.5rem, 2.5vw, 2.1rem);
            letter-spacing: 0;
        }
        .project-messenger-card p {
            max-width: 610px;
            margin: 12px 0 0;
            color: #607080;
            font-size: 1rem;
            line-height: 1.6;
        }
        .project-messenger-actions {
            display: flex;
            flex-wrap: wrap;
            column-gap: 40px;
            row-gap: 12px;
            justify-content: flex-end;
        }
        .project-messenger-action {
            --magnet-x: 0px;
            --magnet-y: 0px;
            min-height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 20px;
            border: 1px solid rgba(45, 64, 55, 0.1);
            border-radius: 13px;
            background: rgba(255, 255, 255, 0.76);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
            color: var(--accent-green);
            font-weight: 800;
            text-decoration: none;
            transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
            transition: transform 0.12s cubic-bezier(.25, 1, .5, 1), background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
        }
        .project-messenger-action > * {
            transition: transform 0.12s cubic-bezier(.25, 1, .5, 1);
        }
        .project-messenger-action svg {
            width: 20px;
            height: 20px;
            flex: 0 0 auto;
        }
        .project-messenger-action img {
            width: 22px;
            height: 22px;
            flex: 0 0 auto;
            border-radius: 7px;
        }
        .project-messenger-action--telegram {
            color: #0088cc;
            border: 2px solid rgba(0, 136, 204, 0.42);
            background: rgba(0, 136, 204, 0.045);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(0, 136, 204, 0.04);
        }
        .project-messenger-action--max {
            color: #5b38f0;
            border: 2px solid rgba(91, 56, 240, 0.42);
            background: linear-gradient(135deg, rgba(50, 196, 245, 0.1), rgba(126, 45, 226, 0.09));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 0 3px rgba(91, 56, 240, 0.04);
        }
        @media (hover: hover) and (pointer: fine) {
            .project-messenger-action:hover,
            .project-messenger-action:focus-visible {
                transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 2px), 0);
                outline: none;
            }
            .project-messenger-action--telegram:hover,
            .project-messenger-action--telegram:focus-visible {
                background: #0088cc;
                border-color: #0088cc;
                color: #fff;
                box-shadow: 0 12px 26px rgba(0, 136, 204, 0.18);
            }
            .project-messenger-action--max:hover,
            .project-messenger-action--max:focus-visible {
                background: linear-gradient(135deg, #34c8f4, #4454f4 52%, #8d2ee7);
                border-color: rgba(91, 56, 240, 0.34);
                color: #fff;
                box-shadow: 0 12px 26px rgba(91, 56, 240, 0.18);
            }
        }
        .project-messenger-action:focus-visible {
            outline: 3px solid rgba(43, 109, 60, 0.5);
            outline-offset: 3px;
        }
        .project-messenger-action:active {
            transform: translate3d(var(--magnet-x), var(--magnet-y), 0) scale(0.985);
        }
        @media (max-width: 1080px) {
            .project-messenger-card { grid-template-columns: 1fr; }
            .project-messenger-actions { justify-content: flex-start; }
        }
        @media (max-width: 680px) {
            .project-messenger-section { padding-bottom: 40px; }
            .project-messenger-card { gap: 24px; padding: 28px 24px; border-radius: 20px; }
            .project-messenger-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
            .project-messenger-action { width: 100%; }
        }
        @media (prefers-reduced-motion: reduce) {
            .project-messenger-action { transition: none; }
        }
        .project-description-panel {
            position: relative;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: clamp(28px, 4vw, 54px);
            box-shadow: 0 22px 70px rgba(20, 35, 48, 0.08);
        }
        .project-description-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-green), #8dbb9b);
        }
        .project-description-panel__eyebrow {
            display: inline-flex;
            margin-bottom: 14px;
            color: var(--accent-green);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .project-description-panel h2 {
            margin-bottom: 22px;
            font-size: clamp(1.7rem, 3vw, 2.5rem);
            letter-spacing: 0;
        }
        .project-description {
            max-width: 980px;
            color: #334155;
            font-size: 1.05rem;
            line-height: 1.78;
        }
        .project-description-panel.is-collapsible .project-description {
            position: relative;
            max-height: 430px;
            overflow: hidden;
        }
        .project-description-panel.is-expanded .project-description {
            max-height: none;
        }
        .project-description-panel.is-collapsible:not(.is-expanded)::after {
            content: '';
            position: absolute;
            left: clamp(28px, 4vw, 54px);
            right: clamp(28px, 4vw, 54px);
            bottom: 92px;
            height: 120px;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(255,255,255,0), #fff 78%);
        }
        .project-description-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 28px;
            min-height: 50px;
            padding: 13px 24px;
            border: 1px solid rgba(43, 109, 60, 0.18);
            border-radius: 999px;
            background: rgba(43, 109, 60, 0.08);
            color: var(--accent-green);
            font-family: inherit;
            font-size: 0.98rem;
            font-weight: 800;
            cursor: pointer;
            transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
            position: relative;
            z-index: 2;
        }
        .project-description-panel.is-collapsible .project-description-toggle {
            display: inline-flex;
        }
        .project-description-toggle:hover {
            background: var(--accent-green);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(43, 109, 60, 0.18);
        }
        .project-description-toggle__icon {
            width: 18px;
            height: 18px;
            transition: transform .22s ease;
        }
        .project-description-panel.is-expanded .project-description-toggle__icon {
            transform: rotate(180deg);
        }
        .project-description h2,
        .project-description h3 {
            margin: 30px 0 12px;
            font-size: clamp(1.2rem, 2vw, 1.55rem);
            letter-spacing: 0;
        }
        .project-description h2:first-child,
        .project-description h3:first-child {
            margin-top: 0;
        }
        .project-description p + p {
            margin-top: 14px;
        }
        .project-description ul {
            margin: 14px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 9px;
        }
        .project-description li {
            position: relative;
            padding-left: 22px;
        }
        .project-description li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.75em;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-green);
        }

        .project-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 26px; align-items: stretch; }
        .content-col { display: flex; flex-direction: column; gap: 18px; min-height: 100%; }
        .panel {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px;
        }
        .panel h2 { font-size: 1.65rem; margin-bottom: 12px; }
        .panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
        .panel-head h2 { margin-bottom: 0; }
        .project-article { color: var(--accent-green); font-weight: 800; font-size: 1rem; white-space: nowrap; }
        .content-col .panel:last-child { flex: 1; }
        .stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
        .stat { border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; background: #fbfcfd; min-width: 0; min-height: 86px; display: flex; flex-direction: column; justify-content: center; }
        .stat small { display: block; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; color: #6c7d8b; font-weight: 700; }
        .stat strong { display: block; margin-top: 7px; font-size: 1.12rem; color: #213342; line-height: 1.22; }

        .gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
        .gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); }

        .plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
        .plan-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }

        .plan-card.is-lightbox-only {
            display: none;
        }
        .plan-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; cursor: zoom-in; }
        .plan-card__body { padding: 12px; }
        .plan-card__body h3 { font-size: 1.03rem; margin-bottom: 4px; }

        .side-col { display: flex; flex-direction: column; gap: 18px; align-self: stretch; }
        .sticky-card {
            position: sticky;
            top: 104px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .sticky-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
        .sticky-card ul { padding-left: 18px; color: #475a6b; margin: 10px 0 18px; }
        .sticky-card li + li { margin-top: 8px; }
        .sticky-card .btn { width: 100%; }
        .package-title {
            font-size: 1.9rem;
            line-height: 1.28;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: #6f6b5f;
            text-align: center;
            margin-bottom: 18px;
            font-weight: 800;
        }
        .package-list {
            list-style: none;
            margin: 0 0 20px;
            padding: 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            flex: 1;
        }
        .package-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 2px;
            border-top: 1px solid var(--border);
            color: #3f4952;
            font-size: 1.02rem;
        }
        .package-list li:first-child { border-top: none; }
        .package-list li::before {
            content: '✓';
            color: #005f5f;
            font-weight: 700;
            width: 18px;
            flex: 0 0 18px;
            text-align: center;
        }
        .package-list li.is-excluded {
            color: #99a2ab;
            text-decoration: line-through;
            text-decoration-thickness: 1px;
            text-decoration-color: rgba(120, 130, 140, 0.7);
        }
        .package-list li.is-excluded::before {
            color: #b7bfc7;
        }
        .package-price-line {
            margin-top: auto;
            border: 0;
            background: #2c5e3d;
            color: #fff;
            border-radius: 24px;
            padding: 32px;
            text-align: center;
            width: 100%;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 22px rgba(23, 32, 27, 0.12);
            transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1), background-color .3s cubic-bezier(.4, 0, .2, 1);
        }
        .package-price-line:focus-visible {
            outline: 3px solid rgba(43, 109, 60, 0.5);
            outline-offset: 3px;
        }
        .package-price-kicker {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.125rem;
            font-weight: 500;
            line-height: 1.25;
            margin-bottom: 4px;
        }
        .package-price-value {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 8px;
            font-size: 1.875rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: 0.01em;
            margin-bottom: 24px;
        }
        .package-price-prefix {
            font-size: 1em;
            font-weight: 700;
        }
        .package-price-cta {
            min-height: 44px;
            width: 100%;
            min-height: 56px;
            padding: 16px 24px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.15;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .package-price-cta__copy {
            position: relative;
            display: grid;
            place-items: center;
            width: 100%;
            min-height: 1.2em;
        }
        .package-price-cta__default,
        .package-price-cta__hover {
            grid-area: 1 / 1;
            transition: opacity .3s ease;
        }
        .package-price-cta__hover {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            opacity: 0;
            pointer-events: none;
        }
        .package-price-line:hover {
            transform: translateY(-5px);
            background-color: #346b46;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        @media (hover: hover) and (pointer: fine) {
            .package-price-line:hover .package-price-cta__default {
                opacity: 0;
            }
            .package-price-line:hover .package-price-cta__hover {
                opacity: 1;
            }
        }
        .package-price-line:active {
            transform: translateY(0) scale(0.99);
        }
        .package-price-line .price-amount {
            font: inherit;
        }
        @media (prefers-reduced-motion: reduce) {
            .package-price-line,
            .package-price-cta__default,
            .package-price-cta__hover {
                transition: none;
            }
        }
        @media (max-width: 680px) {
            .package-price-line {
                padding: 24px 20px;
            }
            .package-price-value {
                font-size: 1.72rem;
            }
            .package-price-cta {
                min-height: 52px;
                padding: 14px 18px;
                font-size: 1rem;
            }
        }
        .section {
            padding: 100px 0;
        }
        .section--light {
            background: var(--bg-soft);
        }
        .p-tag {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            color: #fff;
            background: var(--accent-green);
        }
        .expert-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }
        .expert-list {
            list-style: none;
            padding: 0;
            margin: 40px 0;
        }
        .expert-list li {
            padding: 18px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 16px;
            font-weight: 500;
            font-size: 1.05rem;
        }
        .expert-list li::before {
            content: '';
            width: 10px;
            height: 10px;
            background: var(--accent-green);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
            flex-shrink: 0;
        }
        .expert-actions {
            display: flex;
            gap: 32px;
            align-items: center;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        .expert-vis-card {
            position: relative;
            border-radius: 40px;
            overflow: hidden;
            height: 640px;
            box-shadow: 0 60px 120px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .expert-vis-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1.5s ease;
        }
        .expert-vis-card:hover img {
            transform: scale(1.05);
        }
        .expert-vis-overlay {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(25px);
            padding: 40px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        .section--stories {
            background: #fff;
            padding: 100px 0;
            overflow: hidden;
        }
        .section--stories h2 {
            font-size: 2.8rem;
            margin-bottom: 40px;
            line-height: 1.2;
            text-align: center;
            font-weight: 700;
        }
        .stories-title {
            font-size: clamp(1.8rem, 3vw, 2.45rem);
            margin-bottom: 24px;
            color: #20384f;
        }
        .stories-track {
            overflow-x: auto;
            padding: 40px 0;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            cursor: grab;
            scroll-behavior: smooth;
        }
        .stories-track.no-smooth { scroll-behavior: auto !important; }
        .stories-track.no-snap { scroll-snap-type: none !important; }
        .stories-track.is-dragging {
            scroll-snap-type: none;
            cursor: grabbing;
            scroll-behavior: auto;
        }
        .stories-track::-webkit-scrollbar { display: none; }
        .stories-wrapper {
            display: flex;
            gap: 24px;
            padding: 0 max(20px, calc((100vw - 1200px) / 2));
        }
        .story-card {
            flex: 0 0 440px;
            height: 480px;
            scroll-snap-align: center;
            scroll-snap-stop: always;
            display: flex;
            flex-direction: column;
            user-select: none;
            position: relative;
        }
        .story-card-inner {
            width: 100%;
            height: 100%;
            border-radius: 32px;
            padding: 48px;
            background: #f9f9fb;
            transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.2, 1, 0.3, 1), background 0.5s ease, box-shadow 0.5s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.03);
            opacity: 0.7;
            transform: scale(0.97) translateZ(0);
            will-change: transform, opacity;
            backface-visibility: hidden;
        }
        .story-card.active .story-card-inner {
            opacity: 1;
            transform: scale(1.03) translateZ(0);
            background: #ffffff;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
            border-color: rgba(43, 109, 60, 0.08);
        }
        .story-author-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }
        .story-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            background: #eee;
            border: 2px solid #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        .story-info {
            display: flex;
            flex-direction: column;
        }
        .story-name {
            font-weight: 700;
            font-size: 1.15rem;
            color: #1d1d1f;
        }
        .story-proj {
            font-size: 0.85rem;
            color: #86868b;
            margin-top: 2px;
        }
        .story-rating {
            display: flex;
            gap: 5px;
            margin-top: 11px;
            font-size: 1.18rem;
            line-height: 1;
            letter-spacing: 0;
        }
        .story-rating__star {
            position: relative;
            display: inline-block;
            color: #d9dee5;
        }
        .story-rating__star::before {
            content: '★';
            position: absolute;
            left: 0;
            top: 0;
            width: var(--fill, 0%);
            overflow: hidden;
            color: #d9a441;
            text-shadow: 0 4px 12px rgba(217, 164, 65, 0.22);
        }
        .story-rating__star.is-active {
            color: #d9a441;
            text-shadow: 0 4px 12px rgba(217, 164, 65, 0.22);
        }
        .story-quote {
            font-size: 1.4rem;
            line-height: 1.4;
            font-weight: 500;
            color: #1d1d1f;
            margin-top: 0;
        }
        .stories-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 0;
        }
        .dot {
            width: 8px;
            height: 8px;
            background: #e5e7eb;
            border-radius: 4px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: none;
            padding: 0;
        }
        .dot.active {
            width: 64px;
            background: #e5e7eb;
            border-radius: 10px;
        }
        .dot::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: var(--accent-green);
            border-radius: inherit;
            transition: none;
            z-index: 1;
        }
        .section--stories.autoplay-on .dot.active::after {
            width: 100%;
            transition: width 6s linear;
        }
        .autoplay-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f4f5f6;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #1d1d1f;
            margin-left: 8px;
        }
        .autoplay-toggle:hover {
            background: #e5e7eb;
            transform: scale(1.1);
        }
        .autoplay-toggle svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }
        #faqList {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            background: white;
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: var(--transition);
            overflow: hidden;
            position: relative;
        }
        .faq-item:hover {
            border-color: rgba(43, 109, 60, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        }
        .faq-q {
            padding: 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            transition: color 0.3s ease;
        }
        .faq-q h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 0;
            color: inherit;
            line-height: inherit;
            flex: 1;
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
            color: var(--text-secondary);
            opacity: 0;
            padding: 0 32px;
        }
        .faq-a p {
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .faq-item.active {
            border-color: var(--accent-green);
            box-shadow: 0 20px 40px rgba(43, 109, 60, 0.08);
        }
        .faq-item.active .faq-a {
            max-height: 500px;
            padding-bottom: 32px;
            opacity: 1;
        }
        .faq-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
            color: var(--text-main);
        }
        .faq-item.active .faq-icon {
            background: var(--accent-green);
            color: white;
            transform: rotate(45deg);
        }

        footer {
            background: #111;
            color: #fff;
            padding: 100px 0 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 80px;
            margin-bottom: 80px;
        }
        .footer-logo img { height: 32px; width: auto; margin-bottom: 30px; display: block; opacity: 0.9; transition: opacity 0.3s; }
        .footer-logo:hover img { opacity: 1; }
        .footer-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 30px; color: #fff; }
        .footer-link {
            display: block; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 15px; font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); width: fit-content;
        }
        .footer-link:hover { color: #fff; transform: translateX(8px); }

        @media (max-width: 1080px) {
            .project-layout { grid-template-columns: 1fr; }
            .sticky-card { position: static; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .expert-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 680px) {
            .project-title h1 { font-size: 2rem; }
            .project-title { padding: 18px 0 34px; }
            .project-hero { padding-bottom: 32px; }
            .project-hero__media { border-radius: 20px; }
            .project-hero--full { padding-bottom: 42px; }
            .project-hero--full .project-hero__media {
                min-height: 78vh;
                border-radius: 0;
            }
            .project-hero--full .project-hero__media img {
                width: 118%;
                max-width: none;
                left: 50%;
                transform: translateX(-50%) scale(1);
                object-position: center center;
            }
            .project-hero--full .project-hero__media::before {
                background:
                    linear-gradient(180deg, rgba(7, 18, 24, 0.05) 0%, rgba(7, 18, 24, 0.28) 42%, rgba(7, 18, 24, 0.86) 100%);
            }
            .project-hero--full .project-hero__content {
                left: 24px;
                right: 24px;
                bottom: 34px;
            }
            .project-hero--full [data-project-heading] {
                max-width: 100%;
                font-size: clamp(2.05rem, 10.7vw, 3.25rem);
                line-height: 1.02;
                margin-bottom: 16px;
                overflow-wrap: anywhere;
                word-break: normal;
            }
            .project-hero__reveal {
                transform: translateY(14px);
            }
            .sides-visual { padding: 12px 0 30px; }
            .hero-tags { left: 14px; right: 14px; bottom: 14px; }
            .hero-tags span { font-size: 0.8rem; padding: 7px 10px; }
            .project-hero--full .hero-tags {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 2px;
                scrollbar-width: none;
            }
            .project-hero--full .hero-tags::-webkit-scrollbar { display: none; }
            .project-hero--full .hero-tags span { flex: 0 0 auto; }
            .project-hero--full:hover img {
                transform: translateX(-50%) scale(1.01);
            }
            .sides-visual__head { margin-bottom: 12px; }
            .side-card { flex-basis: calc(100vw - 54px); border-radius: 18px; }
            .sides-nav button { width: 38px; height: 38px; }
            .gallery-grid, .plans-grid { grid-template-columns: 1fr; }
            .project-description-section { padding-bottom: 54px; }
            .project-description-panel { padding: 24px; border-radius: 20px; }
            .project-description { font-size: 0.98rem; line-height: 1.68; }
            .project-description-panel.is-collapsible .project-description { max-height: 360px; }
            .project-description-panel.is-collapsible:not(.is-expanded)::after {
                left: 24px;
                right: 24px;
                bottom: 86px;
                height: 100px;
            }

            .footer-grid { grid-template-columns: 1fr; }
            .section { padding: 80px 0; }
            .section--stories { padding: 80px 0 70px; }
            .section--stories h2 { font-size: 1.75rem; }
            .stories-wrapper { padding: 0 20px; gap: 16px; }
            .story-card { flex: 0 0 calc(100vw - 120px); min-height: 420px; height: auto; }
            .story-card-inner { padding: 24px; }
            .story-quote { font-size: 1rem; }
            .stories-title { margin-bottom: 24px; }
            .dot.active { width: 48px; }
            .faq-q { padding: 24px; }
            .faq-a { padding: 0 24px; }
            .faq-item.active .faq-a { padding-bottom: 24px; }
            .expert-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
            .expert-vis-card {
                height: 320px;
                border-radius: 24px;
            }
            .expert-vis-overlay {
                padding: 24px;
                bottom: 20px;
                left: 20px;
                right: 20px;
                border-radius: 20px;
            }
            .expert-vis-overlay h3 { font-size: 1.3rem !important; }
        }
        @media (max-width: 1200px) {
            .stories-wrapper { padding: 0 40px; }
        }
        @media (max-width: 1024px) {
            .stories-wrapper { padding: 0 40px; }
            .story-card { flex: 0 0 380px; height: 440px; }
            .expert-vis-card { height: 480px; }
        }
    
        .seo-project-h1 {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        /* FAQ Spotlight Glow Effect */
        .faq-q {
            position: relative;
            overflow: hidden;
        }
        .faq-q h3, .faq-q .faq-icon {
            position: relative;
            z-index: 2;
        }
        .card-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.25s ease;
            background: radial-gradient(
                450px at var(--mouse-x, 0px) var(--mouse-y, 0px),
                rgba(43, 109, 60, 0.22) 0%,
                rgba(43, 109, 60, 0.08) 50%,
                transparent 100%
            );
        }
        .faq-q:hover .card-glow {
            opacity: 1;
        }
