/* === VARIABLES === */
:root {
    --bg: #07080a;
    --bg2: #0e1015;
    --bg3: #161921;
    --text: #f0f0f3;
    --text2: #9ca3af;
    --text3: #6b7280;
    --accent: #6c63ff;
    --accent2: #a78bfa;
    --accent-glow: rgba(108, 99, 255, .25);
    --glass: rgba(255, 255, 255, .04);
    --glass-border: rgba(255, 255, 255, .08);
    --radius: 16px;
    --radius-sm: 8px;
    --font: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* === RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    scroll-padding-top: 80px
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

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

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit
}

em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* === CURSOR === */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform .15s var(--ease)
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent2);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform .08s var(--ease), width .3s, height .3s, border-color .3s
}

.cursor-outline.hover {
    width: 56px;
    height: 56px;
    border-color: var(--accent);
    background: var(--accent-glow)
}

@media(pointer:coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none
    }
}

/* === NOISE === */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 120px 0;
    position: relative
}

/* === HEADER === */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all .4s var(--ease)
}

#site-header.scrolled {
    padding: 12px 0;
    background: rgba(7, 8, 10, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border)
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -.02em
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    color: #fff
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text2);
    transition: color .3s;
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s var(--ease)
}

.nav-link:hover {
    color: var(--text)
}

.nav-link:hover::after {
    width: 100%
}

.nav-btn {
    font-size: .85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    transition: transform .3s, box-shadow .3s
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow)
}

/* === MOBILE NAV === */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 1001
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s var(--ease)
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(7, 8, 10, .97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease)
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all
}

.mobile-nav ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px
}

.mobile-nav a {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.02em;
    transition: color .3s
}

.mobile-nav a:hover {
    color: var(--accent)
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4;
    animation: orbFloat 20s ease-in-out infinite
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -10%;
    right: -5%;
    animation-delay: 0s
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent2);
    bottom: -10%;
    left: -5%;
    animation-delay: -7s
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    top: 50%;
    left: 40%;
    animation-delay: -14s
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0)
    }

    33% {
        transform: translate(30px, -40px)
    }

    66% {
        transform: translate(-20px, 30px)
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-size: .85rem;
    color: var(--text2);
    margin-bottom: 32px;
    backdrop-filter: blur(10px)
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

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

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 24px
}

.line {
    display: block;
    overflow: hidden
}

.line span {
    display: inline-block
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border)
}

.stat {
    text-align: center
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent2)
}

.stat-label {
    display: block;
    font-size: .8rem;
    color: var(--text3);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .1em
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden
}

.btn svg {
    transition: transform .3s var(--ease)
}

.btn:hover svg {
    transform: translateX(5px)
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--accent-glow)
}

.btn-ghost {
    border: 1px solid var(--glass-border);
    color: var(--text);
    background: var(--glass);
    backdrop-filter: blur(10px)
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-3px)
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text3);
    font-size: .75rem
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text3);
    border-radius: 12px;
    position: relative
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--text2);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px)
    }
}

/* === MARQUEE === */
.marquee-section {
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden
}

.marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content
}

.marquee-track span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text3)
}

.marquee-track .sep {
    color: var(--accent);
    font-size: .8rem
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-tag {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--accent2);
    font-weight: 600;
    margin-bottom: 16px
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 16px
}

.section-desc {
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem
}

/* === PROJECTS === */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all .5s var(--ease)
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, .3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease)
}

.project-card:hover .project-image img {
    transform: scale(1.05)
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108, 99, 255, .15);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s var(--ease)
}

.project-card:hover .project-overlay {
    opacity: 1
}

.view-case {
    padding: 12px 28px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-weight: 600;
    font-size: .9rem;
    border: 1px solid rgba(255, 255, 255, .2)
}

.project-info {
    padding: 24px
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap
}

.project-tags span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text2)
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px
}

.project-info p {
    color: var(--text2);
    font-size: .9rem
}

/* === ABOUT === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center
}

.about-image-wrapper {
    position: relative
}

.about-placeholder {
    width: 80%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border)
}

.about-initials {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    padding: 24px;
    border-radius: var(--radius);
    text-align: center
}

.exp-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    color: #fff
}

.exp-text {
    font-size: .75rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.4
}

.about-content p {
    color: var(--text2);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px
}

.about-content .section-tag {
    text-align: left
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px
}

.skill-pill {
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-size: .85rem;
    font-weight: 500;
    color: var(--text2);
    transition: all .3s var(--ease)
}

.skill-pill:hover {
    border-color: var(--accent);
    color: var(--text);
    background: var(--accent-glow)
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.service-card {
    padding: 40px;
    border-radius: var(--radius);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease)
}

.service-card:hover {
    border-color: rgba(108, 99, 255, .3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .3)
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent2)
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff
}

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text3)
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px
}

.service-card p {
    color: var(--text2);
    font-size: .95rem;
    line-height: 1.7
}

/* === PROCESS === */
.process-timeline {
    display: grid;
    gap: 0;
    position: relative;
    max-width: 700px;
    margin: 0 auto
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border)
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    color: var(--accent2);
    position: relative;
    z-index: 2;
    transition: all .4s var(--ease)
}

