html {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}

#landing {
    background: url(../images/landing/bg-landing-2x.png) no-repeat center center;
    background-size: cover;
}

.animate-text .word-span {
    text-shadow: none !important;
}

.margin-auto {
    margin: 0 auto;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.viewport {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.collage {
    width: 900px;
    height: 600px;
    position: relative;
    transition: transform 1.6s cubic-bezier(.4, 0, .2, 1);
    transform-origin: center center;
}

.img {
    position: absolute;
}

.collage {
    width: 900px;
    height: 650px;
    position: relative;
}

/* 1 – top */
.img-1 {
    top: -20px;
    right: -90px;
    width: 280px;
    z-index: 1;
}

/* 2 – left */
.img-2 {
    top: 0px;
    left: -40px;
    width: 240px;
    z-index: 1;
}

/* 3 – center */
.img-3 {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
}

/* 4 – bottom right */
.img-4 {
    top: 480px;
    right: -180px;
    width: 320px;
}

/* 5 – bottom */
.img-5 {
    top: 560px;
    left: 180px;
    width: 320px;
}




/* GENRE SECTION RESET & LAYOUT */
.genre-section {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    font-family: 'SST', sans-serif;
    text-align: center;
}

.genre-header-text {
    margin-bottom: 40px;
}

.genre-header-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ccc;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.genre-header-text h2 {
    font-size: 4rem;
    font-weight: 900;
    margin: 10px 0;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 40%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.genre-header-text p {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.5;
}

/* ACCORDION */
.genre-accordion {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.genre-item {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgb(141, 141, 141) 80%, rgba(141, 141, 141, 0)) 1;
}

/* BANNER STATE (Collapsed) */
/* BANNER STATE (Collapsed) */
.genre-banner {
    position: relative;
    height: 180px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease;
}

.genre-banner .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.7;
}

.genre-banner .genre-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: background 0.3s;
}

.genre-banner:hover .bg-img {
    transform: scale(1.05);
    opacity: 1;
}

.genre-banner h3 {
    position: relative;
    z-index: 3;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transition: all 0.5s ease;
}

/* EXPANDED CONTENT */
.genre-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: #000;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease, border-color 0.4s;
    padding-bottom: 0;
}

.genre-item.active .genre-content {
    max-height: 1200px;
    opacity: 1;
    border-color: #444;
    padding-bottom: 30px;
}

.genre-item.active .genre-banner {
    height: 60px;
    cursor: default;
    background: #111;
}

.genre-item.active .genre-banner .bg-img {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.genre-item.active .genre-banner h3 {
    font-size: 1.5rem;
    color: #888;
    transform: scale(0.9);
}


/* MAIN IMAGE DISPLAY */
.main-display {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    background: #222;
}

.main-display .current-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.img-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ccc;
    font-size: 0.9rem;
    text-align: left;
}

.img-overlay-info .camera-model {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
    font-style: italic;
}


