/* ==========================================================================
   ERINITE SOLUTIONS — 3D VISUALIZATION & CREATIVE CONTENT
   Stylesheet: css/rendering.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   PAGE BASE & DESIGN SYSTEM TOKENS
   -------------------------------------------------------------------------- */
.rendering-page {
    background-color: #F8FBFE;
    color: #0B1B3D;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rendering-page * {
    box-sizing: border-box;
}

/* Common text utilities */
.text-blue {
    color: #0066FF !important;
}

/* ==========================================================================
   SECTION 01: HERO SECTION
   ========================================================================== */
.rendering-hero {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 25px;
    background: linear-gradient(145deg, #F8FBFE 0%, #EFF6FD 45%, #E5F1FC 100%);
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   AMBIENT BACKGROUND FX & SPATIAL LIGHTING
   -------------------------------------------------------------------------- */
.rendering-hero-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-glow-top-left {
    position: absolute;
    top: -120px;
    left: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, rgba(56, 189, 248, 0.04) 50%, transparent 70%);
    filter: blur(50px);
}

.bg-glow-right-stage {
    position: absolute;
    top: 10%;
    right: -100px;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, rgba(0, 102, 255, 0.12) 40%, rgba(147, 197, 253, 0.05) 65%, transparent 80%);
    filter: blur(60px);
}

.bg-hologram-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 102, 255, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 102, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 65% 50%, rgba(0, 0, 0, 0.7) 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 65% 50%, rgba(0, 0, 0, 0.7) 0%, transparent 75%);
}

/* --------------------------------------------------------------------------
   HERO CONTAINER: 2-COLUMN DESKTOP GRID
   -------------------------------------------------------------------------- */
.rendering-hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    align-items: center;
    gap: 48px;
}

/* --------------------------------------------------------------------------
   LEFT COLUMN: CONTENT & TYPOGRAPHY
   -------------------------------------------------------------------------- */
.rendering-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 620px;
}

/* Eyebrow Tag */
.rendering-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.rendering-eyebrow-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #0066FF;
}

.rendering-eyebrow-line {
    display: inline-block;
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, #0066FF 0%, rgba(0, 102, 255, 0.2) 100%);
    border-radius: 2px;
}

/* Hero Heading */
.rendering-hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.12;
    color: #0B1B3D;
    letter-spacing: -0.028em;
    margin: 0 0 22px;
}

.rendering-hero-title .text-blue {
    display: inline-block;
    color: #0066FF !important;
    position: relative;
}

/* Hero Description */
.rendering-hero-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #4B5563;
    max-width: 530px;
    margin: 0 0 24px;
    font-weight: 400;
}

/* CTA Action Row */
.rendering-hero-cta-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

/* Primary Button */
.rendering-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0066FF;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.28);
    transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.24s ease,
                box-shadow 0.24s ease;
}

.rendering-btn-primary .btn-arrow {
    font-size: 18px;
    transition: transform 0.24s ease;
}

.rendering-btn-primary:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.38);
    color: #ffffff;
}

.rendering-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Secondary Button (View Our Work with Play Circle) */
.rendering-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #0B1B3D;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(11, 31, 68, 0.05);
    transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.24s ease,
                color 0.24s ease,
                box-shadow 0.24s ease;
}

.rendering-btn-secondary .btn-play-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F0F6FF;
    border: 1.5px solid #0066FF;
    color: #0066FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.rendering-btn-secondary .btn-play-circle svg {
    width: 12px;
    height: 12px;
    margin-left: 2px; /* optical center */
}

.rendering-btn-secondary:hover {
    border-color: #0066FF;
    color: #0066FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.12);
}

.rendering-btn-secondary:hover .btn-play-circle {
    background: #0066FF;
    color: #ffffff;
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   3 BOTTOM BENEFIT BADGES / VALUE PROPS (100% REFERENCE REPLICA)
   - Only the icon is inside a white rounded card
   - Headings & text are free on the section background (NO card background)
   - Subtle vertical divider lines between the 3 items
   -------------------------------------------------------------------------- */
.rendering-hero-benefits {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 660px;
    margin-top: 10px;
}

.rendering-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    flex: 0 0 auto;
}

/* White Icon Card matching reference */
.benefit-icon-card {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 18px rgba(0, 102, 255, 0.09), 0 2px 6px rgba(11, 31, 68, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.24s ease;
}

.rendering-benefit-item:hover .benefit-icon-card {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.18);
}

.benefit-icon-card svg {
    width: 25px;
    height: 25px;
}

/* Text directly on background */
.benefit-text-wrap {
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #0B1B3D;
    margin: 0;
    line-height: 1.25;
    white-space: nowrap;
}

.benefit-desc {
    font-size: 12px;
    color: #5B749A;
    margin: 3px 0 0;
    line-height: 1.2;
    white-space: nowrap;
}

