        html { scroll-behavior: smooth; }

        body.home-flow {
            position: relative;
            overflow-x: hidden;
            background: #ffffff;
        }

        body.home-flow::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(circle at 8% 12%, rgba(75, 142, 255, 0.05), transparent 22%),
                radial-gradient(circle at 84% 18%, rgba(86, 224, 214, 0.04), transparent 20%),
                radial-gradient(circle at 70% 65%, rgba(62, 128, 255, 0.03), transparent 20%);
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            z-index: 99999;
            background: linear-gradient(90deg, #2d74ff, #5eb7ff, #77e0d3);
            box-shadow: 0 0 15px rgba(45, 116, 255, 0.35);
        }

        #myBtn {
            display: none;
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 9999;
            width: 46px;
            height: 46px;
            border: none;
            border-radius: 20%;
            background: #12386a;
            color: #fff;
            font-size: 22px;
            line-height: 6px;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 10px 24px rgba(18, 56, 106, 0.24);
            transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
        }

        #myBtn:hover {
            transform: translateY(-3px);
            background: #0f2f57;
            box-shadow: 0 16px 30px rgba(18, 56, 106, 0.28);
        }

        .site-main { position: relative; z-index: 2; }
        .container { position: relative; z-index: 2; }

        .site-section {
            position: relative;
            z-index: 2;
            overflow: hidden;
            padding-top: 95px;
            padding-bottom: 95px;
        }

        .section-white { background: #ffffff; }

        .section-blue-soft {
            background:
                radial-gradient(circle at 15% 0%, rgba(94, 174, 255, 0.11), transparent 28%),
                radial-gradient(circle at 85% 100%, rgba(82, 162, 255, 0.10), transparent 24%),
                linear-gradient(180deg, #ffffff 0%, #f7fbff 22%, #eef7ff 48%, #e8f3ff 72%, #f7fbff 100%);
        }

        .section-dark-end {
            background: linear-gradient(135deg, #102643, #1a3c73);
        }

        /* ===== PHASE 1 ===== */
        .mini-intro-scene {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, #06101c 0%, #0b1a31 45%, #102d54 100%);
        }

        .mini-intro-scene::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 440px;
            pointer-events: none;
            z-index: 1;
            background:
                radial-gradient(circle at 50% 120%, rgba(108, 188, 255, 0.14), transparent 34%),
                linear-gradient(
                    to bottom,
                    rgba(255,255,255,0) 0%,
                    rgba(255,255,255,0) 81%,
                    rgba(12,28,51,0.00) 89%,
                    rgba(18,40,71,0.03) 93%,
                    rgba(205,229,248,0.10) 96%,
                    rgba(241,248,255,0.62) 98.8%,
                    rgba(247,251,255,0.98) 100%
                );
        }

        .mini-intro-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .mini-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 54px 54px;
            opacity: .14;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 88%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 88%);
        }

        .mini-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: .58;
        }

        .mini-orb-1 {
            width: 320px;
            height: 320px;
            top: 40px;
            left: -80px;
            background: rgba(85, 145, 255, 0.28);
        }

        .mini-orb-2 {
            width: 320px;
            height: 320px;
            right: -70px;
            bottom: 0;
            background: rgba(104, 203, 255, 0.22);
        }

        .mini-intro-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 160px 6vw 120px;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .mini-intro-copy,
        .mini-intro-visual { will-change: transform; }

        .mini-intro-copy { max-width: 500px; }

        .mini-kicker {
            display: inline-block;
            margin-bottom: 18px;
            padding: 8px 13px;
            border-radius: 999px;
            background: rgba(255,255,255,0.10);
            border: 1px solid rgba(255,255,255,0.14);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .4px;
            text-transform: uppercase;
        }

        .mini-copy-reveal .mini-kicker,
        .mini-copy-reveal .mini-line,
        .mini-copy-reveal p {
            opacity: 0;
            transform: translateY(22px);
            animation: miniFadeUp 1s ease forwards;
        }

        .mini-copy-reveal .mini-kicker { animation-delay: 0.15s; }
        .mini-copy-reveal .mini-line-1 { animation-delay: 0.40s; }
        .mini-copy-reveal .mini-line-2 { animation-delay: 0.75s; }
        .mini-copy-reveal p { animation-delay: 1.05s; }

        @keyframes miniFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .mini-intro-copy h2 {
            margin: 0 0 18px;
            color: #fff;
            font-size: 82px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -2px;
            max-width: 520px;
        }

        .mini-intro-copy h2 .mini-line { display: block; }

        .mini-intro-copy p {
            margin: 0;
            color: rgba(255,255,255,0.82);
            font-size: 18px;
            line-height: 1.95;
            max-width: 430px;
        }

        .mini-intro-visual {
            position: relative;
            width: 100%;
            min-height: 430px;
            max-width: 760px;
            justify-self: end;
        }

        .mini-shot {
            position: absolute;
            overflow: hidden;
            border-radius: 16px;
            background: rgba(255,255,255,0.10);
            border: 1px solid rgba(255,255,255,0.18);
            box-shadow: 0 20px 50px rgba(0,0,0,0.18);
            backdrop-filter: blur(8px);
            transform-style: preserve-3d;
            transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
            animation: miniCardsIn .9s ease both;
        }

        .mini-shot::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(116, 194, 255, 0.22), transparent 65%);
            opacity: 0;
            transition: opacity .35s ease;
            pointer-events: none;
        }

        .mini-shot:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 26px 60px rgba(0,0,0,0.24);
            border-color: rgba(125, 205, 255, 0.42);
        }

        .mini-shot:hover::after { opacity: 1; }

        .mini-shot img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .55s ease;
        }

        .mini-shot:hover img { transform: scale(1.07); }

        @keyframes miniCardsIn {
            from { opacity: 0; transform: translateY(30px) scale(.96); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .mini-shot-main { animation-delay: .20s; }
        .mini-shot-1 { animation-delay: .35s; }
        .mini-shot-2 { animation-delay: .50s; }
        .mini-shot-3 { animation-delay: .65s; }
        .mini-shot-4 { animation-delay: .80s; }
        .mini-shot-5 { animation-delay: .95s; }

        .mini-shot-main { width: 340px; height: 220px; right: 120px; top: 92px; }
        .mini-shot-medium { width: 230px; height: 160px; }
        .mini-shot-small { width: 170px; height: 120px; }
        .mini-shot-1 { left: 10px; top: 22px; }
        .mini-shot-2 { left: 74px; bottom: 26px; }
        .mini-shot-3 { right: 0; top: 0; }
        .mini-shot-4 { right: 18px; bottom: 0; }
        .mini-shot-5 { left: 280px; top: 0; }

        /* ===== PHASE 2 ===== */
        .hero-immersive {
            position: relative;
            width: 100%;
            min-height: 92vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            background:
                radial-gradient(circle at 0% 0%, rgba(96, 182, 255, 0.11), transparent 24%),
                radial-gradient(circle at 100% 100%, rgba(95, 168, 255, 0.09), transparent 20%),
                linear-gradient(180deg, #f9fcff 0%, #f3f9ff 24%, #ecf6ff 48%, #e7f3ff 74%, #f7fbff 100%);
        }

        .hero-immersive-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: .45;
        }

        .hero-glow-1 {
            width: 360px;
            height: 360px;
            top: 30px;
            left: -80px;
            background: rgba(86, 146, 255, 0.18);
        }

        .hero-glow-2 {
            width: 320px;
            height: 320px;
            right: -60px;
            bottom: 30px;
            background: rgba(111, 231, 214, 0.12);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(17, 51, 95, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(17, 51, 95, 0.03) 1px, transparent 1px);
            background-size: 56px 56px;
            opacity: .55;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 92%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 92%);
        }

        .hero-noise { display: none; }

        .hero-immersive-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: none;
            padding: 125px 5vw 110px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 70px;
        }

        .hero-immersive-left,
        .hero-immersive-right { will-change: transform; }

        .hero-immersive-left { width: 100%; max-width: 700px; }
        .hero-immersive-right { width: 100%; max-width: 560px; }

        .hero-badge {
            display: inline-block;
            margin-bottom: 18px;
            padding: 9px 15px;
            border-radius: 999px;
            background: rgba(18, 56, 106, 0.08);
            border: 1px solid rgba(18, 56, 106, 0.10);
            color: #153765;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .4px;
            text-transform: uppercase;
        }

        .hero-immersive-left h1 {
            margin: 0 0 24px;
            color: #112848;
            font-size: 66px;
            line-height: 1.02;
            font-weight: 700;
            letter-spacing: -1.5px;
            max-width: 720px;
        }

        .hero-accent { display: block; color: #2d74ff; }

        .hero-subtext {
            font-size: 19px;
            line-height: 1.9;
            color: #53657c;
            margin-bottom: 36px;
            max-width: 610px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 36px;
        }

        .hero-btn {
            min-width: 190px;
            text-align: center;
            border-radius: 999px;
            padding: 14px 26px;
            font-weight: 600;
            transition: all .25s ease;
        }

        .hero-btn-outline {
            border: 1px solid rgba(18, 56, 106, 0.14);
            background: #ffffff;
            color: #153765;
        }

        .hero-btn:hover { transform: translateY(-2px); }

        .hero-feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-feature {
            min-width: 180px;
            flex: 1 1 180px;
            background: rgba(255,255,255,0.88);
            border: 1px solid #e5eef8;
            border-radius: 16px;
            padding: 20px;
            color: #153765;
            box-shadow: 0 14px 35px rgba(16, 24, 40, 0.05);
        }

        .hero-feature strong {
            display: block;
            margin-bottom: 7px;
            font-size: 16px;
            font-weight: 700;
            color: #12386a;
        }

        .hero-feature span {
            display: block;
            color: #607389;
            font-size: 14px;
            line-height: 1.7;
        }

        .hero-showcase-shell {
            position: relative;
            min-height: 520px;
        }

        .hero-card-main {
            position: relative;
            z-index: 2;
            background: rgba(255,255,255,0.96);
            border: 1px solid #e6eef8;
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 28px 70px rgba(16, 24, 40, 0.10);
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .hero-card-main:hover {
            transform: translateY(-4px);
            box-shadow: 0 32px 78px rgba(16, 24, 40, 0.12);
        }

        .hero-panel-top {
            display: flex;
            gap: 7px;
            margin-bottom: 18px;
        }

        .hero-panel-top span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d3dceb;
        }

        .hero-showcase-label {
            display: inline-block;
            margin-bottom: 12px;
            padding: 6px 10px;
            border-radius: 999px;
            background: #edf4ff;
            color: #2156b7;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .4px;
        }

        .hero-card-main h3 {
            margin: 0 0 14px;
            color: #1a2940;
            font-size: 34px;
            line-height: 1.18;
        }

        .hero-card-main p {
            margin: 0 0 22px;
            color: #607089;
            font-size: 15px;
            line-height: 1.9;
        }

        .hero-showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .hero-showcase-box {
            background: #f7fafe;
            border: 1px solid #e7eef7;
            border-radius: 14px;
            padding: 18px;
            min-height: 124px;
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
        }

        .hero-showcase-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(28, 41, 64, 0.08);
            background: #ffffff;
        }

        .hero-showcase-box strong {
            display: block;
            margin-bottom: 8px;
            color: #1a2940;
            font-size: 15px;
        }

        .hero-showcase-box span {
            display: block;
            color: #63748a;
            font-size: 14px;
            line-height: 1.7;
        }

        .hero-bottom-fade {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 120px;
            background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff 100%);
            z-index: 1;
            pointer-events: none;
        }

        /* HARD RESET */
        #hero.hero-immersive,
        .hero-immersive {
            position: relative !important;
            width: 100% !important;
            height: auto !important;
            min-height: 0 !important;
            max-height: none !important;
            overflow: visible !important;
        }

        #hero .hero-immersive-inner,
        .hero-immersive-inner {
            position: relative !important;
            z-index: 2 !important;
            width: 100% !important;
            height: auto !important;
            min-height: 0 !important;
            max-height: none !important;
            overflow: visible !important;
        }

        #hero .hero-immersive-left,
        #hero .hero-immersive-right,
        .hero-immersive-left,
        .hero-immersive-right {
            position: relative !important;
            display: block !important;
            height: auto !important;
            min-height: 0 !important;
            max-height: none !important;
            overflow: visible !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        #hero .hero-showcase-shell,
        #hero .hero-card-main,
        .hero-showcase-shell,
        .hero-card-main {
            height: auto !important;
            min-height: 0 !important;
            max-height: none !important;
            overflow: visible !important;
        }

        .flow-reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity .8s ease, transform .8s ease;
        }

        .flow-reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .flow-reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity .85s ease, transform .85s ease;
        }

        .flow-reveal-left.in-view {
            opacity: 1;
            transform: translateX(0);
        }

        .flow-reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity .85s ease, transform .85s ease;
        }

        .flow-reveal-right.in-view {
            opacity: 1;
            transform: translateX(0);
        }

        .section-intro { padding-top: 95px; padding-bottom: 40px; }

        .intro-box { max-width: 980px; margin: 0 auto; }

        .intro-text {
            font-size: 18px;
            line-height: 1.95;
            color: #5c6470;
            margin-top: 20px;
        }

        .section-lead {
            max-width: 920px;
            margin: 0 auto 50px;
            font-size: 18px;
            line-height: 1.9;
            color: #5c6470;
        }

        .services-row {
            margin-top: 25px;
            display: flex;
            flex-wrap: wrap;
        }

        .services-row > [class*="col-"] {
            display: flex;
            margin-bottom: 30px;
        }

        .service-card {
            position: relative;
            background: rgba(255,255,255,0.92);
            border-radius: 14px;
            padding: 36px 28px;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 12px 35px rgba(16, 24, 40, 0.08);
            transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
            overflow: hidden;
            backdrop-filter: blur(4px);
        }

        .service-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45,116,255,0.06), rgba(124,224,209,0.04));
            opacity: 0;
            transition: opacity .28s ease;
            pointer-events: none;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 44px rgba(16, 24, 40, 0.14);
            background: #ffffff;
        }

        .service-card:hover::after { opacity: 1; }

        .service-icon-wrap {
            width: 82px;
            height: 82px;
            margin: 0 auto 22px;
            padding: 16px;
            border-radius: 50%;
            background: #f3f7fc;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .25s ease, background .25s ease;
            flex-shrink: 0;
        }

        .service-card:hover .service-icon-wrap {
            transform: scale(1.05);
            background: #edf5ff;
        }

        .service-icon-wrap img {
            max-width: 100%;
            max-height: 100%;
        }

        .service-card .service-title {
            font-size: 22px;
            margin-bottom: 15px;
            min-height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card .service-info {
            font-size: 15px;
            line-height: 1.85;
            color: #667085;
            margin-bottom: 0;
            flex-grow: 1;
        }

        .why-row { margin-top: 20px; }

        .why-card {
            background: rgba(255,255,255,0.95);
            border: 1px solid #e8eef5;
            border-radius: 14px;
            padding: 32px 26px;
            margin-bottom: 25px;
            height: 100%;
            transition: transform .26s ease, box-shadow .26s ease, background .26s ease;
            backdrop-filter: blur(3px);
        }

        .why-card:hover {
            background: #ffffff;
            transform: translateY(-6px);
            box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
        }

        .why-card h4 {
            font-size: 21px;
            margin-bottom: 14px;
            color: #1f2b3d;
        }

        .why-card p {
            margin-bottom: 0;
            color: #667085;
            line-height: 1.85;
            font-size: 15px;
        }

        .portfolio-home-row { margin-top: 25px; }

        .portfolio-card {
            background: rgba(255,255,255,0.98);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 14px 35px rgba(16, 24, 40, 0.08);
            transition: transform .28s ease, box-shadow .28s ease;
            margin-bottom: 30px;
        }

        .portfolio-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 22px 48px rgba(16, 24, 40, 0.14);
        }

        .portfolio-card img {
            width: 100%;
            display: block;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            transition: transform .45s ease;
        }

        .portfolio-card:hover img { transform: scale(1.04); }

        .portfolio-card-body { padding: 22px 20px 24px; }

        .portfolio-card .portfolio-item-title {
            font-size: 20px;
            margin-bottom: 10px;
            min-height: 48px;
        }

        .portfolio-card a {
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .portfolio-cta { margin-top: 20px; }

        .cta-home-box {
            position: relative;
            border-radius: 16px;
            padding: 64px 34px;
            color: #fff;
            box-shadow: 0 22px 55px rgba(18, 38, 74, 0.25);
            overflow: hidden;
        }

        .cta-home-box::before {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            top: -120px;
            right: -80px;
            background: rgba(255,255,255,0.08);
            filter: blur(10px);
        }

        .cta-home-box h3 {
            position: relative;
            z-index: 2;
            color: #fff;
            font-size: 34px;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .cta-home-box p {
            position: relative;
            z-index: 2;
            max-width: 760px;
            margin: 0 auto 25px;
            font-size: 18px;
            line-height: 1.9;
            color: rgba(255,255,255,0.92);
        }

        .btn.btn-primary,
        .btn.btn-gray {
            border-radius: 999px;
            padding: 12px 24px;
            transition: all .25s ease;
        }

        .btn.btn-primary:hover,
        .btn.btn-gray:hover { transform: translateY(-2px); }

        .btn.btn-gray {
            background: #eef3f8;
            color: #16335f;
            border-color: transparent;
        }

        .btn.btn-gray:hover {
            background: #ffffff;
            color: #16335f;
        }

        @media (min-width: 1200px) {
            body.home-flow .container {
                width: 100%;
                max-width: 1320px;
            }
        }

        @media (max-width: 1200px) {
            .mini-intro-copy h2 { font-size: 72px; }
            .hero-immersive-left h1 { font-size: 58px; }
            .mini-intro-visual { min-height: 410px; }
            .mini-shot-main { right: 70px; }
        }

        @media (max-width: 991px) {
            .mini-intro-scene { min-height: auto; }

            .mini-intro-scene::after {
                height: 220px;
                background:
                    radial-gradient(circle at 50% 120%, rgba(108, 188, 255, 0.10), transparent 26%),
                    linear-gradient(
                        to bottom,
                        rgba(255,255,255,0) 0%,
                        rgba(255,255,255,0) 86%,
                        rgba(241,248,255,0.46) 98.8%,
                        rgba(247,251,255,0.98) 100%
                    );
            }

            .mini-intro-inner {
                padding: 130px 20px 82px;
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .mini-intro-copy,
            .mini-intro-visual { max-width: 100%; }

            .mini-intro-copy h2 {
                font-size: 56px;
                line-height: 1.02;
            }

            .mini-intro-copy p { max-width: 100%; }

            .mini-intro-visual {
                min-height: 340px;
                max-width: 100%;
                justify-self: stretch;
            }

            .mini-shot-main {
                right: 40px;
                top: 80px;
            }

            .mini-shot-5 { left: 220px; }

            #hero .hero-immersive-inner,
            .hero-immersive-inner {
                padding: 86px 20px 78px !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                justify-content: flex-start !important;
                gap: 32px !important;
            }

            .hero-immersive-left,
            .hero-immersive-right {
                max-width: 100% !important;
                width: 100% !important;
            }

            .hero-immersive-left h1 { font-size: 44px; }
            .hero-showcase-shell { min-height: auto !important; }
            .service-card .service-title { min-height: auto; }
            .cta-home-box h3 { font-size: 28px; }
            .hero-bottom-fade { display: none !important; }
        }

        @media (max-width: 767px) {
            #myBtn {
                right: 16px;
                bottom: 16px;
                width: 44px;
                height: 44px;
                line-height: 4px;
                font-size: 20px;
            }

            .mini-intro-scene {
                overflow: visible !important;
            }

            .mini-intro-scene::after {
                height: 72px !important;
                background:
                    linear-gradient(
                        to bottom,
                        rgba(255,255,255,0) 0%,
                        rgba(255,255,255,0) 80%,
                        rgba(241,248,255,0.24) 95%,
                        rgba(247,251,255,0.88) 100%
                    ) !important;
            }

            .mini-intro-copy h2 {
                font-size: 34px;
                line-height: 1.08;
                margin-bottom: 14px;
            }

            .mini-intro-copy p,
            .hero-subtext,
            .intro-text,
            .section-lead,
            .cta-home-box p {
                font-size: 15px;
                line-height: 1.75;
            }

            .mini-kicker {
                margin-bottom: 14px;
                padding: 7px 11px;
                font-size: 11px;
            }

            .mini-intro-inner {
                padding: 112px 20px 56px;
                gap: 24px;
            }

            .mini-intro-visual {
                min-height: 270px;
            }

            .mini-shot-main {
                width: 190px;
                height: 128px;
                right: 0;
                top: 70px;
            }

            .mini-shot-medium { width: 126px; height: 90px; }
            .mini-shot-small { width: 88px; height: 62px; }
            .mini-shot-1 { left: 0; top: 12px; }
            .mini-shot-2 { left: 14px; bottom: 14px; }
            .mini-shot-3 { right: 4px; top: 0; }
            .mini-shot-4 { right: 8px; bottom: 0; }
            .mini-shot-5 { left: 108px; top: 0; }

            .hero-immersive {
                display: block !important;
                width: 100% !important;
                height: auto !important;
                min-height: 0 !important;
                max-height: none !important;
                overflow: visible !important;
                padding-top: 0 !important;
                padding-bottom: 0 !important;
            }

            .hero-immersive-bg {
                display: none !important;
            }

            #hero .hero-immersive-inner,
            .hero-immersive-inner {
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                justify-content: flex-start !important;
                padding: 56px 20px 56px !important;
                gap: 22px !important;
                width: 100% !important;
                height: auto !important;
                min-height: 0 !important;
                max-height: none !important;
                overflow: visible !important;
            }

            .hero-immersive-left,
            .hero-immersive-right {
                width: 100% !important;
                max-width: 100% !important;
                flex: 0 0 auto !important;
                height: auto !important;
                min-height: 0 !important;
                max-height: none !important;
                overflow: visible !important;
                transform: none !important;
                will-change: auto !important;
            }

            .hero-badge {
                margin-bottom: 12px !important;
                font-size: 11px;
                padding: 7px 11px;
            }

            .hero-immersive-left h1 {
                font-size: 30px !important;
                line-height: 1.16 !important;
                margin-bottom: 14px !important;
                max-width: 100% !important;
                letter-spacing: -0.8px;
            }

            .hero-subtext {
                margin-bottom: 18px !important;
                max-width: 100% !important;
            }

            .hero-buttons {
                flex-direction: column !important;
                gap: 10px !important;
                margin-bottom: 18px !important;
            }

            .hero-btn {
                width: 100% !important;
                min-width: 0 !important;
                padding: 12px 18px !important;
                font-size: 14px;
            }

            .hero-feature-list {
                display: flex !important;
                flex-direction: column !important;
                gap: 10px !important;
                margin-top: 0 !important;
            }

            .hero-feature {
                width: 100% !important;
                min-width: 0 !important;
                flex: 0 0 auto !important;
                padding: 14px !important;
                border-radius: 12px !important;
            }

            .hero-feature strong {
                margin-bottom: 4px;
                font-size: 14px;
            }

            .hero-feature span {
                font-size: 13px;
                line-height: 1.6;
            }

            .hero-showcase-shell,
            .hero-card-main {
                width: 100% !important;
                height: auto !important;
                min-height: 0 !important;
                max-height: none !important;
                overflow: visible !important;
            }

            .hero-showcase-shell {
                margin-top: 0 !important;
                min-height: auto !important;
            }

            .hero-card-main {
                padding: 18px 16px !important;
                border-radius: 14px !important;
            }

            .hero-panel-top {
                margin-bottom: 12px !important;
            }

            .hero-panel-top span {
                width: 8px;
                height: 8px;
            }

            .hero-showcase-label {
                margin-bottom: 10px !important;
                font-size: 10px;
                padding: 5px 8px;
            }

            .hero-card-main h3 {
                font-size: 22px !important;
                line-height: 1.22 !important;
                margin-bottom: 12px !important;
            }

            .hero-card-main p {
                margin-bottom: 16px !important;
                font-size: 14px;
                line-height: 1.7;
            }

            .hero-showcase-grid {
                grid-template-columns: 1fr !important;
                gap: 10px !important;
            }

            .hero-showcase-box {
                min-height: 0 !important;
                padding: 13px !important;
                border-radius: 12px !important;
            }

            .hero-showcase-box strong {
                margin-bottom: 5px;
                font-size: 14px;
            }

            .hero-showcase-box span {
                font-size: 13px;
                line-height: 1.6;
            }

            .hero-bottom-fade {
                display: none !important;
            }

            .services-row > [class*="col-"] {
                display: block;
                margin-bottom: 18px;
            }

            .service-card,
            .why-card,
            .cta-home-box {
                padding-left: 20px;
                padding-right: 20px;
            }

            .portfolio-card .portfolio-item-title {
                min-height: auto;
            }

            .site-section {
                padding-top: 76px;
                padding-bottom: 76px;
            }

            .section-intro {
                padding-top: 74px;
                padding-bottom: 46px;
            }
        }