/* GALLERY THUMBNAILS */
.gallery-strip-wrapper {
    width: 100%;
    padding: 20px 0 0 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-strip-wrapper.dragging {
    cursor: grabbing;
}

.gallery-strip-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-strip {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    width: max-content;
    margin: 0 auto;
}

.gallery-strip .thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    opacity: 0.5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.gallery-strip .thumb:hover {
    opacity: 0.8;
}

.gallery-strip .thumb.active {
    opacity: 1;
    border-color: #fff;
}

/* DOTS */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.gallery-dots .dot {
    width: 8px;
    height: 8px;
    background: #444;
    border-radius: 50%;
}

.gallery-dots .dot.active {
    background: #aaa;
}


/* CTA BUTTON */
.genre-cta {
    margin-top: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #666;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}


/* SPEED UNLOCK SECTION */
.speed-unlock-section {
    background-color: #0f1012;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: clip;
    /* Changed from hidden to clip to fix sticky positioning */
    font-family: 'SST', sans-serif;
    text-align: center;
}

.speed-unlock-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background Boxes */
.speed-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.speed-box-1 {
    position: absolute;
    top: -100px;
    right: 15%;
    width: 450px;
    opacity: 0.8;
    z-index: 0;
}

.speed-box-2 {
    position: absolute;
    top: 250px;
    left: 5%;
    width: 400px;
    opacity: 0.6;
    filter: blur(20px);
    z-index: 0;
}

/* Header Text */
.speed-unlock-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.speed-unlock-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #CAB7A4;
    margin: 0;
    letter-spacing: 0.2em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.speed-unlock-header h2 {
    font-size: 7rem;
    font-weight: 900;
    margin: -10px 0 0;
    color: #CAB7A4;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #CAB7A4 0%, #645B51 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Description Text */
.speed-unlock-description {
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.speed-unlock-description {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #DDD5CD;
    letter-spacing: 0.02em;
    white-space: normal;
    display: inline-block;
    width: 100%;
}

/* Animation Spans - used by JS */
.word-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
    /* Transition removed to allow GSAP control */
}

.word-span.glow-active {
    /* Styles handled by GSAP */
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes textGlowFadeIn {

    /* Animation handled by GSAP keyframes now */
    0% {
        text-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }

    30% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.9), 0 0 80px rgba(255, 255, 255, 0.4);
    }

    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

@keyframes textGlowFadeIn {
    0% {
        text-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }

    30% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.9), 0 0 80px rgba(255, 255, 255, 0.4);
    }

    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

/* Main Media */
.speed-unlock-main-media {
    margin: 0 auto 40px;
    max-width: 100%;
}

.image-border-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(100px);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease;
}

.speed-unlock-section.in-view .image-border-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.2s;
    /* Starts after text animation roughly completes */
}

.main-speed-img {
    width: 100%;
    display: block;
    transform: scale(1.1);
    transition: transform 2s ease;
}

.speed-unlock-section.in-view .main-speed-img {
    transform: scale(1);
    transition-delay: 1.2s;
}

/* Global Reveal Animation */
.reveal-item {
    opacity: 0;
    transform: translateY(80px);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease;
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Section */
.speed-unlock-footer {
    padding: 0 20px;
}

.speed-unlock-footer .footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.speed-unlock-footer .footer-desc {
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
}

.speed-unlock-footer .footer-disclaimer {
    font-size: 0.9rem;
    color: #fff;
    text-transform: none;
}



/* SPEED UNLOCK QUOTE SECTION */
.speed-unlock-quote {
    margin-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 3;
}

.quote-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-icon-up {
    width: 65px;
    margin-bottom: 30px;
    filter: brightness(0.9);
}

.quote-main-text {
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.15;
    color: #CAB7A4;
    max-width: 1200px;
    margin: 0 auto;
    letter-spacing: -0.02em;
    text-align: center;
}

.quote-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: left;
    margin-top: 20px;
    margin-left: 85px;
}

.author-photo-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}

.author-photo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(165, 145, 120, 0.2) 0%, rgba(165, 145, 120, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.author-meta {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.quote-icon-down {
    position: absolute;
    top: 40px;
    right: 10px;
    width: 60px;
    filter: brightness(0.9);
    z-index: 3;
}

.author-info-text {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Birthstone';
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 300;
    color: #d1bba0;
    letter-spacing: 0.02em;
    font-style: italic;
}

.author-description {
    font-size: 1.4rem;
    line-height: 1.35;
    color: #CAB7A4;
    margin: 0;
    font-weight: 400;
}


/* SPEED UNLOCK AI SECTION */
.speed-unlock-ai {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 3;
}

.ai-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-header {
    margin-bottom: 40px;
    text-align: center;
}

.ai-header p {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #CAB7A4;
    font-weight: 400;
}

.ai-media-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-bg-box {
    position: absolute;
    width: 115%;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    left: 20px;
    top: 20px;
}

.ai-img-mask {
    position: relative;
    z-index: 2;
    width: 90%;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.5);
    /* Initial scale */
    transition: transform 0.1s linear;
    /* Fast response for scroll logic */
    will-change: transform;
}

.ai-footer {
    max-width: 800px;
    text-align: center;
    margin-top: 40px;
}

.ai-footer h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 300;
    margin-bottom: 60px;
}