.process-step:hover .step-number {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent)
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px
}

.step-content p {
    color: var(--text2);
    font-size: .95rem;
    line-height: 1.7
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--bg2)
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.testimonial-track {
    display: flex;
    transition: transform .5s var(--ease)
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px)
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 4px
}

blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 28px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff
}

.testimonial-author strong {
    display: block;
    font-size: .95rem
}

.testimonial-author span {
    font-size: .8rem;
    color: var(--text3)
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px
}

.test-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    transition: all .3s
}

.test-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow)
}

.test-dots {
    display: flex;
    gap: 8px
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text3);
    transition: all .3s;
    cursor: pointer
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px
}

/* === CTA === */
.cta-section {
    padding: 80px 0 120px
}

.cta-box {
    position: relative;
    padding: 80px 64px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(108, 99, 255, .12), rgba(167, 139, 250, .08));
    border: 1px solid rgba(108, 99, 255, .2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.02em
}

.cta-content p {
    color: var(--text2);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 500px
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.cta-visual {
    position: relative;
    min-width: 200px
}

.cta-orb {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    filter: blur(80px);
    opacity: .3;
    animation: orbFloat 10s ease-in-out infinite
}

/* === FOOTER === */
#site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--glass-border)
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-social {
    display: flex;
    gap: 24px
}

.footer-social a {
    font-size: .9rem;
    color: var(--text3);
    font-weight: 500;
    transition: color .3s
}

.footer-social a:hover {
    color: var(--accent2)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text3);
    font-size: .8rem
}

/* === CASE STUDY MODAL === */
.case-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--bg);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease)
}

.case-modal.open {
    opacity: 1;
    pointer-events: all
}

.case-close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all .3s
}

.case-close:hover {
    background: var(--accent);
    border-color: var(--accent)
}

.case-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px
}

.case-hero {
    margin-bottom: 64px
}

.case-hero .section-tag {
    margin-bottom: 12px
}

.case-hero h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.02em
}

.case-hero p {
    color: var(--text2);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 700px
}

.case-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border)
}

.case-meta-item span:first-child {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text3);
    margin-bottom: 4px
}

.case-meta-item span:last-child {
    font-weight: 600;
    font-size: .95rem
}

.case-image {
    margin: 48px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border)
}

.case-image img {
    width: 100%;
    display: block
}

.case-section {
    margin-bottom: 48px
}

.case-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text)
}

.case-section p {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0
}

.case-result-card {
    padding: 32px;
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius)
}

.case-result-card .big {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px
}

.case-result-card span:last-child {
    font-size: .85rem;
    color: var(--text2)
}

/* === ANIMATIONS === */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.anim-reveal-line span {
    transform: translateY(100%);
    display: inline-block;
    transition: transform .8s var(--ease)
}

.anim-reveal-line.visible span {
    transform: translateY(0)
}

.anim-reveal-line:nth-child(2) span {
    transition-delay: .15s
}

.anim-reveal-line:nth-child(3) span {
    transition-delay: .3s
}

/* === RESPONSIVE === */
@media(max-width:1024px) {

    .projects-grid,
    .services-grid {
        grid-template-columns: 1fr
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px
    }

    .cta-actions {
        justify-content: center
    }

    .cta-visual {
        display: none
    }
}

@media(max-width:768px) {
    .nav-list {
        display: none
    }

    .menu-toggle {
        display: flex
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem)
    }

    .hero-stats {
        gap: 24px
    }

    .stat-number {
        font-size: 2rem
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center
    }

    .case-meta {
        flex-direction: column;
        gap: 16px
    }

    .case-results {
        grid-template-columns: 1fr
    }

    .section {
        padding: 80px 0
    }

    .process-timeline::before {
        left: 26px
    }
}

@media(max-width:480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center
    }

    .btn {
        width: 100%;
        justify-content: center
    }

    .service-card {
        padding: 28px
    }

    .cta-box {
        padding: 32px 20px
    }
}