/* Vertical divider line between badges */
.benefit-v-divider {
    display: block;
    width: 1px;
    height: 32px;
    background: #D2E2F4;
    margin: 0 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   RIGHT COLUMN: INTERACTIVE 3D CREATIVE SHOWCASE
   ========================================================================== */
.rendering-hero-showcase-col {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main 3D Stage Container */
.showcase-3d-stage {
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 540px;
    margin: 0 auto;
    perspective: 1200px;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ambient Stage Backlight */
.stage-ambient-aura {
    position: absolute;
    width: 520px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.2) 0%, rgba(56, 189, 248, 0.14) 40%, transparent 70%);
    filter: blur(45px);
    pointer-events: none;
    z-index: 1;
}

/* Base class for all Parallax Layers */
.showcase-layer {
    will-change: transform;
    transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
    transition: transform 0.12s ease-out;
}

/* --------------------------------------------------------------------------
   1. MAIN CENTER SCENE: WIREFRAME TO PENTHOUSE INTERIOR ON PEDESTAL
   -------------------------------------------------------------------------- */
.showcase-main-render {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    transition: opacity 0.35s ease, filter 0.35s ease;
}

.main-render-outer {
    position: relative;
    width: 100%;
}

/* Main Render Card Frame with 8-10s Breathing Glow */
.main-render-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #0B1B3D;
    border: 1.5px solid rgba(56, 189, 248, 0.45);
    box-shadow: 0 20px 50px rgba(11, 31, 68, 0.16), 0 0 30px rgba(0, 102, 255, 0.2);
    animation: stageBreathingGlow 9s ease-in-out infinite;
    transform: translateZ(0);
}

.main-render-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 924 / 800;
}

/* Vertical Laser Divider Beam */
.laser-divider-line {
    position: absolute;
    top: 0;
    bottom: 18%; /* stops above floor pedestal */
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.2) 0%, #00E5FF 40%, #38BDF8 80%, rgba(0, 102, 255, 0.1) 100%);
    box-shadow: 0 0 10px #00E5FF, 0 0 20px rgba(0, 229, 255, 0.65);
    animation: laserBeamPulse 3.5s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

/* Laser Divider Sub-labels */
.stage-mode-labels {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 6;
}