.ai-footer h3 strong {
    font-weight: 700;
}

.ai-arrow-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.ai-arrow-down {
    width: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* SPEED UNLOCK OPTICAL SECTION */
.speed-unlock-optical {
    position: relative;
    z-index: 3;
    padding-bottom: 100px;
}

.optical-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.optical-container .ai-header {
    margin-bottom: 0px;
    text-align: center;
}

.optical-footer {
    max-width: 800px;
    text-align: center;
    margin-top: 20px;
}

.optical-footer h3 {
    font-size: 2.2rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 300;
    margin-bottom: 60px;
}

.optical-footer h3 strong {
    font-weight: 700;
}

.optical-img-mask {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    overflow: hidden;
}

.optical-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* SPEED UNLOCK CAPTURE SECTION */
.speed-unlock-capture {
    min-height: 100vh;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.capture-sticky-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0px;
}

.speed-unlock-capture .ai-header {
    margin-bottom: 0px;
    text-align: center;
}

.capture-media-wrapper {
    position: relative;
    width: 800px;
    /* Reduced to 1000px as requested */
    max-width: 100%;
    /* Responsive fallback */
    margin: 30px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    /* Removed aspect-ratio to allow height auto */
}

.capture-img-stack {
    position: relative;
    width: 100%;
    /* We need height to be set dynamically or by the first image if using absolute. 
       Since we want natural height, we'll keep the first image static relative 
       and others absolute, OR simply rely on the Aspect Ratio if images are same size.
       But since user requested 1000px width and auto height, we can let JS handle content 
       or use a spacer. For now, let's keep it simple: Make grid work for stacking 
       but use transform for movement. */
    display: grid;
    place-items: center;
    overflow: hidden;
    /* Mask the sliding images */
}

.capture-img {
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    display: block;
    /* GSAP will handle opacity and transform */
    /* Remove CSS transitions to avoid conflict with GSAP scrubbing */
}

.capture-img.active {
    z-index: 1;
}

/* SPEED UNLOCK BIONZ SECTION */

.bionz-full {
    padding-top: 0px;
    position: relative;
    padding-bottom: 0px !important;
}

.speed-unlock-bionz {
    padding-bottom: 100px;
    position: relative;
    z-index: 3;
}

.bionz-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 1px;
}

.bionz-container .ai-header {
    margin-bottom: 30px;
    text-align: center;
}

.bionz-pin-wrapper {
    position: relative;
    min-height: 100vh;
    margin-top: 1px;
}

.bionz-img-wrapper {
    position: relative;
    width: 800px;
    /* Default size - will be scaled up initially via GSAP */
    max-width: 90%;
    margin: 0 auto;
    /* Transform origin at top for scaling from section top */
    transform-origin: center top;
}

.bionz-img-mask {
    width: 100%;
}

.bionz-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bionz-footer {
    max-width: 800px;
    text-align: center;
    margin-top: 40px;
}

.bionz-footer h3 {
    font-size: 2.2rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 300;
    margin-bottom: 60px;
}

.bionz-footer h3 strong {
    font-weight: 700;
}

