 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --dark-bg: #0a0a0f;
            --dark-bg-2: #111118;
            --dark-bg-3: #1a1a24;
            --dark-surface: rgba(255,255,255,0.03);
            --dark-border: rgba(255,255,255,0.06);
            --light-bg: #f8f9fc;
            --light-bg-2: #ffffff;
            --light-border: rgba(0,0,0,0.08);
            --accent: #c8a85c;
            --accent-light: #e4cb82;
            --accent-dark: #a08040;
            --accent-glow: rgba(200,168,92,0.15);
            --accent-glow-strong: rgba(200,168,92,0.3);
            --hk-red-glow: rgba(222,41,16,0.15);
            --text-white: #ffffff;
            --text-light: rgba(255,255,255,0.7);
            --text-muted: rgba(255,255,255,0.45);
            --text-dark: #1a1a2e;
            --text-dark-secondary: #555570;
            --section-pad: 100px 0;
            --container: 1200px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: var(--text-white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .anim {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
        }
        .anim.visible { opacity: 1; transform: translateY(0); }
        .anim.d1 { transition-delay: .1s; }
        .anim.d2 { transition-delay: .2s; }
        .anim.d3 { transition-delay: .3s; }
        .anim.d4 { transition-delay: .4s; }
        .anim.d5 { transition-delay: .5s; }
        .anim.d6 { transition-delay: .6s; }
        .anim.d7 { transition-delay: .7s; }

        /* ===== HERO ===== */
        .hero {
            position: relative; min-height: 100vh;
            display: flex; align-items: center; justify-content: center;
            background: var(--dark-bg);
            overflow: hidden;
        }
        .hero-bg {
            position: absolute; inset: 0; z-index: 0;
            background: url('../images/hero-banner.jpg') center center / cover no-repeat;
        }
        .hero-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(10,10,15,0.65) 0%, rgba(10,10,15,0.8) 50%, rgba(10,10,15,0.92) 100%);
        }
        .hero-orb {
            position: absolute; border-radius: 50%;
            filter: blur(80px); opacity: .25; animation: float 8s ease-in-out infinite; z-index: 1;
        }
        .hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--accent-glow-strong), transparent); top: -10%; right: -5%; }
        .hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--hk-red-glow), transparent); bottom: -10%; left: -5%; animation-delay: -3s; }
        .hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(100,100,255,.1), transparent); top: 40%; left: 30%; animation-delay: -5s; }
        .hero-grid {
            position: absolute; inset: 0; z-index: 1;
            background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
            background-size: 60px 60px;
        }
        .floating-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
        .particle {
            position: absolute; border-radius: 50%;
        }
        .particle.dot {
            background: var(--accent); opacity: .3;
            animation: float 6s ease-in-out infinite;
        }
        .particle.sparkle {
            background: white;
            animation: sparkle 3s ease-in-out infinite;
            box-shadow: 0 0 6px 1px rgba(255,255,255,0.4);
        }
        .particle.glow {
            background: radial-gradient(circle, rgba(200,168,92,0.6), transparent 70%);
            animation: twinkle 4s ease-in-out infinite;
        }
        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 0.8; transform: scale(1.2); }
        }
        @keyframes twinkle {
            0%, 100% { opacity: 0.1; }
            30% { opacity: 0.5; }
            60% { opacity: 0.15; }
            80% { opacity: 0.6; }
        }
        @keyframes driftUp {
            0% { opacity: 0; transform: translateY(20px) scale(0.5); }
            20% { opacity: 0.7; }
            80% { opacity: 0.4; }
            100% { opacity: 0; transform: translateY(-60px) scale(0.2); }
        }
        .hero-content { position: relative; z-index: 2; text-align: center; max-width: 1100px; padding: 80px 24px 120px; }

        /* CT Disclaimer at hero bottom */
        #ct {
            position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
            padding: 14px 24px;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 10px; line-height: 1.6; color: rgba(255,255,255,0.45);
            text-align: center;
        }

        /* Liquid Glass Ticker */
        .hero-glass-ticker {
            position: absolute; bottom: 60px; left: 0; right: 0; z-index: 10;
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
            width: fit-content; margin: 0 auto;
            padding: 32px 72px; border-radius: 28px 28px 0 0;
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(28px) saturate(1.8); -webkit-backdrop-filter: blur(28px) saturate(1.8);
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 8px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(255,255,255,0.04);
            animation: fadeInUp 1s ease-out 1s both;
        }
        .hero-glass-ticker.hidden { opacity: 0; pointer-events: none; }
        .hero-glass-ticker::before {
            content: ''; position: absolute; inset: 0; border-radius: 28px 28px 0 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(200,168,92,0.08) 100%);
            pointer-events: none;
        }
        .hero-glass-ticker .glass-label {
            font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
            letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.55);
        }
        .hero-glass-ticker .glass-symbol {
            font-family: 'Space Grotesk', sans-serif; font-size: clamp(56px, 10vw, 96px); font-weight: 800;
            letter-spacing: 10px; line-height: 1;
            background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            filter: drop-shadow(0 4px 16px rgba(200,168,92,0.35));
        }
        .hero-glass-ticker .glass-divider {
            width: 80px; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200,168,92,0.5), transparent);
        }
        .hero-paid-tag {
            position: absolute; top: 24px; left: 0; right: 0; z-index: 10;
            display: flex; justify-content: center;
            font-size: 12px; font-weight: 800;
            letter-spacing: 3px; text-transform: uppercase; color: #fff;
            animation: fadeInDown .8s ease-out .1s both; white-space: nowrap;
        }
        .hero-paid-tag span {
            padding: 8px 24px; border-radius: 6px;
            background: rgba(200,168,92,0.2); border: 1px solid rgba(200,168,92,0.35);
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 16px rgba(200,168,92,0.15);
            text-shadow: 0 1px 4px rgba(0,0,0,0.4);
        }
        .hero-paid-tag span a{color:#fff;}
        .hero-logo {
            width: auto; height: auto; border-radius: 10px; object-fit: cover;
            margin-bottom: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            border: 2px solid rgba(255,255,255,0.1);
            animation: fadeInDown .8s ease-out .3s both;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 20px; background: rgba(200,168,92,.1);
            border: 1px solid rgba(200,168,92,.2); border-radius: 50px;
            margin-bottom: 28px; animation: fadeInDown .8s ease-out .2s both;
        }
        .hero-badge-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
        .hero-badge-ticker { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(32px, 5vw, 58px); font-weight: 800;
            line-height: 1.12; margin-bottom: 20px;
            animation: fadeInUp 1s ease-out .4s both;
        }
        .highlight {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .hero-subtitle {
            font-size: clamp(14px, 1.8vw, 17px); line-height: 1.75;
            color: var(--text-light); max-width: 740px; margin: 0 auto 36px;
            animation: fadeInUp 1s ease-out .6s both;
        }
        .hero-subtitle sup a { color: var(--accent); text-decoration: none; }
        .hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease-out .8s both; margin-top: 28px; }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 30px; background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: var(--dark-bg); font-size: 14px; font-weight: 700;
            border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
            transition: all .3s; box-shadow: 0 4px 24px rgba(200,168,92,.3);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,168,92,.4); }
        .btn-secondary {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 30px; background: transparent; color: var(--text-white);
            font-size: 14px; font-weight: 600; border: 1px solid var(--dark-border);
            border-radius: 8px; cursor: pointer; text-decoration: none; transition: all .3s;
        }
        .btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
        .hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeIn 1s ease-out 1.5s both; }
        .scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--accent), transparent); animation: pulse 2s ease-in-out infinite; }
        .scroll-text { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

        /* ===== SECTION HELPERS ===== */
        .section-dark { background: var(--dark-bg-2); padding: var(--section-pad); position: relative; overflow: hidden; }
        .section-dark-alt { background: var(--dark-bg); padding: var(--section-pad); position: relative; overflow: hidden; }
        .section-dark-3 { background: var(--dark-bg-3); padding: var(--section-pad); position: relative; overflow: hidden; }
        .section-light { background: var(--light-bg); padding: var(--section-pad); position: relative; }
        .section-light-alt { background: var(--light-bg-2); padding: var(--section-pad); position: relative; }

        .sec-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
            text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
        }
        .sec-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
        .sec-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(26px, 3.8vw, 42px); font-weight: 800; line-height: 1.15; margin-bottom: 18px;
        }
        .sec-desc { font-size: 15px; line-height: 1.75; color: var(--text-light); max-width: 660px; margin-bottom: 20px; }

        .is-light .sec-label { color: var(--accent-dark); }
        .is-light .sec-label::before { background: var(--accent-dark); }
        .is-light .sec-title { color: var(--text-dark); }
        .is-light .sec-title .highlight { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .is-light .sec-desc { color: var(--text-dark-secondary); }

        /* ===== DISCLAIMER BANNER ===== */
        .disclaimer-banner {
            padding: 20px 24px; text-align: center;
            border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border);
        }
        .disclaimer-banner p {
            font-size: 12px; color: var(--text-muted); line-height: 1.7;
            max-width: 820px; margin: 0 auto; font-style: italic;
        }
        .disclaimer-banner strong { color: var(--accent); font-style: normal; }
        .disclaimer-banner.on-light { border-color: rgba(0,0,0,.08); }
        .disclaimer-banner.on-light p { color: var(--text-dark-secondary); }
        .disclaimer-banner.on-light strong { color: var(--accent-dark); }

        /* ===== CHALLENGE (DARK + RED) ===== */
        .challenge-section {
            position: relative; overflow: hidden;
            padding: var(--section-pad);
        }
        .challenge-bg {
            position: absolute; inset: 0; z-index: 0;
            background: url('../images/solution.jpg') center center / cover no-repeat;
        }
        .challenge-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(10,10,15,0.88) 0%, rgba(30,5,5,0.85) 50%, rgba(10,10,15,0.92) 100%);
        }
        .challenge-inner { position: relative; z-index: 2; }
        .challenge-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 36px;
        }
        .challenge-content { max-width: none; }
        .challenge-img-col {
            position: relative; border-radius: 20px; overflow: hidden;
            height: 100%; min-height: 400px;
        }
        .challenge-img-col img {
            width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
            display: block; min-height: 400px;
        }
        .challenge-img-overlay {
            position: absolute; inset: 0; border-radius: 20px;
            background: linear-gradient(180deg, rgba(220,40,30,0.08) 0%, rgba(10,10,15,0.4) 100%);
            border: 1px solid rgba(220,40,30,0.15);
        }
        .challenge-content > p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
        .challenge-content > p strong { color: #fff; }
        .challenge-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
        .challenge-list li {
            display: flex; align-items: flex-start; gap: 14px;
            font-size: 15px; line-height: 1.7; color: #fff;
            padding: 18px 22px; background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            transition: all .4s cubic-bezier(0.16,1,0.3,1);
            font-weight: 500;
        }
        .challenge-list li:hover { transform: translateX(8px); box-shadow: 0 8px 32px rgba(220,40,30,0.12); border-color: rgba(220,40,30,0.3); background: rgba(220,40,30,0.1); }
        .challenge-list .li-icon {
            flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px;
            background: rgba(220,40,30,0.15); display: flex; align-items: center; justify-content: center;
            font-size: 14px; margin-top: 1px;
        }
        .challenge-bottom { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-top: 20px; }
        .challenge-section .sec-label { color: #e84040; }
        .challenge-section .sec-label::before { background: #e84040; }
        .challenge-section .sec-title { color: #fff; }
        .challenge-section .sec-title .highlight-red {
            background: linear-gradient(135deg, #ff5252, #e84040, #c62828);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }

        /* ===== SOLUTION (GREEN GRADIENT + BLOBS) ===== */
        #solution {
            background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 25%, #e0f2f1 50%, #f1f8e9 75%, #e8f5e9 100%) !important;
            position: relative; overflow: hidden;
        }
        .solution-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
        .solution-blob {
            position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45;
            animation: blobMove 18s ease-in-out infinite alternate;
        }
        .solution-blob.b1 { width: 420px; height: 420px; background: radial-gradient(circle, #81c784, #a5d6a7); top: -10%; left: -5%; animation-duration: 20s; }
        .solution-blob.b2 { width: 350px; height: 350px; background: radial-gradient(circle, #66bb6a, #c8e6c9); top: 50%; right: -8%; animation-duration: 16s; animation-delay: -4s; }
        .solution-blob.b3 { width: 300px; height: 300px; background: radial-gradient(circle, #aed581, #dcedc8); bottom: -5%; left: 30%; animation-duration: 22s; animation-delay: -8s; }
        .solution-blob.b4 { width: 250px; height: 250px; background: radial-gradient(circle, #4caf50, #81c784); top: 20%; left: 55%; animation-duration: 14s; animation-delay: -2s; }
        .solution-blob.b5 { width: 280px; height: 280px; background: radial-gradient(circle, #b9f6ca, #69f0ae); bottom: 20%; right: 20%; animation-duration: 19s; animation-delay: -6s; }
        @keyframes blobMove {
            0%   { transform: translate(0, 0) scale(1); }
            25%  { transform: translate(40px, -30px) scale(1.1); }
            50%  { transform: translate(-20px, 50px) scale(0.95); }
            75%  { transform: translate(30px, 20px) scale(1.05); }
            100% { transform: translate(-40px, -40px) scale(1); }
        }
        .solution-grid {
            display: grid; grid-template-columns: 5fr 7fr; gap: 40px; align-items: stretch;
            position: relative; z-index: 2;
        }
        .solution-img-col {
            position: relative; border-radius: 20px; overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,.10), 0 4px 16px rgba(46,125,50,.08);
        }
        .solution-img-sticky {
            position: sticky; top: 100px; border-radius: 20px; overflow: hidden;
        }
        .solution-img-col img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            border-radius: 20px; min-height: 420px; max-height: 560px;
        }
        .solution-content-col { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
        .solution-intro { max-width: 100%; }
        .solution-intro p { font-size: 16px; line-height: 1.85; color: #2e4a32; margin-bottom: 14px; }
        .solution-services-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 9px; margin: 20px 0; }
        .solution-services-list li {
            display: flex; align-items: center; gap: 12px;
            font-size: 15px; line-height: 1.5; color: #2e4a32;
            padding: 12px 16px; background: rgba(255,255,255,0.6);
            border: 1px solid rgba(76,175,80,0.18); border-radius: 12px;
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            transition: all .4s cubic-bezier(0.16,1,0.3,1);
        }
        .solution-services-list li:hover { background: rgba(255,255,255,0.85); border-color: rgba(76,175,80,.4); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(76,175,80,.10); }
        .solution-services-list .s-icon {
            flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px;
            background: linear-gradient(135deg, #66bb6a, #43a047); display: flex; align-items: center; justify-content: center; font-size: 14px;
        }
        .solution-bottom-full {
            font-size: 16px; line-height: 1.85; color: #2e4a32; margin-top: 36px;
            position: relative; z-index: 2;
            background: rgba(255,255,255,0.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(76,175,80,0.15); border-radius: 16px; padding: 28px 32px;
        }
        .solution-bottom-full p { margin-bottom: 10px; }
        .solution-bottom-full p:last-child { margin-bottom: 0; }
        #solution .sec-label { color: #2e7d32; }
        #solution .sec-label::before { background: #2e7d32; }
        #solution .sec-title { color: #1b5e20; margin-bottom: 28px; }
        #solution .sec-title .highlight { background: linear-gradient(135deg, #2e7d32, #66bb6a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        /* ===== MARKET (LIGHT) ===== */
        .market-text { max-width: 100%; font-size: 16px; line-height: 1.8; color: var(--text-dark-secondary); margin-bottom: 16px; }
        .market-text strong { color: var(--text-dark); }
        .market-stats {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px; margin: 36px 0;
        }
        .m-stat {
            background: white; border-radius: 18px; padding: 36px 28px; text-align: center;
            box-shadow: 0 4px 24px rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,.06);
            transition: all .4s; position: relative; overflow: hidden;
        }
        .m-stat::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
            transform: scaleX(0); transition: transform .5s;
        }
        .m-stat:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
        .m-stat:hover::before { transform: scaleX(1); }
        .m-stat-val {
            font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 800;
            background: linear-gradient(135deg, var(--accent-dark), var(--accent));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            line-height: 1.1; margin-bottom: 6px;
        }
        .m-stat-label { font-size: 15px; font-weight: 500; color: var(--text-dark-secondary); line-height: 1.5; }
        .m-stat-src { font-size: 10px; color: #aaa; margin-top: 6px; }

        /* ===== WELL POSITIONED CARD ===== */
        .well-positioned-card {
            text-align: center; margin-top: 56px; padding: 48px 36px 40px;
            background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,245,235,0.9));
            border-radius: 24px; position: relative; overflow: hidden;
            border: 1px solid rgba(200,168,85,0.25);
            box-shadow: 0 8px 40px rgba(200,168,85,0.08), 0 1px 3px rgba(0,0,0,0.04);
            transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
        }
        .well-positioned-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(200,168,85,0.15), 0 4px 12px rgba(0,0,0,0.06);
        }
        .wp-glow {
            position: absolute; top: -60%; left: -20%; width: 140%; height: 120%;
            background: radial-gradient(ellipse at 50% 0%, rgba(200,168,85,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .wp-border-anim {
            position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
            background: linear-gradient(135deg, rgba(200,168,85,0.4), transparent 40%, transparent 60%, rgba(200,168,85,0.3));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor; mask-composite: exclude;
            pointer-events: none;
            animation: wpBorderRotate 6s linear infinite;
        }
        @keyframes wpBorderRotate {
            0%   { background: linear-gradient(0deg, rgba(200,168,85,0.4), transparent 40%, transparent 60%, rgba(200,168,85,0.3)); }
            25%  { background: linear-gradient(90deg, rgba(200,168,85,0.4), transparent 40%, transparent 60%, rgba(200,168,85,0.3)); }
            50%  { background: linear-gradient(180deg, rgba(200,168,85,0.4), transparent 40%, transparent 60%, rgba(200,168,85,0.3)); }
            75%  { background: linear-gradient(270deg, rgba(200,168,85,0.4), transparent 40%, transparent 60%, rgba(200,168,85,0.3)); }
            100% { background: linear-gradient(360deg, rgba(200,168,85,0.4), transparent 40%, transparent 60%, rgba(200,168,85,0.3)); }
        }
        .wp-icon {
            margin-bottom: 18px; display: inline-flex; align-items: center; justify-content: center;
            width: 64px; height: 64px; border-radius: 50%;
            background: linear-gradient(135deg, rgba(200,168,85,0.12), rgba(200,168,85,0.04));
            border: 1px solid rgba(200,168,85,0.2);
            animation: wpIconPulse 3s ease-in-out infinite;
        }
        @keyframes wpIconPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,85,0.2); }
            50% { box-shadow: 0 0 0 12px rgba(200,168,85,0); }
        }
        .wp-headline {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(18px, 2.4vw, 22px); font-weight: 700;
            line-height: 1.6; color: var(--text-dark); letter-spacing: -0.01em;
        }
        .wp-company {
            font-size: clamp(22px, 3.2vw, 34px); font-weight: 900;
            background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-light));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .wp-ticker {
            font-size: clamp(18px, 2vw, 18px); font-weight: 700;
            color: var(--accent-dark); letter-spacing: 1px;
        }
        .wp-text {
            font-size: clamp(20px, 2.2vw, 22px); font-weight: 600;
            color: #444;
        }
        .wp-accent {
            font-size: clamp(20px, 3vw, 32px); font-weight: 900;
            background: linear-gradient(135deg, #1a1a2e, var(--accent-dark), var(--accent));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            display: inline-block; margin-top: 4px;
        }
        .wp-divider {
            display: flex; justify-content: center; gap: 6px; margin: 22px auto 18px;
        }
        .wp-divider span {
            display: block; height: 3px; border-radius: 3px;
            background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
        }
        .wp-divider span:nth-child(1) { width: 32px; }
        .wp-divider span:nth-child(2) { width: 12px; opacity: 0.6; }
        .wp-divider span:nth-child(3) { width: 6px; opacity: 0.3; }
        .wp-disclaimer {
            font-size: 11px; color: #888; line-height: 1.6; max-width: 600px; margin: 0 auto;
        }

        /* ===== GREETINGS (DARK) ===== */
        #greetings { position: relative; overflow: hidden; }
        .greetings-bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
        .greetings-orb {
            position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15;
            animation: greetOrb 16s ease-in-out infinite alternate;
        }
        .greetings-orb.go1 { width: 500px; height: 500px; background: var(--accent); top: -20%; right: -10%; animation-duration: 18s; }
        .greetings-orb.go2 { width: 400px; height: 400px; background: #c8a855; bottom: -15%; left: -10%; animation-duration: 14s; animation-delay: -5s; }
        .greetings-orb.go3 { width: 300px; height: 300px; background: #e8d48b; top: 40%; left: 50%; animation-duration: 20s; animation-delay: -10s; }
        @keyframes greetOrb {
            0%   { transform: translate(0, 0) scale(1); }
            50%  { transform: translate(40px, -30px) scale(1.15); }
            100% { transform: translate(-30px, 40px) scale(0.9); }
        }
        .greetings-card {
            max-width: 820px; margin: 0 auto; position: relative; z-index: 2;
            background: linear-gradient(145deg, rgba(30,30,42,0.85), rgba(20,20,30,0.9));
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(200,168,85,0.2); border-radius: 28px;
            padding: 52px 48px 44px; overflow: hidden;
            box-shadow: 0 20px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(200,168,85,0.1);
        }
        .greetings-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-dark), var(--accent), var(--accent-light), transparent);
        }
        .greetings-card::after {
            content: ''; position: absolute; top: -80px; right: -60px; width: 240px; height: 240px;
            background: radial-gradient(circle, rgba(200,168,85,0.08), transparent 70%);
            border-radius: 50%; pointer-events: none;
        }
        .greetings-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(24px, 3.2vw, 36px); font-weight: 800; line-height: 1.2; margin-bottom: 8px;
        }
        .greetings-subtitle {
            font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
            color: var(--accent); font-weight: 600; margin-bottom: 28px;
            display: flex; align-items: center; gap: 10px;
        }
        .greetings-subtitle::after {
            content: ''; flex: 1; height: 1px;
            background: linear-gradient(90deg, rgba(200,168,85,0.4), transparent);
        }
        .greetings-body p {
            font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.72); margin-bottom: 18px;
            padding-left: 18px; border-left: 2px solid transparent;
            transition: all 0.4s ease;
        }
        .greetings-body p:hover {
            border-left-color: rgba(200,168,85,0.4); color: rgba(255,255,255,0.9);
            padding-left: 22px;
        }
        .greetings-body p:first-child { font-size: 16px; color: rgba(255,255,255,0.85); }
        .greetings-body strong { color: var(--text-white); }

        /* ===== TOP REASONS (DARK) ===== */
        .reasons-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 40px; max-width: 100%; }
        .reason-card {
            background: var(--dark-surface); border: 1px solid var(--dark-border);
            border-radius: 16px; padding: 28px 24px; display: flex; gap: 18px;
            transition: all .4s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
        }
        .reason-card::before {
            content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
            background: linear-gradient(to bottom, var(--accent), transparent); opacity: 0; transition: opacity .4s;
        }
        .reason-card:hover { border-color: rgba(200,168,92,.15); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
        .reason-card:hover::before { opacity: 1; }
        .reason-num {
            font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 900;
            line-height: 1; flex-shrink: 0; min-width: 52px; height: 52px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 16px; position: relative;
            background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.1);
            color: transparent;
            background-clip: text, padding-box; -webkit-background-clip: text, padding-box;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
        }
        .reason-num::before {
            content: ''; position: absolute; inset: 0; border-radius: 16px;
            background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.1);
            z-index: -1;
        }
        .reason-num::after {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: conic-gradient(from 0deg, transparent 0%, rgba(200,168,85,0.15) 25%, transparent 50%, rgba(200,168,85,0.1) 75%, transparent 100%);
            animation: numShine 4s linear infinite;
            z-index: -1;
        }
        @keyframes numShine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .reason-num span {
            background: linear-gradient(135deg, #e8d48b, #c8a855, #f0e6b8);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
            position: relative; z-index: 1;
        }
        .reason-card:hover .reason-num {
            transform: scale(1.08);
            box-shadow: 0 6px 24px rgba(200,168,85,0.2), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.1);
        }
        .reason-card:hover .reason-num::before {
            border-color: rgba(200,168,85,0.3);
        }
        .reason-body h4 { font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; line-height: 1.4; }
        .reason-body p { font-size: 16px; color: var(--text-light); line-height: 1.7; }
        .reason-src { font-size: 10px; color: var(--text-muted); margin-top: 6px; }
        .reason-body a{color:#fff;}

        /* ===== COMPANY OVERVIEW (LIGHT) ===== */
        .overview-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
            align-items: start; margin-top: 36px;
        }
        .overview-img-col { position: relative; border-radius: 24px; overflow: visible; }
        .overview-img-wrap {
            border-radius: 24px; overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
            position: relative;
        }
        .overview-img-wrap img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            min-height: 400px; border-radius: 24px;
            transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
        }
        .overview-img-wrap:hover img { transform: scale(1.03); }
        .overview-logo-badge {
            position: absolute; bottom: -20px; right: -16px; z-index: 3;
            width: 72px; height: 72px; border-radius: 18px; overflow: hidden;
            background: white; padding: 6px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
            border: 2px solid rgba(200,168,85,0.3);
            transition: all 0.4s ease;
        }
        .overview-logo-badge:hover { transform: scale(1.08) rotate(-3deg); box-shadow: 0 12px 36px rgba(200,168,85,0.2); }
        .overview-logo-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
        .overview-content-col { display: flex; flex-direction: column; gap: 16px; }
        .overview-company-tag {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 8px 16px; border-radius: 50px;
            background: linear-gradient(135deg, rgba(200,168,85,0.1), rgba(200,168,85,0.04));
            border: 1px solid rgba(200,168,85,0.2);
            font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: var(--accent-dark);
            width: fit-content;
        }
        .overview-company-tag .tag-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--accent); animation: tagPulse 2s ease-in-out infinite;
        }
        @keyframes tagPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,85,0.4); }
            50% { box-shadow: 0 0 0 6px rgba(200,168,85,0); }
        }
        .overview-text-card {
            background: white; border-radius: 16px; padding: 22px 24px;
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
            transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
            position: relative; overflow: hidden;
        }
        .overview-text-card::before {
            content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
            background: linear-gradient(to bottom, var(--accent), var(--accent-light));
            opacity: 0; transition: opacity 0.4s;
        }
        .overview-text-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
        .overview-text-card:hover::before { opacity: 1; }
        .overview-text-card p { font-size: 16px; line-height: 1.8; color: var(--text-dark-secondary); margin: 0; }
        .overview-text-card strong { color: var(--text-dark); }

        /* ===== SERVICES (DARK) ===== */
        .services-text { max-width: 760px; }
        .services-text p { font-size: 15px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
        .services-text strong { color: var(--text-white); }
        .services-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 36px; }
        .svc-card {
            background: var(--dark-surface); border: 1px solid var(--dark-border);
            border-radius: 18px; padding: 32px 26px; text-align: center; transition: all .4s;
        }
        .svc-card:hover { border-color: rgba(200,168,92,.2); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
        .svc-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-glow-strong); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
        .svc-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
        .svc-desc { font-size: 16px; color: var(--text-light); line-height: 1.7; text-align: left; }

        /* ===== FACILITIES (LIGHT) ===== */
        .facilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 36px; }
        .facility-visual {
            position: relative; border-radius: 24px; overflow: hidden;
            height: 100%; min-height: 380px;
        }
        .facility-visual img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            border-radius: 24px; min-height: 380px;
            transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
        }
        .facility-visual:hover img { transform: scale(1.03); }
        .facility-visual::after {
            content: ''; position: absolute; inset: 0; border-radius: 24px;
            box-shadow: inset 0 -80px 60px -40px rgba(0,0,0,0.15);
            pointer-events: none;
        }
        .facilities-features { display: flex; flex-direction: column; gap: 18px; }
        .fac-feature {
            display: flex; gap: 14px; align-items: start; padding: 18px;
            background: white; border-radius: 14px; border: 1px solid rgba(0,0,0,.06); transition: all .3s;
        }
        .fac-feature:hover { box-shadow: 0 8px 32px rgba(0,0,0,.06); transform: translateX(4px); }
        .fac-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; font-size: 17px; }
        .fac-feature h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
        .fac-feature p { font-size: 16px; color: var(--text-dark-secondary); line-height: 1.6; }

        /* ===== SUMMARY (DARK) ===== */
        .summary-card {
            max-width: 820px; margin: 0 auto; text-align: center;
            background: var(--dark-surface); border: 1px solid var(--dark-border);
            border-radius: 24px; padding: 56px 44px; position: relative;
        }
        .summary-card p { font-size: 16px; line-height: 1.8; color: var(--text-light); margin-bottom: 14px; }
        .summary-card strong { color: var(--text-white); }
        .summary-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0; padding: 28px 0; border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
        .summary-stat { text-align: center; }
        .summary-stat-val { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; color: var(--accent); }
        .summary-stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
        .summary-tagline {
            margin-top: 32px; padding: 28px 32px; position: relative; overflow: hidden;
            background: linear-gradient(145deg, rgba(200,168,85,0.08), rgba(200,168,85,0.02));
            border: 1px solid rgba(200,168,85,0.2); border-radius: 20px;
            text-align: center;
        }
        .summary-tagline::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent 10%, var(--accent-dark), var(--accent), var(--accent-light), transparent 90%);
        }
        .summary-tagline::after {
            content: ''; position: absolute; inset: -2px; border-radius: 20px;
            background: conic-gradient(from 0deg, transparent 0%, rgba(200,168,85,0.15) 10%, transparent 20%, transparent 80%, rgba(200,168,85,0.15) 90%, transparent 100%);
            animation: taglineBorder 5s linear infinite; z-index: -1;
        }
        @keyframes taglineBorder { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        .tagline-icon {
            display: inline-flex; align-items: center; justify-content: center;
            width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
            background: linear-gradient(135deg, rgba(200,168,85,0.15), rgba(200,168,85,0.05));
            border: 1px solid rgba(200,168,85,0.25);
            animation: taglineIconPulse 3s ease-in-out infinite;
        }
        @keyframes taglineIconPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,85,0.25); }
            50% { box-shadow: 0 0 0 10px rgba(200,168,85,0); }
        }
        .tagline-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(16px, 2.2vw, 20px); font-weight: 800; line-height: 1.5;
            background: linear-gradient(135deg, #e8d48b, #c8a855, #f0e6b8, #c8a855);
            background-size: 200% auto;
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            animation: taglineShimmer 4s ease-in-out infinite;
        }
        @keyframes taglineShimmer {
            0% { background-position: 0% center; }
            50% { background-position: 100% center; }
            100% { background-position: 0% center; }
        }
        .tagline-divider {
            display: flex; justify-content: center; gap: 5px; margin: 12px auto 0; width: fit-content;
        }
        .tagline-divider span {
            display: block; height: 3px; border-radius: 3px;
            background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
        }
        .tagline-divider span:nth-child(1) { width: 28px; }
        .tagline-divider span:nth-child(2) { width: 10px; opacity: 0.5; }
        .tagline-divider span:nth-child(3) { width: 5px; opacity: 0.25; }

        /* ===== SOURCES & DISCLAIMER ===== */
        .sources-section { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--dark-border); }
        .sources-section h4 { font-size: 14px; font-weight: 700; color: var(--text-white); margin-bottom: 14px; }
        .source-item { display: flex; gap: 8px; margin-bottom: 8px; }
        .source-item .num { font-size: 11px; color: var(--accent); font-weight: 600; min-width: 16px; }
        .source-item a { font-size: 11px; color: var(--text-muted); text-decoration: none; word-break: break-all; }
        .source-item a:hover { color: var(--accent); }

        .disc-toggle {
            display: flex; align-items: center; justify-content: space-between; cursor: pointer;
            padding: 18px 24px; background: var(--dark-surface); border: 1px solid var(--dark-border);
            border-radius: 12px; transition: all .3s; margin-top: 28px;
        }
        .disc-toggle:hover { border-color: rgba(200,168,92,.2); }
        .disc-toggle h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; }
        .disc-arrow { font-size: 18px; color: var(--accent); transition: transform .3s; }
        .disc-toggle.open .disc-arrow { transform: rotate(180deg); }
        .disc-content { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(0.16,1,0.3,1); }
        .disc-content.open { max-height: 5000px; }
        .disc-inner { padding: 24px; background: var(--dark-surface); border: 1px solid var(--dark-border); border-top: none; border-radius: 0 0 12px 12px; }
        .disc-inner h4 { font-size: 13px; font-weight: 700; color: var(--accent); margin: 18px 0 8px; text-transform: uppercase; letter-spacing: 1px; }
        .disc-inner h4:first-child { margin-top: 0; }
        .disc-inner p { font-size: 12px; line-height: 1.8; color: var(--text-muted); margin-bottom: 10px; }
        .disc-inner a { color: var(--accent); text-decoration: none; }
        .disc-inner a:hover { text-decoration: underline; }

        /* ===== CHARTS SECTION ===== */
        .charts-section {
            background: var(--light-bg); padding: 72px 0 60px; position: relative;
        }
        .charts-section .container { max-width: 1100px; }
        .charts-grid {
            display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 32px;
        }
        .chart-card {
            background: white; border-radius: 16px; padding: 24px;
            border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            overflow: hidden; min-height: 420px;
            display: flex; flex-direction: column;
        }
        .chart-card .tradingview-widget-container { flex: 1; display: flex; flex-direction: column; min-height: 380px; }
        .chart-card .tradingview-widget-container > div { flex: 1; width: 100%; min-height: 100%; }
        .chart-card .tradingview-widget-container iframe { width: 100% !important; height: 100% !important; min-height: 380px; }
        .chart-card.chart-info { min-height: 120px; }
        .chart-card.chart-info .tradingview-widget-container { min-height: auto; }
        .chart-card.chart-info .tradingview-widget-container iframe { min-height: auto; }
        .charts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

        /* ===== FOOTNOTE / SOURCES ===== */
        .footnote-section {
            background: var(--light-bg-2); padding: 56px 0 48px; position: relative;
        }
        .footnote-section h4 {
            font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
            color: var(--text-dark); margin-bottom: 16px; padding-bottom: 10px;
            border-bottom: 2px solid rgba(200,168,85,0.2);
        }
        .footnote-section p {
            font-size: 13px; line-height: 1.8; color: var(--text-dark-secondary);
            margin-bottom: 10px; word-break: break-all;
        }
        .footnote-section a { color: var(--accent-dark); text-decoration: none; }
        .footnote-section a:hover { text-decoration: underline; }
        .credits-block {
            background: white; border-radius: 14px; padding: 24px 28px;
            border: 1px solid rgba(0,0,0,0.06); margin-bottom: 28px;
        }
        .sources-block {
            background: white; border-radius: 14px; padding: 24px 28px;
            border: 1px solid rgba(0,0,0,0.06);
        }
        .source-row {
            display: flex; gap: 10px; padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 13px;
        }
        .source-row:last-child { border-bottom: none; }
        .source-row .src-id {
            flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
            background: linear-gradient(135deg, rgba(200,168,85,0.12), rgba(200,168,85,0.04));
            display: flex; align-items: center; justify-content: center;
            font-size: 11px; font-weight: 700; color: var(--accent-dark);
        }
        .source-row .src-link {
            color: var(--text-dark-secondary); line-height: 1.7; word-break: break-all;
            font-size: 12.5px;
        }

        /* ===== SECTION 19 DISCLAIMER ===== */
        .disclaimer-full-section {
            background: var(--light-bg); padding: 56px 0 48px; position: relative;
        }
        .disclaimer-full-section .disc-header {
            font-family: 'Space Grotesk', sans-serif; font-size: clamp(18px, 2.4vw, 24px);
            font-weight: 800; color: var(--text-dark); text-align: center;
            margin-bottom: 32px; padding-bottom: 16px;
            border-bottom: 2px solid rgba(200,168,85,0.2);
        }
        .disclaimer-full-section .disc-body {
            max-width: 860px; margin: 0 auto;
            background: white; border-radius: 18px; padding: 36px 40px;
            border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }
        .disclaimer-full-section .disc-body p {
            font-size: 13px; line-height: 1.85; color: var(--text-dark-secondary); margin-bottom: 14px;
        }
        .disclaimer-full-section .disc-body p strong {
            color: var(--text-dark); font-weight: 700;
        }
        .disclaimer-full-section .disc-body h5 {
            font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
            color: var(--accent-dark); margin: 24px 0 12px; padding-top: 16px;
            border-top: 1px solid rgba(0,0,0,0.06); text-transform: uppercase; letter-spacing: 1px;
        }
        .disclaimer-full-section .disc-body a {
            color: var(--accent-dark); text-decoration: none;
        }
        .disclaimer-full-section .disc-body a:hover { text-decoration: underline; }
        .disclaimer-full-section .disc-body ul {
            list-style: disc; padding-left: 20px; margin: 14px 0;
        }
        .disclaimer-full-section .disc-body ul li {
            font-size: 13px; line-height: 1.8; color: var(--text-dark-secondary); margin-bottom: 4px;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--dark-bg); border-top: 1px solid var(--dark-border);
            padding: 15px 0 15px; text-align: center; position: relative; overflow: hidden;
        }
        .site-footer::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-dark), var(--accent), var(--accent-light), transparent);
        }
        .footer-logo-img { width: 48px; height: 48px; border-radius: 12px; object-fit: contain; margin-bottom: 12px; border: 1px solid var(--dark-border); }
        .footer-brand {
            font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800;
            color: var(--text-white); margin-bottom: 4px;
        }
        .footer-ticker {
            display: inline-block; font-size: 11px; font-weight: 700; color: var(--accent);
            background: var(--accent-glow); padding: 4px 14px; border-radius: 6px; margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .footer-divider {
            width: 60px; height: 1px; margin: 0 auto 16px;
            background: linear-gradient(90deg, transparent, rgba(200,168,85,0.4), transparent);
        }
        .footer-copy {
            font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 6px;
        }
        .footer-sub {
            font-size: 10px; color: rgba(255,255,255,0.25); line-height: 1.5;
        }

        /* ===== RESPONSIVE ===== */

        /* --- 1199px: Large tablets / small desktops --- */
        @media (max-width: 1199px) {
            :root { --container: 960px; }
            .hero-content h1 { font-size: clamp(28px, 4.5vw, 50px); }
            .overview-grid { gap: 36px; }
            .facilities-grid { gap: 36px; }
            .solution-grid { gap: 32px; }
            .challenge-grid { gap: 32px; }
            .charts-row { gap: 20px; }
        }

        /* --- 1024px: Tablets landscape --- */
        @media (max-width: 1024px) {
            :root { --section-pad: 80px 0; }
            .overview-grid { grid-template-columns: 1fr; gap: 32px; }
            .facilities-grid { grid-template-columns: 1fr; gap: 32px; }
            .challenge-grid { grid-template-columns: 1fr; }
            .challenge-img-col { min-height: 300px; }
            .solution-grid { grid-template-columns: 1fr; gap: 28px; }
            .solution-img-sticky { position: relative; top: 0; }
            .solution-img-col img { min-height: 300px; max-height: 400px; }
            .greetings-card { padding: 44px 36px 36px; }
            .summary-card { padding: 44px 32px; }
            .well-positioned-card { padding: 40px 28px 32px; }
            .wp-company { font-size: clamp(20px, 2.8vw, 30px); }
            .wp-accent { font-size: clamp(20px, 2.6vw, 28px); }
            .charts-row { grid-template-columns: 1fr; }
            .chart-card { min-height: 380px; }
            .disclaimer-full-section .disc-body { padding: 32px 28px; }
            .container{max-width:740px;}
        }

        /* --- 768px: Tablets portrait --- */
        @media (max-width: 768px) {
            :root { --section-pad: 64px 0; --container: 100%; }
            .container { padding: 0 20px; }
            .hero { min-height: 90vh; }
            .hero-content h1 { font-size: clamp(24px, 5vw, 36px); max-width: 100%; }
            .hero-glass-ticker { padding: 28px 64px; bottom: 54px; border-radius: 24px 24px 0 0; }
            .hero-glass-ticker .glass-symbol { font-size: clamp(48px, 9vw, 86px); letter-spacing: 9px; }
            .hero-glass-ticker .glass-label { font-size: 13px; letter-spacing: 4.5px; }
            .hero-glass-ticker .glass-divider { width: 72px; }
            .hero-paid-tag { letter-spacing: 2px; top: 16px; }
            .hero-paid-tag span { padding: 6px 16px; }
  
            #ct { font-size: 9px; padding: 8px 16px; }
            .sec-title { font-size: clamp(22px, 4vw, 32px); }
            .sec-label { font-size: 10px; letter-spacing: 2px; }
            .whatwedo-card { padding: 28px 22px; }
            .solution-grid { grid-template-columns: 1fr; gap: 24px; }
            .solution-img-col img { min-height: 240px; max-height: 340px; }
            .solution-bottom-full { padding: 20px 20px; margin-top: 20px; }
            .market-stats { grid-template-columns: 1fr; gap: 16px; }
            .m-stat { padding: 28px 20px; }
            .well-positioned-card { padding: 28px 18px 24px; margin-top: 36px; border-radius: 18px; }
            .wp-headline { font-size: clamp(18px, 2vw, 18px); }
            .wp-company { font-size: clamp(20px, 3vw, 26px); }
            .wp-accent { font-size: clamp(20px, 2.8vw, 24px); }
            .greetings-card { padding: 32px 20px 28px; border-radius: 18px; }
            .greetings-title { font-size: clamp(20px, 3vw, 28px); }
            .greetings-subtitle { font-size: 11px; }
            .reasons-grid { gap: 14px; }
            .reason-card { padding: 22px 18px; gap: 14px; }
            .reason-num { min-width: 44px; height: 44px; font-size: 18px; }
            .overview-grid { grid-template-columns: 1fr; gap: 28px; }
            .overview-img-wrap img { min-height: 260px; }
  .overview-logo-badge {
    bottom: -16px;
    right: 16px;
    width: 120px;
    height: auto;
  }
            .overview-text-card { padding: 18px 20px; }
    
            .services-cards { grid-template-columns: 1fr; gap: 14px; }
            .svc-card { padding: 22px 18px; }
            .facilities-grid { grid-template-columns: 1fr; gap: 28px; }
            .facility-visual img { min-height: 260px; }
            .summary-card { padding: 36px 20px; }
            .summary-stats { grid-template-columns: 1fr; gap: 14px; }
            .summary-stat-val { font-size: 22px; }
            .tagline-text { font-size: clamp(20px, 2vw, 20px); }
            .charts-section { padding: 56px 0 48px; }
            .chart-card { min-height: 340px; padding: 16px; }
            .charts-row { grid-template-columns: 1fr; gap: 20px; }
            .footnote-section { padding: 40px 0 36px; }
            .credits-block, .sources-block { padding: 20px 20px; }
            .disclaimer-full-section { padding: 40px 0 36px; }
            .disclaimer-full-section .disc-body { padding: 24px 18px; }
            .disclaimer-full-section .disc-header { font-size: 18px; }
            .disclaimer-banner { padding: 12px 16px; }
            .disclaimer-banner p { font-size: 10px; }
               .container{max-width:540px;}
        }

        /* --- 575px: Large phones --- */
        @media (max-width: 575px) {
            :root { --section-pad: 50px 0; }
            .container { padding: 0 16px; }
            .hero-content h1 { font-size: clamp(22px, 6vw, 30px); }
     
            .hero-paid-tag { letter-spacing: 1.5px; }
            .hero-paid-tag span { padding: 5px 12px; }
            #ct {  padding: 6px 12px; }
            .sec-title { font-size: clamp(20px, 5vw, 26px); }
            .whatwedo-card { padding: 22px 16px; border-radius: 16px; }
            .whatwedo-card p { font-size: 13px; }
            .challenge-list li { padding: 14px 16px;  }
            .solution-services-list li { padding: 10px 14px; gap: 10px; }
            .solution-services-list .s-icon { width: 26px; height: 26px; font-size: 12px; }
            .solution-bottom-full { padding: 16px 16px;  border-radius: 12px; }
            .m-stat { padding: 24px 16px; border-radius: 14px; }
            .m-stat-val { font-size: 34px; }
            .well-positioned-card { padding: 24px 14px 20px; border-radius: 14px; }
            .wp-icon { width: 38px; height: 38px; border-radius: 10px; }
            .wp-icon svg { width: 18px; height: 18px; }
            .greetings-card { padding: 28px 16px 24px; border-radius: 16px; }
            .greetings-body p {  padding-left: 14px; }
            .reason-card { padding: 18px 14px; gap: 12px; border-radius: 12px; }
      
        
            .overview-img-wrap img { min-height: 220px; }
            .overview-logo-badge { width: 50px; height: 50px; border-radius: 14px; }
            .overview-text-card { padding: 16px 16px; border-radius: 12px; }
      
            .overview-company-tag { font-size: 10px; padding: 6px 12px; }
            .svc-card { padding: 18px 14px; }
            .fac-feature { padding: 14px; }
     
            .summary-card { padding: 28px 16px; border-radius: 18px; }

            .summary-tagline { padding: 22px 18px; border-radius: 14px; }
            .chart-card { min-height: 300px; padding: 12px; border-radius: 12px; }
            .disclaimer-full-section .disc-body { padding: 20px 14px; border-radius: 14px; }
            .disclaimer-full-section .disc-body p { font-size: 12px; }
            .footer-brand { font-size: 16px; }
            .footer-logo-img { width: 40px; height: 40px; }
             .tagline-text {
    font-size: clamp(22px, 2vw, 22px);
  }
        }

        /* --- 480px: Small phones --- */
        @media (max-width: 480px) {
            :root { --section-pad: 44px 0; }
            .container { padding: 0 12px; }
            .hero { min-height: 85vh; }
 .hero-content h1 {
    font-size: clamp(26px, 6.5vw, 30px);
  }
       

            .hero-paid-tag {  letter-spacing: 1px; top: 12px; }
            .hero-paid-tag span { padding: 4px 10px; border-radius: 4px; }
            #ct { padding: 5px 10px; letter-spacing: 0.3px; }
            .sec-title { font-size: clamp(18px, 5.5vw, 22px); margin-bottom: 14px; }
            .sec-label { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 10px; }
            .sec-label::before { width: 16px; }
            .whatwedo-card { padding: 18px 14px; }
            .challenge-list li { padding: 12px 14px;  gap: 10px; }
            .solution-img-col img { min-height: 200px; max-height: 280px; }
            .solution-services-list li { padding: 9px 12px; }
            .m-stat { padding: 20px 14px; }
            .m-stat-val { font-size: 28px; }
 
            .well-positioned-card { padding: 20px 12px 16px; }
            .greetings-card { padding: 24px 14px 20px; }
            .greetings-title { font-size: clamp(18px, 5vw, 22px); }
            .greetings-body p {  line-height: 1.75; }
            .reason-card { padding: 16px 12px; }
  
            .overview-img-wrap { border-radius: 16px; }
            .overview-img-wrap img { min-height: 180px; border-radius: 16px; }
            .overview-text-card { padding: 14px 14px; }
            .svc-card { padding: 16px 12px; }
            .fac-feature { padding: 12px; gap: 10px; }
            .fac-icon { width: 34px; height: 34px; font-size: 14px; }
            .summary-card { padding: 24px 14px; }
            .summary-stat-val { font-size: 20px; }
            .summary-stat-lbl { font-size: 13px; }
            .tagline-text { font-size: 14px; }
            .chart-card { min-height: 260px; }
            .source-row { flex-direction: column; gap: 6px; }
            .disclaimer-full-section .disc-header { font-size: 16px; margin-bottom: 20px; }
            .disclaimer-full-section .disc-body p { font-size: 11.5px; line-height: 1.75; }
            .disclaimer-banner p { font-size: 9px; }
            .footer-brand { font-size: 15px; }
            .footer-logo-img { width: 36px; height: 36px; border-radius: 10px; }
            .footer-ticker { font-size: 10px; padding: 3px 10px; }
            .footer-copy { font-size: 11px; }

              .hero-glass-ticker {
  
    bottom: 80px;

  }
        }

        @media(max-width:420px){
             .hero-glass-ticker {
    bottom: 100px;
  }
        }

        @media(max-height:800px){
            .hero-title {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.1;
}
        }


                @media(max-height:740px){
            .hero-title {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.1;
}

.hero-content {
  padding: 80px 24px 200px;
}
        }

            @media(max-height:660px){
            .hero-title {
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.1;
}

.hero-content {
  padding: 80px 24px 220px;
}
        }