.mode-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mode-wireframe {
    background: rgba(0, 102, 255, 0.65);
    color: #E0F2FE;
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.mode-photoreal {
    background: rgba(11, 27, 61, 0.65);
    color: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Pedestal Floor Glow Aura */
.pedestal-floor-glow {
    position: absolute;
    bottom: -15px;
    left: 10%;
    right: 10%;
    height: 35px;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.28) 0%, rgba(56, 189, 248, 0.15) 50%, transparent 80%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   KEYFRAME ANIMATIONS: BREATHING GLOW & LASER
   -------------------------------------------------------------------------- */
/* 8-10s Slow Pulse: Normal -> Soft Blue Glow -> Slightly Brighter -> Normal */
@keyframes stageBreathingGlow {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(11, 31, 68, 0.16), 0 0 25px rgba(0, 102, 255, 0.18);
        border-color: rgba(56, 189, 248, 0.4);
    }
    50% {
        box-shadow: 0 25px 65px rgba(11, 31, 68, 0.22), 0 0 45px rgba(0, 102, 255, 0.38), 0 0 70px rgba(56, 189, 248, 0.25);
        border-color: rgba(56, 189, 248, 0.85);
    }
}

@keyframes laserBeamPulse {
    0%, 100% {
        opacity: 0.85;
        box-shadow: 0 0 8px #00E5FF, 0 0 16px rgba(0, 229, 255, 0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 14px #00E5FF, 0 0 28px rgba(0, 229, 255, 0.85);
    }
}

/* --------------------------------------------------------------------------
   FLOATING 3D CARDS (PRODUCT, ARCHITECTURE, AUTOMOTIVE)
   -------------------------------------------------------------------------- */
.showcase-card {
    position: absolute;
    border-radius: 18px;
    background: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(11, 31, 68, 0.14), 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    z-index: 10;
    overflow: hidden;
    will-change: transform, box-shadow, border-color, opacity, filter;
    transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.36s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.36s ease,
                opacity 0.35s ease,
                filter 0.35s ease;
    user-select: none;
    -webkit-user-select: none;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Neon Border Accent */
.card-neon-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

/* --------------------------------------------------------------------------
   INDIVIDUAL CARD POSITIONS & DIMENSIONS
   -------------------------------------------------------------------------- */

/* 1. Product Card (Top Left - Perfume) */
.card-product {
    top: 25px;
    left: 10px;
    width: 145px;
    height: 185px;
}

/* 2. Architecture Card (Top Right - Luxury Villa) */
.card-architecture {
    top: 35px;
    right: 8px;
    width: 215px;
    height: 152px;
}

/* 3. Automotive Card (Bottom Right - Sports Car) */
.card-car {
    bottom: 45px;
    right: 6px;
    width: 195px;
    height: 145px;
}

/* --------------------------------------------------------------------------
   HOVER FOCUS & DIMMING INTERACTIONS
   - Scale 1.04
   - Border neon glow
   - Other cards slight dim
   -------------------------------------------------------------------------- */
.showcase-card:hover,
.showcase-card:focus-visible {
    transform: translate3d(var(--px, 0px), var(--py, 0px), 25px) scale(1.04) !important;
    border-color: #0070F3 !important;
    box-shadow: 0 22px 55px rgba(11, 31, 68, 0.24),
                0 0 28px rgba(0, 112, 243, 0.55),
                0 0 10px rgba(56, 189, 248, 0.6) !important;
    z-index: 25;
    outline: none;
}

.showcase-card:hover .card-img-container img,
.showcase-card:focus-visible .card-img-container img {
    transform: scale(1.05);
}

.showcase-card:hover .card-neon-border,
.showcase-card:focus-visible .card-neon-border {
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: inset 0 0 15px rgba(0, 102, 255, 0.25);
}

/* Dim other cards when one card is hovered */
.showcase-3d-stage:has(.showcase-card:hover) .showcase-card:not(:hover),
.showcase-3d-stage.has-card-hover .showcase-card:not(:hover) {
    opacity: 0.62;
    filter: brightness(0.92) contrast(0.96);
}

/* Slight main scene dim when card is hovered */
.showcase-3d-stage:has(.showcase-card:hover) .showcase-main-render,
.showcase-3d-stage.has-card-hover .showcase-main-render {
    opacity: 0.88;
    filter: brightness(0.96);
}

/* --------------------------------------------------------------------------
   BOTTOM REVEAL LABEL PILL
   - "3D Product Visualization"
   - "Architectural Visualization"
   - "Automotive Rendering"
   -------------------------------------------------------------------------- */
.card-bottom-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    background: rgba(11, 27, 61, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    z-index: 15;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.3s ease;
}

.card-bottom-label .label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00E5FF;
    box-shadow: 0 0 8px #00E5FF;
    display: inline-block;
}

.showcase-card:hover .card-bottom-label,
.showcase-card:focus-visible .card-bottom-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Highlight pulse triggered on "View Our Work" click */
.stage-highlight-pulse .main-render-card {
    box-shadow: 0 0 60px rgba(0, 112, 243, 0.7), 0 0 100px rgba(56, 189, 248, 0.4) !important;
    border-color: #00E5FF !important;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & MEDIA QUERIES
   ========================================================================== */

/* --------------------------------------------------------------------------
   LAPTOP 1024px: Maintain 2-Column Left/Right Layout (User Specification)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1200px) and (min-width: 901px) {
    .rendering-hero {
        padding: 60px 24px;
        min-height: auto;
    }

    .rendering-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .rendering-hero-title {
        font-size: 46px;
    }

    .rendering-hero-desc {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .rendering-hero-cta-wrap {
        margin-bottom: 36px;
        gap: 14px;
    }

    .rendering-hero-benefits {
        max-width: 100%;
    }

    .benefit-icon-card {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
    }

    .benefit-icon-card svg {
        width: 22px;
        height: 22px;
    }

    .benefit-title {
        font-size: 13.5px;
    }

    .benefit-desc {
        font-size: 11.5px;
    }

    .benefit-v-divider {
        margin: 0 12px;
        height: 28px;
    }

    /* Compact 3D Stage for 1024px */
    .showcase-3d-stage {
        max-width: 500px;
        height: 450px;
    }

    .showcase-main-render {
        max-width: 360px;
    }

    .card-product {
        top: 20px;
        left: 6px;
        width: 125px;
        height: 155px;
    }

    .card-architecture {
        top: 25px;
        right: 6px;
        width: 180px;
        height: 126px;
    }

    .card-car {
        bottom: 35px;
        right: 4px;
        width: 165px;
        height: 122px;
    }

    .card-bottom-label {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* --------------------------------------------------------------------------
   TABLET & PHABLET (<= 900px): Clean Stacked Layout
   -------------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
    .rendering-hero {
        padding: 60px 20px 60px;
        min-height: auto;
    }

    .rendering-hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .rendering-hero-content {
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .rendering-hero-title {
        font-size: clamp(34px, 6vw, 46px);
        line-height: 1.15;
    }

    .rendering-hero-desc {
        max-width: 600px;
        font-size: 16.5px;
    }

    .rendering-hero-cta-wrap {
        justify-content: center;
        margin-bottom: 40px;
    }

    .rendering-hero-benefits {
        justify-content: center;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 18px 24px;
    }

    .benefit-v-divider {
        display: none;
    }

    .rendering-benefit-item {
        text-align: left;
    }

    /* Responsive 3D Stage */
    .showcase-3d-stage {
        max-width: 520px;
        height: 460px;
    }

    .showcase-main-render {
        max-width: 380px;
    }

    .card-product {
        top: 20px;
        left: 10px;
        width: 130px;
        height: 160px;
    }

    .card-architecture {
        top: 25px;
        right: 10px;
        width: 185px;
        height: 130px;
    }

    .card-car {
        bottom: 35px;
        right: 10px;
        width: 170px;
        height: 125px;
    }
}

/* --------------------------------------------------------------------------
   MOBILE & SMALL SCREENS (<= 640px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
    .rendering-hero {
        padding: 45px 16px 55px;
    }

    .rendering-hero-container {
        gap: 36px;
    }

    .rendering-hero-title {
        font-size: clamp(28px, 7.5vw, 36px);
        line-height: 1.16;
        margin-bottom: 16px;
    }

    .rendering-hero-desc {
        font-size: 15px;
        line-height: 1.58;
        margin-bottom: 28px;
    }

    .rendering-eyebrow-text {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .rendering-eyebrow-line {
        width: 28px;
    }

    .rendering-hero-cta-wrap {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 34px;
        gap: 12px;
    }

    .rendering-btn-primary,
    .rendering-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }

    .rendering-hero-benefits {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        gap: 14px;
    }

    .benefit-v-divider {
        display: none;
    }

    .rendering-benefit-item {
        width: 100%;
    }

    /* Mobile Compact Stage */
    .showcase-3d-stage {
        max-width: 350px;
        height: 330px;
    }

    .showcase-main-render {
        max-width: 260px;
    }

    .card-product {
        top: 8px;
        left: -4px;
        width: 100px;
        height: 128px;
    }

    .card-architecture {
        top: 10px;
        right: -4px;
        width: 140px;
        height: 98px;
    }

    .card-car {
        bottom: 16px;
        right: -4px;
        width: 128px;
        height: 92px;
    }

    .card-bottom-label {
        font-size: 9px;
        padding: 3px 8px;
        bottom: 5px;
    }

    .card-bottom-label .label-dot {
        width: 4px;
        height: 4px;
    }
}

@media screen and (max-width: 480px) {
    .rendering-hero-title {
        font-size: clamp(22px, 6.8vw, 26px) !important;
        line-height: 1.2;
    }
}

/* ==========================================================================
   SECTION 02: WHAT WE CREATE (Interactive 3x2 Service Cards)
   ========================================================================== */

.rendering-create {
    position: relative;
    padding: 30px 0 40px;
    background: #FAFCFF;
    overflow: hidden;
}

/* Background Soft Ambient Accents */
.rendering-create::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 380px;
    background: radial-gradient(ellipse at center, rgba(0, 112, 243, 0.05) 0%, rgba(250, 252, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.rendering-create-container {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* Section Header */
.rendering-create-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 20px;
}

.create-eyebrow-wrap {
    justify-content: center;
    margin-bottom: 6px;
}

.create-line-left,
.create-line-right {
    width: 32px;
    height: 1.5px;
    background: linear-gradient(90deg, #0070F3, #00E5FF);
}

.rendering-create-title {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    line-height: 1.18;
    color: #0B1F44;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.rendering-create-title .text-blue {
    background: linear-gradient(135deg, #0052CC 0%, #0070F3 50%, #00C6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.rendering-create-desc {
    font-size: 14px;
    line-height: 1.45;
    color: #64748B;
    max-width: 620px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   SERVICE CARDS GRID (3x2)
   -------------------------------------------------------------------------- */
.rendering-create-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 20px;
}

/* Base Card Style */
.create-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 6px 20px rgba(11, 31, 68, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px 12px 10px;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
    will-change: transform, box-shadow;
    outline: none;
}

/* Card Hover States (User Steps 2 & 3) */
.create-card:hover,
.create-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(0, 112, 243, 0.38);
    box-shadow: 0 18px 40px rgba(0, 102, 255, 0.12),
                0 6px 16px rgba(11, 31, 68, 0.06);
}

/* --------------------------------------------------------------------------
   CARD VISUAL CONTAINER
   -------------------------------------------------------------------------- */
.card-visual-wrap {
    position: relative;
    width: 100%;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    background: #0B1F44;
}

.card-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    will-change: transform;
}

/* Step 1: Image slight zoom scale(1.03) */
.create-card:hover .card-visual-img,
.create-card:focus-visible .card-visual-img {
    transform: scale(1.035);
}

/* Step 5: Subtle dark/blue gradient overlay */
.card-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 27, 61, 0.05) 0%, rgba(0, 102, 255, 0.3) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.create-card:hover .card-visual-overlay,
.create-card:focus-visible .card-visual-overlay {
    opacity: 1;
}

/* Step 5: "View Capability →" reveal pill */
.card-capability-pill {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, -8px);
    opacity: 0;
    visibility: hidden;
    background: rgba(11, 27, 61, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    z-index: 4;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.3s ease;
    white-space: nowrap;
}

.card-capability-pill .pill-arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.create-card:hover .card-capability-pill,
.create-card:focus-visible .card-capability-pill {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.create-card:hover .card-capability-pill .pill-arrow {
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   CARD CONTENT AREA
   -------------------------------------------------------------------------- */
.card-content {
    padding: 8px 4px 2px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

/* Number Badge: Pill badge matching user reference */
.card-number-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0066FF;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 3px 8px;
    border-radius: 5px;
    margin-bottom: 5px;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 6px rgba(0, 102, 255, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.create-card:hover .card-number-badge {
    background: #0052CC;
    transform: scale(1.05);
}

/* Card Title */
.card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    color: #0B1F44;
    margin-bottom: 3px;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.create-card:hover .card-title {
    color: #0070F3;
}

/* Card Description */
.card-desc {
    font-size: 12px;
    line-height: 1.35;
    color: #64748B;
    margin-bottom: 6px;
    min-height: 28px;
}

/* 3 Small Points with Checkmarks */
.card-bullet-list {
    list-style: none;
    margin: 0 0 6px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-bullet-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    color: #334155;
}

/* Checkmark Icons */
.bullet-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    min-width: 14px;
}

.bullet-check svg {
    width: 13px;
    height: 13px;
}

.bullet-check.check-blue {
    color: #0066FF;
}

.bullet-check.check-teal {
    color: #10B981;
}

/* Card Action Footer & Button (Step 4: Rotate -> to ↗) */
.card-action-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 2px;
}

.card-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #EEF4FF;
    border: 1px solid #D8E5FE;
    color: #0066FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-action-btn svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.4;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover: Step 4 - Arrow rotates to ↗ and button turns vibrant blue */
.create-card:hover .card-action-btn,
.create-card:focus-visible .card-action-btn {
    background: #0066FF;
    border-color: #0066FF;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}

.create-card:hover .card-action-btn svg,
.create-card:focus-visible .card-action-btn svg {
    transform: rotate(-45deg);
}

/* ==========================================================================
   CARD-SPECIFIC HOVER MICRO-INTERACTIONS (User's Interesting Interactions)
   ========================================================================== */

/* --------------------------------------------------------------------------
   CARD 1: 3D Product Visualization - Camera shift & Studio light shimmer
   -------------------------------------------------------------------------- */
.card-shimmer-sweep {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
}

.card-product-vis:hover .card-visual-img {
    transform: scale(1.045) translate(-2px, -2px);
}

.card-product-vis:hover .card-shimmer-sweep {
    opacity: 1;
    animation: shimmerSweepOnce 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes shimmerSweepOnce {
    0% {
        transform: translateX(-100%) rotate(15deg);
    }
    100% {
        transform: translateX(120%) rotate(15deg);
    }
}

/* --------------------------------------------------------------------------
   CARD 2: Interior Design - Very subtle smooth camera zoom
   -------------------------------------------------------------------------- */
.card-interior-design:hover .card-visual-img {
    transform: scale(1.06);
    transition: transform 2.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-interior-design:hover .card-shimmer-sweep {
    opacity: 0.6;
    animation: shimmerSweepOnce 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* --------------------------------------------------------------------------
   CARD 3: Product Demo - Exploded parts separation pulse & glow flare
   -------------------------------------------------------------------------- */
.card-exploded-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.55) 0%, rgba(0, 112, 243, 0.2) 50%, rgba(0, 0, 0, 0) 75%);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-product-demo:hover .card-visual-img {
    transform: scale(1.045);
    filter: brightness(1.08) contrast(1.04);
}

.card-product-demo:hover .card-exploded-flare {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* --------------------------------------------------------------------------
   CARD 4: Motion Ads - High-energy Light Streak Sweep
   -------------------------------------------------------------------------- */
.card-motion-streak {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40px;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(0, 229, 255, 0) 0%,
        rgba(0, 229, 255, 0.6) 45%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(0, 229, 255, 0.6) 55%,
        rgba(0, 229, 255, 0) 100%
    );
    transform: rotate(25deg);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.85);
}

.card-motion-ads:hover .card-visual-img {
    transform: scale(1.04);
    filter: saturate(1.1);
}

.card-motion-ads:hover .card-motion-streak {
    opacity: 1;
    animation: motionStreakRun 1.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes motionStreakRun {
    0% {
        left: -60%;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        left: 140%;
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   CARD 5: 3D Modeling - Wireframe to Render Laser Scanline Sweep
   -------------------------------------------------------------------------- */
.card-scanline-laser {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    width: 3px;
    background: #00E5FF;
    box-shadow: 0 0 14px #00E5FF, 0 0 30px rgba(0, 229, 255, 0.9);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.card-scanline-laser::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60px;
    background: linear-gradient(270deg, rgba(0, 229, 255, 0.25) 0%, rgba(0, 229, 255, 0) 100%);
    pointer-events: none;
}

.card-3d-modeling:hover .card-visual-img {
    transform: scale(1.035);
}

.card-3d-modeling:hover .card-scanline-laser {
    opacity: 1;
    animation: laserScanAcross 1.6s ease-in-out infinite alternate;
}

@keyframes laserScanAcross {
    0% {
        left: -5%;
    }
    100% {
        left: 105%;
    }
}

/* --------------------------------------------------------------------------
   CARD 6: AI Creative - Multi-tile Ambient Glow Cycle
   -------------------------------------------------------------------------- */
.card-ai-cycle-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.3) 0%, transparent 50%);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

.card-ai-creative:hover .card-visual-img {
    transform: scale(1.035);
}

.card-ai-creative:hover .card-ai-cycle-glow {
    opacity: 1;
    animation: aiGlowPulse 2.5s ease-in-out infinite alternate;
}

@keyframes aiGlowPulse {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(60deg) brightness(1.15);
    }
    100% {
        filter: hue-rotate(120deg) brightness(1);
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUTS FOR SECTION 02
   ========================================================================== */

/* Laptop 1024px: Maintain 3-Column Layout */
@media screen and (max-width: 1200px) and (min-width: 901px) {
    .rendering-create {
        padding: 24px 0 32px;
    }

    .rendering-create-header {
        margin-bottom: 16px;
    }

    .rendering-create-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 16px;
    }

    .card-visual-wrap {
        height: 115px;
    }

    .card-content {
        padding: 6px 2px 0;
    }

    .card-number-badge {
        font-size: 10.5px;
        padding: 2.5px 7px;
        margin-bottom: 4px;
    }

    .card-title {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .card-desc {
        font-size: 11.5px;
        min-height: 26px;
        margin-bottom: 5px;
    }

    .card-bullet-list {
        gap: 3px;
        margin-bottom: 4px;
    }

    .card-bullet-list li {
        font-size: 11.5px;
        gap: 6px;
    }

    .bullet-check svg {
        width: 12px;
        height: 12px;
    }

    .card-action-btn {
        width: 28px;
        height: 28px;
    }

    .card-action-btn svg {
        width: 13px;
        height: 13px;
    }
}

/* Tablet (<= 900px): 2 Columns */
@media screen and (max-width: 900px) {
    .rendering-create {
        padding: 35px 0 45px;
    }

    .rendering-create-header {
        margin-bottom: 22px;
    }

    .rendering-create-title {
        font-size: clamp(24px, 4vw, 30px);
    }

    .rendering-create-desc {
        font-size: 14px;
    }

    .rendering-create-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .card-visual-wrap {
        height: 135px;
    }

    .card-content {
        padding: 8px 4px 0;
    }

    .card-title {
        font-size: 16.5px;
    }

    .card-desc {
        min-height: auto;
    }
}

/* Mobile (<= 640px): 1 Column */
@media screen and (max-width: 640px) {
    .rendering-create {
        padding: 55px 0 65px;
    }

    .rendering-create-container {
        padding: 0 16px;
    }

    .rendering-create-header {
        margin-bottom: 36px;
    }

    .rendering-create-title {
        font-size: clamp(24px, 6.5vw, 30px);
        margin-bottom: 12px;
    }

    .rendering-create-desc {
        font-size: 14.5px;
        line-height: 1.55;
    }

    .rendering-create-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 440px;
        margin: 0 auto;
    }

    .create-card {
        border-radius: 18px;
    }

    .card-content {
        padding: 20px 20px 18px;
    }

    .card-number-badge {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .card-title {
        font-size: 18.5px;
    }

    .card-desc {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .card-bullet-list li {
        font-size: 13.5px;
    }

    .card-action-btn {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   SECTION 03: OUR CREATIVE PROCESS (Interactive Steps + Before/After Slider)
   ========================================================================== */

.rendering-process {
    position: relative;
    padding: 50px 0 0;
    background: #FFFFFF;
    overflow: hidden;
}

/* Subtle ambient background highlight */
.rendering-process::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.rendering-process-container {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* Header */
.rendering-process-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 36px;
}

.process-eyebrow-wrap {
    justify-content: center;
    margin-bottom: 6px;
}

.process-line-left,
.process-line-right {
    width: 32px;
    height: 1.5px;
    background: linear-gradient(90deg, #0070F3, #00E5FF);
}

.rendering-process-title {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    line-height: 1.18;
    color: #0B1F44;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.rendering-process-desc {
    font-size: 14px;
    line-height: 1.45;
    color: #64748B;
    max-width: 620px;
    margin: 0 auto;
}

/* 2-Column Grid */
.rendering-process-content-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
}

/* --------------------------------------------------------------------------
   LEFT COLUMN: PROCESS STEPS (Click / Tap Based)
   -------------------------------------------------------------------------- */
.process-steps-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Vertical Timeline Track */
.process-timeline-line {
    position: absolute;
    left: 34px;
    top: 30px;
    bottom: 35px;
    width: 1.5px;
    background: transparent;
    border-left: 1.5px dashed #93C5FD;
    z-index: 1;
}

.process-timeline-progress {
    width: 2px;
    height: 33%;
    background: #0066FF;
    position: absolute;
    top: 0;
    left: -1.5px;
    border-radius: 2px;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.6);
}

/* Process Step Item */
.process-step-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 12px;
    border-radius: 14px;
    background: transparent;
    border: 1.5px solid transparent;
    cursor: pointer;
    z-index: 2;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    user-select: none;
}

.process-step-item:hover {
    background: rgba(240, 246, 255, 0.6);
    transform: translateX(4px);
}

.process-step-item.is-active {
    background: transparent;
    transform: translateX(4px);
}

/* Step Number Badge */
.step-num-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #E1EFFF;
    color: #0066FF;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #CFE2FE;
    transition: all 0.3s ease;
    margin-top: 1px;
    z-index: 2;
}

.process-step-item:hover .step-num-badge {
    border-color: #0066FF;
}

.process-step-item.is-active .step-num-badge {
    background: #0066FF;
    color: #ffffff;
    border-color: #0066FF;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}

/* Step Icon Box */
.step-icon-box {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: #EDF5FF;
    color: #0066FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #D6E8FF;
    transition: all 0.3s ease;
    margin-top: 0;
    z-index: 2;
}

.step-icon-box svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.process-step-item:hover .step-icon-box svg {
    transform: scale(1.1);
}

.process-step-item.is-active .step-icon-box {
    border-color: #0066FF;
    box-shadow: 0 0 14px rgba(0, 102, 255, 0.25);
}

/* Step Text Info */
.step-info {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: #0B1F44;
    line-height: 1.25;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.process-step-item.is-active .step-title {
    color: #0066FF;
}

.step-desc {
    font-size: 13.5px;
    color: #4B5563;
    line-height: 1.45;
    margin-bottom: 6px;
    max-width: 380px;
}

.step-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #0066FF;
}

.breadcrumb-arrow {
    color: #0066FF;
    font-size: 12px;
    font-weight: bold;
}

/* --------------------------------------------------------------------------
   RIGHT COLUMN: VISUAL TRANSFORMATION SHOWCASE CARD
   -------------------------------------------------------------------------- */
.process-showcase-card {
    background: #F4F9FF;
    border-radius: 20px;
    border: 1.5px solid #DCEBFA;
    box-shadow: 0 16px 40px rgba(0, 102, 255, 0.06);
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 16px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Left Thumbnail Rail */
.process-thumbs-strip {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding-right: 14px;
    border-right: none;
}

.thumb-timeline-rail {
    position: absolute;
    right: 0;
    top: 18px;
    bottom: 18px;
    width: 1.5px;
    background: #60A5FA;
}

.thumb-dot {
    position: absolute;
    right: -3px;
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: #0066FF;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.thumb-dot.dot-1 { top: 9%; }
.thumb-dot.dot-2 { top: 36%; }
.thumb-dot.dot-3 { top: 63%; }
.thumb-dot.dot-4 { top: 90%; }

.thumb-dot.is-active {
    box-shadow: 0 0 10px #0066FF, 0 0 4px #00E5FF;
    transform: scale(1.35);
}

.process-thumb-btn {
    width: 68px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #CBD5E1;
    background: #ffffff;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    z-index: 2;
}

.process-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.process-thumb-btn:hover {
    border-color: #0066FF;
    transform: scale(1.05);
}

.process-thumb-btn.is-active {
    border-color: #0066FF;
    box-shadow: 0 3px 12px rgba(0, 102, 255, 0.35);
    transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   INTERACTIVE BEFORE / AFTER SLIDER
   -------------------------------------------------------------------------- */
.process-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    border-radius: 12px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: ew-resize;
    background: #07142A;
    touch-action: pan-y;
}

.slider-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Before Layer (Base) */
.slider-before-layer {
    z-index: 1;
}

/* After Layer (Revealed overlay with Clip-Path) */
.slider-after-layer {
    z-index: 2;
    clip-path: polygon(var(--slider-pct, 50%) 0, 100% 0, 100% 100%, var(--slider-pct, 50%) 100%);
    will-change: clip-path;
}

/* Pill Labels (Top Left & Top Right) */
.slider-label {
    position: absolute;
    top: 10px;
    padding: 3.5px 9px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 5;
    text-transform: uppercase;
}

.label-before {
    left: 10px;
    background: rgba(11, 27, 61, 0.88);
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.45);
    backdrop-filter: blur(8px);
}

.label-after {
    right: 10px;
    background: rgba(11, 27, 61, 0.88);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

/* Center-Bottom Play Button Overlay (matching reference) */
.slider-play-btn {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(11, 27, 61, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 16px rgba(0, 229, 255, 0.35);
    z-index: 7;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.slider-play-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
    fill: #ffffff;
}

.slider-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: #0066FF;
    border-color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.6), 0 0 25px rgba(0, 229, 255, 0.6);
}

/* Draggable Divider Line & Knob */
.slider-handle-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--slider-pct, 50%);
    transform: translateX(-50%);
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    cursor: grab;
    pointer-events: auto;
    outline: none;
}

.slider-handle-divider:active {
    cursor: grabbing;
}

.slider-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 229, 255, 0.85);
}

.slider-handle-knob {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #0066FF;
    border: 2px solid #0066FF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-handle-knob svg {
    width: 12px;
    height: 12px;
}

.slider-handle-divider:hover .slider-handle-knob,
.slider-handle-divider:focus-visible .slider-handle-knob {
    transform: scale(1.12);
    box-shadow: 0 0 18px rgba(0, 112, 243, 0.6);
}

/* Drag Hint Pill */
.slider-drag-hint {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 27, 61, 0.8);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.92);
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 5;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.is-dragging .slider-drag-hint {
    opacity: 0;
}

/* --------------------------------------------------------------------------
   8-SECOND 3D COMMERCIAL VIDEO PLAYER OVERLAY
   -------------------------------------------------------------------------- */
.process-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 15, 38, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-video-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.video-overlay-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #000000;
}

.commercial-video-element,
.commercial-video-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(3, 15, 38, 0.9) 0%, transparent 100%);
    z-index: 10;
}

.video-title-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.video-rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF0055;
    box-shadow: 0 0 10px #FF0055;
    animation: recBlink 1s infinite alternate;
}

@keyframes recBlink {
    0% { opacity: 0.35; }
    100% { opacity: 1; }
}

.video-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.video-close-btn:hover {
    background: #FF0055;
    border-color: #FF0055;
    transform: scale(1.08);
}

.video-close-btn svg {
    width: 15px;
    height: 15px;
}

.video-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 18px 14px;
    background: linear-gradient(0deg, rgba(3, 15, 38, 0.95) 0%, transparent 100%);
    z-index: 10;
}