/* SPEED UNLOCK GEAR SECTION */
.speed-unlock-gear {
    background: #1C2023;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.gear-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.gear-title {
    font-size: 5rem;
    font-weight: 800;
    text-align: center;
    line-height: 1;
    margin-bottom: 40px;
    color: #645b51;
    background: linear-gradient(180deg, #998a7a 0%, #4a433c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.gear-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gear-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.gear-media {
    position: relative;
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gear-image-frame {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
    background: radial-gradient(circle, rgba(202, 183, 164, 0.15) 0%, transparent 70%);
}

.gear-row-a1 .gear-image-frame {
    top: -20px;
    left: 40px;
}

.gear-row-a9 .gear-image-frame {
    top: 10px;
    left: 60px;
}

.gear-camera-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.gear-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.gear-row-a1 .gear-text {
    align-items: center;
    padding-left: 20px;
}

.gear-row-a9 .gear-text {
    align-items: center;
    padding-right: 20px;
}


.gear-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.gear-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    align-self: center;
}

.gear-button img {
    width: 40px;
    height: 40px;
}

.gear-button:hover {
    transform: scale(1.1);
}


/* RESOLUTION UNLOCK SECTION */
.resolution-unlock-section {
    background: linear-gradient(to bottom,
            rgba(227, 63, 61, 0.4) 0%,
            rgba(227, 63, 61, 0.4) 50px,
            rgba(227, 63, 61, 0.25) 200px,
            rgba(227, 63, 61, 0) 300px);
    color: #000;
    padding: 100px 0 0 0;
    position: relative;
    overflow: clip;
    font-family: 'SST', sans-serif;
    text-align: center;
    background-color: #000;
}

.resolution-full-section {
    padding-top: 100px;
    padding-bottom: 0px !important;
}

.resolution-pin-wrapper {
    position: relative;
    min-height: 100vh;
    /* QUAN TRỌNG */
}

.resolution-inner-wrapper {
    position: relative;
}

.resolution-unlock-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resolution-unlock-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.resolution-unlock-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E33F3D;
    margin: 0;
    letter-spacing: 0.2em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.resolution-unlock-header h2 {
    font-size: 7rem;
    font-weight: 900;
    margin: -10px 0 0;
    color: #E33F3D;
    letter-spacing: 0.1em;
    background: linear-gradient(180deg, #E33F3D 0%, #1D2124 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.resolution-full {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resolution-media-wrapper {
    position: relative;
    width: 1000px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resolution-quote-box {
    position: relative;
    width: 800px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.res-bg-box {
    position: absolute;
    width: 350px;
    height: 350px;
    top: -50px;
    left: 0;
}

.res-quote-text {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-left: 100px;
    /* Offset from red box */
}

.res-img-mask {
    width: 800px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background: #1a1a1a;
    z-index: 1;
}

.res-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.1);
    /* Initial scale for reveal animation */
}

.resolution-footer {
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
    padding-bottom: 100px;
}

.resolution-footer h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #CDBFBF;
    font-weight: 400;
}

.resolution-footer h3 strong {
    color: #CDBFBF;
    font-weight: 700;
}


/* SPEED UNLOCK AI SECTION */
.resolution-unlock-ai {
    padding-top: 140px;
    position: relative;
    z-index: 3;
}

.resolution-unlock-ai .ai-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resolution-unlock-ai .ai-header {
    margin-bottom: 24px;
    text-align: center;
}

.resolution-unlock-ai .ai-header p {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    font-weight: 400;
    font-family: var(--sst-bold);
}

.resolution-unlock-ai .res-ai-media-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resolution-unlock-ai .res-ai-bg-box {
    position: absolute;
    width: 115%;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    left: 20px;
    top: 20px;
}

.resolution-unlock-ai .res-ai-img-mask {
    position: relative;
    z-index: 2;
}

.resolution-unlock-ai .res-ai-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resolution-unlock-ai .res-ai-footer {
    max-width: 800px;
    text-align: center;
}

.resolution-unlock-ai .res-ai-footer h3 {
    font-size: 2.2rem;
    line-height: 1.4;
    color: #CDBFBF;
    font-weight: 300;
}

.resolution-unlock-ai .res-ai-footer h3 strong {
    font-weight: 700;
}

/*resolution res quote*/
.res-gear {
    background-image: url('../images/gear/footer-bg.jpg');
    background-size: cover;
    background-position: center;
}

.res-quote {
    color: #D22F2D;
}

.resolution-unlock-ai .res-ai-bg-box-2 {
    position: absolute;
    width: 60%;
    left: 0%;
    top: -10%;
}

.res-ai-2 {
    padding-top: 140px;
    background: linear-gradient(to bottom, #000 30%, #202427 30%);
}

.res-ai-2 .ai-container {
    position: relative;
}

.res-ai-2 .ai-header p {
    color: #fff !important;
    font-family: var(--sst-bold) !important;
}

.res-gear-title {
    color: #E33F3D;
    letter-spacing: 0.1em;
    background: linear-gradient(180deg, #E33F3D 0%, #E33F3D 60%, #1D2124 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.mobile-show {
    display: none;
}