        /* ========================
           ACCENTURE-STYLE HERO - Full Width Layout
           ======================== */
        .hero-accenture {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 40px 0 40px;
        }

        /* Screen lock during KRITORO intro — no scroll, no click */
        body.hero-intro-locked {
            overflow: hidden !important;
        }

        .hero-intro-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: all;
            background: transparent;
            cursor: default;
        }

        .hero-intro-overlay.done {
            pointer-events: none;
            display: none;
        }

        .hero-accenture::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Background KRITORO Text — starts FULLY OPAQUE for intro, JS fades to watermark */
        .hero-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 900;
            letter-spacing: 10px;
            text-transform: uppercase;
            font-family: var(--font-kritoro);
            color: rgba(255, 255, 255, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            z-index: 2;
            pointer-events: none;
            white-space: nowrap;
            user-select: none;
            transition: color 1s ease, z-index 0s linear 1s;
        }

        .hero-bg-text .intro-main-word {
            font-size: clamp(60px, 10vw, 180px);
            line-height: 1;
        }

        .hero-bg-text .intro-sub-word {
            font-size: clamp(14px, 2.5vw, 36px);
            letter-spacing: 0.3em;
            font-weight: 600;
            opacity: 0.8;
        }

        .hero-bg-text.watermark {
            color: rgba(255, 255, 255, 0.04);
            z-index: 0;
        }

        .hero-bg-text.watermark .intro-sub-word {
            opacity: 0.04;
        }

        .hero-bg-text .flip-letter {
            display: inline-block;
            transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: opacity, transform;
        }

        .hero-bg-text .flip-letter.flipping {
            animation: letterMorph 0.7s ease-in-out;
        }

        @keyframes letterMorph {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }

            35% {
                opacity: 0;
                transform: translateY(-20px) scale(0.8);
            }

            65% {
                opacity: 0;
                transform: translateY(20px) scale(0.8);
            }

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

        .hero-bg-text .flip-letter.letter-emphasis {
            animation: letterPulse 0.5s ease-out;
        }

        @keyframes letterPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.15);
                opacity: 1;
            }

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

        /* Hero Main Content — full width */
        .hero-main-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4vw;
            align-items: center;
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 6vw;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .hero-main-content.visible {
            opacity: 1;
        }

        /* LEFT column — headline + CTA */
        .hero-left-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
        }

        .hero-headline {
            margin-bottom: 0;
        }

        .hero-headline h1 {
            font-family: var(--font-display);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.08;
            margin: 0;
        }

        .hero-headline .headline-top {
            font-size: 4.8vw;
            letter-spacing: 1px;
            display: block;
        }

        .hero-headline .headline-bottom {
            font-size: 4.8vw;
            letter-spacing: 1px;
            display: block;
            margin-top: 0.4vw;
        }

        .headline-accent {
            color: #8855ff;
            font-weight: 700;
        }

        /* Accent line */
        .hero-accent-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #6366f1, #8855ff);
            border-radius: 2px;
            margin-left: auto;
            margin-right: 0;
            transform-origin: right;
            transform: scaleX(0);
            transition: transform 1s ease-out;
        }

        .hero-accent-line.visible {
            transform: scaleX(1);
        }

        .hero-description {
            max-width: 26vw;
            margin-left: auto;
            text-align: right;
        }

        .hero-description p {
            font-size: clamp(13px, 1.15vw, 18px);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.2px;
            font-weight: 400;
        }

        .hero-cta-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        /* RIGHT column — description + accent */
        .hero-right-col {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            position: relative;
            gap: 24px;
        }

        /* ===== RESPONSIVE HERO ===== */

        @media (max-width: 1024px) {
            .hero-main-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .hero-headline .headline-top,
            .hero-headline .headline-bottom {
                font-size: clamp(28px, 4.5vw, 52px);
            }
        }

        @media (max-width: 768px) {
            .hero-accenture {
                min-height: auto;
                padding: 110px 0 60px;
            }

            .hero-main-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
                padding: 0 24px;
            }

            .hero-left-col {
                align-items: center;
                gap: 20px;
            }

            .hero-headline .headline-top,
            .hero-headline .headline-bottom {
                font-size: clamp(26px, 7vw, 42px);
                letter-spacing: 0.5px;
            }

            .hero-headline .headline-bottom {
                margin-top: 4px;
            }

            .hero-accent-line {
                margin: 4px auto 0;
            }

            .hero-description {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }

            .hero-description p {
                font-size: clamp(14px, 3.5vw, 17px);
                line-height: 1.7;
            }

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

            .hero-right-col {
                align-items: center;
            }

            .hero-bg-text .intro-main-word {
                font-size: clamp(36px, 10vw, 80px);
                letter-spacing: 4px;
            }

            .hero-bg-text .intro-sub-word {
                font-size: clamp(10px, 3vw, 18px);
                letter-spacing: 0.2em;
            }
        }

        @media (max-width: 375px) {
            .hero-accenture {
                padding: 100px 0 40px;
            }

            .hero-headline .headline-top,
            .hero-headline .headline-bottom {
                font-size: 24px;
            }

            .hero-description p {
                font-size: 14px;
            }

            .hero-bg-text .intro-main-word {
                font-size: 32px;
                letter-spacing: 2px;
            }

            .hero-bg-text .intro-sub-word {
                font-size: 9px;
                letter-spacing: 0.15em;
            }
        }

        /* Mid-range laptops - 1200px to 1439px */
        @media (min-width: 1200px) and (max-width: 1439px) {
            .hero-bg-text .intro-main-word {
                font-size: clamp(50px, 8vw, 140px);
            }
        }

        /* Large screens */
        @media (min-width: 1440px) {

            .hero-bg-text .intro-main-word {
                font-size: clamp(60px, 10vw, 180px);
            }
        }