.video-timeline-scrub {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.video-timeline-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0070F3 0%, #00E5FF 100%);
    border-radius: 3px;
    transition: width 0.08s linear;
}

.video-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-ctrls-left,
.video-ctrls-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-ctrl-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.video-ctrl-btn:hover {
    color: #00E5FF;
    transform: scale(1.12);
}

.video-ctrl-btn svg {
    width: 18px;
    height: 18px;
}

.video-time-display {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   SECTION 04: CTA BANNER (HAVE AN IDEA? LET'S CREATE IT.)
   ========================================================================== */

.rendering-cta-section {
    position: relative;
    padding: 10px 0 60px;
    background: #FAFCFF;
    overflow: hidden;
}

.rendering-cta-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rendering-cta-card {
    position: relative;
    border-radius: 20px;
    background: radial-gradient(circle at 88% 25%, #033B85 0%, #021B42 55%, #010D24 100%);
    overflow: hidden;
    padding: 36px 44px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(1, 13, 36, 0.4);
    border: 1.5px solid rgba(0, 229, 255, 0.4);
}

/* Glowing Ambient Waves */
.cta-ambient-wave {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 650px 320px at 45% 65%, rgba(0, 112, 243, 0.35) 0%, transparent 70%),
                radial-gradient(circle 280px at 78% 30%, rgba(0, 229, 255, 0.22) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: ctaWaveFlow 14s ease-in-out infinite alternate;
}

@keyframes ctaWaveFlow {
    0% {
        transform: translateX(-2%) scale(1);
    }
    100% {
        transform: translateX(2%) scale(1.03);
    }
}

/* CTA Left Column */
.cta-content-col {
    position: relative;
    z-index: 2;
}

.cta-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cta-eyebrow-text {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #00E5FF;
}

.cta-eyebrow-line {
    width: 24px;
    height: 1.5px;
    background: #00E5FF;
    border-radius: 1px;
}

.cta-title {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
    max-width: 480px;
}

.cta-action-row {
    display: flex;
    align-items: center;
}

/* CTA Button Interaction (User Specifications) */
.cta-btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0066FF;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.35);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.25s ease,
                background-color 0.25s ease;
}

.cta-btn-glow .btn-arrow {
    font-size: 16px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-glow:hover {
    transform: translateY(-2px);
    background-color: #0052cc;
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.55), 0 0 15px rgba(0, 229, 255, 0.4);
    color: #ffffff;
}

.cta-btn-glow:hover .btn-arrow {
    transform: translateX(4px);
}

/* CTA Right Visuals Column */
.cta-visuals-col {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
    perspective: 800px;
}

.cta-floating-card {
    position: relative;
    width: 155px;
    height: 142px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #00D4FF;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 16px rgba(0, 212, 255, 0.4);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    cursor: pointer;
}

.cta-floating-card.card-perfume {
    transform: rotate(-1.8deg) translateY(1px);
}

.cta-floating-card.card-automotive {
    transform: translateY(-2px);
}

.cta-floating-card.card-interior {
    transform: rotate(1.8deg) translateY(1px);
}

.cta-floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cta-floating-card:hover {
    transform: translateY(-6px) scale(1.05) rotate(0deg) !important;
    border-color: #00FFFF;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 24px rgba(0, 255, 255, 0.7);
}

.cta-floating-card:hover img {
    transform: scale(1.06);
}

.cta-card-neon-border {
    position: absolute;
    inset: 0;
    border-radius: 13px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.cta-floating-card:hover .cta-card-neon-border {
    border-color: rgba(0, 229, 255, 0.8);
}

/* ==========================================================================
   RESPONSIVE STYLES FOR SECTION 03 & SECTION 04
   ========================================================================== */

/* Laptop 1024px: Maintain Side-by-Side Layout */
@media screen and (max-width: 1200px) and (min-width: 901px) {
    .rendering-process-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .process-showcase-card {
        grid-template-columns: 74px 1fr;
        gap: 12px;
        padding: 12px 14px;
    }

    .process-thumb-btn {
        width: 60px;
        height: 42px;
    }

    .step-title {
        font-size: 15.5px;
    }

    .step-desc {
        font-size: 12px;
    }

    .step-breadcrumbs {
        font-size: 11px;
    }

    .rendering-cta-card {
        grid-template-columns: 1fr 1fr;
        padding: 30px 32px;
        gap: 20px;
    }

    .cta-floating-card {
        width: 115px;
    }
}

/* Tablet (<= 900px): Clean Stack */
@media screen and (max-width: 900px) {
    .rendering-process-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-showcase-card {
        max-width: 620px;
        margin: 0 auto;
    }

    .rendering-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 24px;
        gap: 28px;
    }

    .cta-eyebrow-wrap {
        justify-content: center;
    }

    .cta-desc {
        margin: 0 auto 20px;
    }

    .cta-action-row {
        justify-content: center;
    }

    .cta-visuals-col {
        justify-content: center;
    }
}

/* Mobile (<= 640px) */
@media screen and (max-width: 640px) {
    .rendering-process {
        padding: 40px 0 50px;
    }

    .process-showcase-card {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 12px;
    }

    .process-thumbs-strip {
        flex-direction: row;
        border-right: none;
        border-bottom: 1.5px solid #F1F5F9;
        padding-right: 0;
        padding-bottom: 10px;
        justify-content: center;
    }

    .thumb-timeline-rail {
        display: none;
    }

    .process-thumb-btn {
        width: 64px;
        height: 44px;
    }

    .step-num-badge {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }

    .step-icon-box {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .step-icon-box svg {
        width: 17px;
        height: 17px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-desc {
        font-size: 12px;
    }

    .cta-floating-card {
        width: 92px;
    }
}


