        /* Hero Section - IMPROVED PADDING */
        .hero-section {
            min-height: 90vh;
            position: relative;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #2d5016 0%, #1a3010 50%, #0d1808 100%);
            overflow: hidden;
            padding: 6rem 0 4rem;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(232, 168, 56, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
        }
        
        @keyframes pulseGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
            pointer-events: none;
        }
        
        /* Particles */
        .particle {
            position: absolute;
            background: rgba(232, 168, 56, 0.3);
            border-radius: 50%;
            animation: float 20s infinite;
        }
        
        .particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 6px; height: 6px; left: 30%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 3px; height: 3px; left: 50%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 5px; height: 5px; left: 70%; animation-delay: 6s; }
        .particle:nth-child(5) { width: 4px; height: 4px; left: 90%; animation-delay: 8s; }
        
        @keyframes float {
            0% { transform: translateY(100vh) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
        }
        
        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            padding-bottom: 3rem;
        }
        
        .hero-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2rem, 5.5vw, 4.8rem);
            line-height: 1.05;
            color: #fff;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            animation: slideInLeft 1s ease-out;
            word-break: break-word;
        }
        
        .hero-title .smaller-text {
            font-size: clamp(1.6rem, 4.5vw, 3.8rem);
            display: block;
        }
        
        .hero-title span {
            display: block;
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            animation: slideInLeft 1s ease-out 0.2s backwards;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Features Showcase - Asymmetric Rotating Layout */
        .features-showcase {
            position: relative;
            width: 100%;
            max-width: 550px;
            margin: 0 auto;
            animation: fadeInScale 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.85) translateY(30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            padding: 3rem;
            position: relative;
        }
        
        .feature-box {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(232, 168, 56, 0.25);
            border-radius: 24px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            will-change: opacity, transform;
        }
        
        /* Smooth gradient overlay */
        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(232, 168, 56, 0) 0%, rgba(232, 168, 56, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 0;
        }
        
        /* All quadrants start visible and fade smoothly in turns */
        .feature-box:nth-child(1) {
            animation: smoothFadeRotate 10s ease-in-out infinite;
        }
        
        .feature-box:nth-child(2) {
            animation: smoothFadeRotate 10s ease-in-out infinite 2.5s;
        }
        
        .feature-box:nth-child(3) {
            animation: smoothFadeRotate 10s ease-in-out infinite 7.5s;
        }
        
        .feature-box:nth-child(4) {
            animation: smoothFadeRotate 10s ease-in-out infinite 5s;
        }
        
        /* IMPROVED smooth fade animation - No glitches */
        @keyframes smoothFadeRotate {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1) translateZ(0);
                filter: blur(0);
                border-color: rgba(232, 168, 56, 0.45);
                background: rgba(255, 255, 255, 0.12);
            }
            
            10% {
                opacity: 1;
                transform: translateY(-4px) scale(1.02) translateZ(0);
                border-color: rgba(232, 168, 56, 0.65);
                background: rgba(255, 255, 255, 0.16);
            }
            
            30% {
                opacity: 0.85;
                transform: translateY(0) scale(0.98) translateZ(0);
                filter: blur(0.5px);
                border-color: rgba(232, 168, 56, 0.3);
                background: rgba(255, 255, 255, 0.08);
            }
            
            50% {
                opacity: 0.35;
                transform: translateY(0) scale(0.96) translateZ(0);
                filter: blur(1.5px);
                border-color: rgba(232, 168, 56, 0.15);
                background: rgba(255, 255, 255, 0.05);
            }
            
            70% {
                opacity: 0.85;
                transform: translateY(0) scale(0.98) translateZ(0);
                filter: blur(0.5px);
                border-color: rgba(232, 168, 56, 0.3);
                background: rgba(255, 255, 255, 0.08);
            }
            
            90% {
                opacity: 1;
                transform: translateY(-4px) scale(1.02) translateZ(0);
                border-color: rgba(232, 168, 56, 0.65);
                background: rgba(255, 255, 255, 0.16);
            }
            
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) translateZ(0);
                filter: blur(0);
                border-color: rgba(232, 168, 56, 0.45);
                background: rgba(255, 255, 255, 0.12);
            }
        }
        
        .feature-box:hover {
            background: rgba(232, 168, 56, 0.15);
            border-color: #e8a838;
            transform: translateY(-10px) scale(1.05) translateZ(0);
            box-shadow: 
                0 20px 50px rgba(232,168,56,0.35),
                0 0 60px rgba(232,168,56,0.2);
            opacity: 1 !important;
            filter: blur(0) !important;
            animation-play-state: paused;
        }
        
        .feature-box:hover::before {
            opacity: 1;
        }
        
        .feature-box-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(232, 168, 56, 0.3);
        }
        
        .feature-box:hover .feature-box-icon {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 8px 30px rgba(232, 168, 56, 0.5);
        }
        
        /* Pulsing glow for all quadrants with offset timing */
        .feature-box:nth-child(1) .feature-box-icon {
            animation: iconGlow 10s ease-in-out infinite;
        }
        
        .feature-box:nth-child(2) .feature-box-icon {
            animation: iconGlow 10s ease-in-out infinite 2.5s;
        }
        
        .feature-box:nth-child(3) .feature-box-icon {
            animation: iconGlow 10s ease-in-out infinite 7.5s;
        }
        
        .feature-box:nth-child(4) .feature-box-icon {
            animation: iconGlow 10s ease-in-out infinite 5s;
        }
        
        @keyframes iconGlow {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(232, 168, 56, 0.35);
            }
            10% {
                box-shadow: 0 6px 30px rgba(232, 168, 56, 0.6), 0 0 25px rgba(255, 107, 53, 0.4);
            }
            50% {
                box-shadow: 0 2px 8px rgba(232, 168, 56, 0.2);
            }
            90% {
                box-shadow: 0 6px 30px rgba(232, 168, 56, 0.6), 0 0 25px rgba(255, 107, 53, 0.4);
            }
        }
        
        .feature-box-icon i {
            font-size: 2rem;
            color: var(--dark-slate);
        }
        
        .feature-box-title {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .feature-box-desc {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Center Brand */
        .feature-brand {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
        }
        
        .brand-circle {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.8rem;
            box-shadow: 
                0 0 0 8px rgba(232, 168, 56, 0.2),
                0 0 0 16px rgba(232, 168, 56, 0.1),
                0 10px 40px rgba(232, 168, 56, 0.4);
            animation: smoothPulse 3s ease-in-out infinite;
        }
        
        @keyframes smoothPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 
                    0 0 0 8px rgba(232, 168, 56, 0.2),
                    0 0 0 16px rgba(232, 168, 56, 0.1),
                    0 10px 40px rgba(232, 168, 56, 0.4);
            }
            50% { 
                transform: scale(1.08);
                box-shadow: 
                    0 0 0 12px rgba(232, 168, 56, 0.25),
                    0 0 0 24px rgba(232, 168, 56, 0.12),
                    0 15px 50px rgba(232, 168, 56, 0.5);
            }
        }
        
        .brand-circle i {
            font-size: 3rem;
            color: var(--dark-slate);
        }
        
        .brand-text {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.3rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        
        /* Video Introduction Section */
        .video-intro-section {
            padding: 6rem 0;
            background: white;
            position: relative;
        }
        
        .video-content-wrapper {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 3rem;
            align-items: start;
            margin-top: 3rem;
        }
        
        @media (max-width: 992px) {
            .video-content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        .video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            background: var(--dark-slate);
        }
        
        .video-wrapper iframe,
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(45, 80, 22, 0.95), rgba(26, 48, 16, 0.95)),
                        url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1200&h=675&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .video-placeholder:hover {
            transform: scale(1.02);
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(232, 168, 56, 0.5);
            transition: all 0.3s ease;
        }
        
        .video-placeholder:hover .play-button {
            transform: scale(1.15);
            box-shadow: 0 15px 50px rgba(232, 168, 56, 0.7);
        }
        
        .play-button i {
            font-size: 2rem;
            color: white;
            margin-left: 5px;
        }
        
        /* Metric Cards - COMPACT 4-col */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.7rem;
        }
        
        .metric-card {
            background: linear-gradient(135deg, var(--cream) 0%, white 100%);
            border: 2px solid rgba(45, 80, 22, 0.1);
            border-radius: 12px;
            padding: 0.75rem 0.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .metric-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 30px rgba(232, 168, 56, 0.2);
        }
        
        .metric-card:hover::before {
            transform: scaleX(1);
        }
        
        .metric-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 0.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .metric-card:hover .metric-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .metric-icon i {
            font-size: 0.9rem;
            color: white;
        }
        
        .metric-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.1rem;
            color: var(--primary-green);
            margin-bottom: 0.2rem;
            line-height: 1;
        }
        
        .metric-label {
            color: #666;
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        
        @media (max-width: 768px) {
            .metrics-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Action Buttons */
        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            color: var(--dark-slate);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(232, 168, 56, 0.3);
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(232, 168, 56, 0.5);
            color: var(--dark-slate);
        }
        
        .action-btn:focus {
            outline: 3px solid var(--accent-gold);
            outline-offset: 3px;
        }
        
        .action-btn-secondary {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
        }
        
        .action-btn-secondary:hover {
            background: #fff;
            color: var(--primary-green);
        }
        
        .action-btn-secondary:focus {
            outline: 3px solid #fff;
            outline-offset: 3px;
        }
        
        /* Module Portals Section */
        .portals-section {
            padding: 6rem 0 4rem;
            background: var(--cream);
            position: relative;
        }
        
        /* Section header pattern: label left, title+desc centred */
        .sh-wrap { margin-bottom: 3rem; }
        .sh-label {
            display: inline-block;
            background: rgba(232,168,56,0.12);
            border-radius: 50px;
            padding: 0.3rem 1rem;
            margin-bottom: 0.9rem;
        }
        .sh-label span {
            font-size: 0.72rem; font-weight: 800;
            color: #c8881a;
            letter-spacing: 1.8px; text-transform: uppercase;
        }
        /* Dark-section variant (green/amber bg) */
        .sh-label-dark {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            padding: 0.35rem 1.1rem;
            margin-bottom: 0.9rem;
        }
        .sh-label-dark span {
            font-size: 0.72rem; font-weight: 800;
            color: white; letter-spacing: 1.8px;
            text-transform: uppercase;
        }
        .section-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            margin-bottom: 0.75rem;
            color: var(--primary-green);
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--earth-brown);
            margin-bottom: 0;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* IMPROVED FADE-IN ANIMATION - No glitches */
        .portal-card,
        .feature-card,
        .blog-card {
            will-change: opacity, transform;
        }
        
        .portal-card {
            background: #fff;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
            height: 100%;
            cursor: pointer;
            min-height: 320px;
        }
        
        .portal-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }
        
        .portal-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: #e8a838;
            box-shadow: 
                0 20px 60px rgba(232,168,56,0.25),
                0 0 0 1px rgba(232,168,56,0.2);
        }
        
        .portal-card:hover::before {
            opacity: 0.05;
        }
        
        .portal-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--earth-brown));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }
        
        .portal-card:hover .portal-icon {
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            transform: rotate(5deg) scale(1.1);
        }
        
        .portal-icon i {
            font-size: 2.3rem;
            color: #fff;
        }
        
        .portal-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--dark-slate);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .portal-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            margin-bottom: 1.5rem;
        }
        
        .portal-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            background: var(--primary-green);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
            font-size: 0.95rem;
        }
        
        .portal-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--accent-gold);
            transition: width 0.4s ease, height 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }
        
        .portal-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .portal-btn:hover {
            color: var(--dark-slate);
            transform: scale(1.05);
        }
        
        /* Features Section */
        /* ═══ HOW IT WORKS — Interactive Flow ═══ */

        /* Flow step accordion panels */
        .flow-step {
            border-radius: 16px;
            border: 1.5px solid rgba(45,80,22,0.1);
            background: #fff;
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .flow-step:hover { border-color: rgba(232,168,56,0.5); box-shadow: 0 4px 16px rgba(232,168,56,0.12); }
        .flow-step.active {
            border-color: var(--primary-green);
            box-shadow: 0 8px 32px rgba(45,80,22,0.12);
        }
        .flow-step-head {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding: 1.1rem 1.25rem;
            user-select: none;
        }
        .flow-step-num {
            font-family: 'Archivo Black', sans-serif;
            font-size: 0.72rem;
            color: rgba(45,80,22,0.35);
            letter-spacing: 1px;
            min-width: 22px;
        }
        .flow-step.active .flow-step-num { color: #c8881a; }
        .flow-step-icon {
            width: 38px; height: 38px;
            border-radius: 10px;
            background: rgba(232,168,56,0.1);
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; color: #e8a838;
            flex-shrink: 0; transition: background 0.25s, color 0.25s;
        }
        .flow-step.active .flow-step-icon {
            background: #e8a838;
            color: #1a1a1a;
        }
        .flow-step-title {
            font-weight: 800;
            font-size: 0.92rem;
            color: #333;
            flex: 1;
            line-height: 1.3;
        }
        .flow-step.active .flow-step-title { color: var(--primary-green); }
        .flow-step-arrow {
            font-size: 0.75rem;
            color: #ccc;
            transition: transform 0.3s, color 0.25s;
            flex-shrink: 0;
        }
        .flow-step.active .flow-step-arrow {
            transform: rotate(180deg);
            color: #e8a838;
        }
        .flow-step-body {
            display: none;
            padding: 0 1.25rem 1.25rem 1.25rem;
            padding-left: calc(1.25rem + 22px + 0.85rem + 38px + 0.85rem);
            animation: flowBodyIn 0.25s ease;
        }
        .flow-step.active .flow-step-body { display: block; }
        @keyframes flowBodyIn {
            from { opacity: 0; transform: translateY(-6px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .flow-step-body p {
            font-size: 0.88rem;
            color: #555;
            line-height: 1.65;
            margin-bottom: 0.85rem;
        }
        .flow-step-tags {
            display: flex; flex-wrap: wrap; gap: 0.4rem;
            margin-bottom: 0.8rem;
        }
        .flow-step-tags span {
            font-size: 0.7rem; font-weight: 700;
            background: rgba(232,168,56,0.1);
            color: #c8881a;
            border-radius: 50px;
            padding: 0.2rem 0.65rem;
            letter-spacing: 0.3px;
        }
        .flow-step-roles {
            display: flex; flex-wrap: wrap; gap: 1rem;
        }
        .flow-step-roles div {
            display: flex; align-items: center; gap: 0.35rem;
            font-size: 0.75rem; font-weight: 700; color: #666;
        }

        /* Mobile: horizontal nav (hidden on desktop) */
        .flow-mobile-nav {
            display: none;
            gap: 0.4rem;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 1.5rem 0 0.5rem;
            margin-top: 1.5rem;
        }
        .flow-mobile-nav::-webkit-scrollbar { display: none; }
        .fmn-btn {
            flex-shrink: 0;
            display: flex; flex-direction: column; align-items: center;
            gap: 0.25rem;
            padding: 0.65rem 1rem;
            border: 1.5px solid rgba(45,80,22,0.15);
            border-radius: 12px; background: #fff;
            cursor: pointer; transition: all 0.2s;
        }
        .fmn-btn.active {
            background: var(--primary-green);
            border-color: var(--primary-green);
        }
        .fmn-num {
            font-family: 'Archivo Black', sans-serif;
            font-size: 0.78rem;
            color: var(--primary-green);
        }
        .fmn-btn.active .fmn-num { color: var(--accent-gold); }
        .fmn-label {
            font-size: 0.65rem; font-weight: 800;
            color: #888; text-transform: uppercase; letter-spacing: 0.5px;
        }
        .fmn-btn.active .fmn-label { color: rgba(255,255,255,0.8); }

        /* Responsive: How It Works stacked layout */
        @media (max-width: 768px) {
            .features-section-outer { padding: 3rem 0 !important; }
            .flow-layout-grid {
                grid-template-columns: 1fr !important;
                gap: 0.8rem;
            }
            /* SVG: full width of container, proportional, no sticky */
            #ecosystemDiagram {
                position: static !important;
                width: 100%;
                display: block;
                margin: 0 auto 0.5rem;
            }
            #ecosystemDiagram svg {
                width: 100% !important;
                max-width: 360px !important;
                height: auto !important;
                display: block;
                margin: 0 auto;
            }
            .flow-mobile-nav { display: flex; }
            #stepPanels > .flow-step:not(.active) { display: none; }
            #stepPanels { gap: 0; width: 100%; box-sizing: border-box; }
            .flow-step-body { padding: 0 1rem 1rem 1rem; }
            .flow-step-body p { font-size: 0.85rem; line-height: 1.6; }
            .flow-step-head { padding: 0.85rem 1rem; gap: 0.6rem; }
            .flow-step-title { font-size: 0.88rem; line-height: 1.3; }
            .flow-step-num { min-width: 18px; font-size: 0.68rem; }
            .flow-step-icon { width: 34px; height: 34px; font-size: 0.9rem; flex-shrink: 0; }
            .flow-step-arrow { flex-shrink: 0; }
        }
        @media (max-width: 480px) {
            #ecosystemDiagram svg { max-width: 100% !important; }
            .flow-step-tags span { font-size: 0.65rem; padding: 0.18rem 0.5rem; }
            .flow-step-roles { gap: 0.5rem; }
            .flow-step-roles div { font-size: 0.7rem; }
        }
        

        @media (max-width: 768px) {
            .metrics-section { padding: 3rem 0 !important; }
            .metrics-section .sh-wrap { margin-bottom: 2rem; }
        }
        /* ── Platform Reach — responsive grids ── */
        .metrics-top-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .metrics-bottom-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        /* Top cards: reduce padding on mobile so numbers don't clip */
        .metrics-top-grid > div,
        .metrics-bottom-grid > div {
            min-width: 0; /* prevent overflow */
        }
        @media (max-width: 767px) {
            .metrics-top-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 1rem;
            }
            .metrics-bottom-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            /* Reduce top card padding on mobile */
            .metrics-top-grid > div {
                padding: 1.8rem 1.5rem !important;
                border-radius: 18px !important;
            }
        }
        @media (min-width: 480px) and (max-width: 767px) {
            /* Two columns on larger phones */
            .metrics-top-grid {
                grid-template-columns: 1fr 1fr;
            }
            .metrics-top-grid > div:last-child {
                grid-column: 1 / -1;
            }
            .metrics-bottom-grid {
                grid-template-columns: 1fr 1fr;
            }
            .metrics-bottom-grid > div:last-child {
                grid-column: 1 / -1;
            }
        }


        /* ── Platform Access Points ── */
        .access-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .access-card {
            border-radius: 24px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(232,168,56,0.12);
        }
        .access-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(0,0,0,0.4);
            border-color: rgba(232,168,56,0.35);
        }
        .access-card-primary  { background: linear-gradient(145deg,#0d2a0a,#1a4a12); }
        .access-card-secondary{ background: linear-gradient(145deg,#0d1a2e,#12253a); }
        .access-card-ussd     { background: linear-gradient(145deg,#1a1a0a,#2a2a12); }
        .access-card-notify   { background: linear-gradient(145deg,#1a0a1a,#2a1228); }

        .access-card-inner {
            display: grid;
            grid-template-columns: 160px 1fr;
            gap: 0;
            align-items: stretch;
        }
        .access-illustration {
            padding: 1.5rem 0.5rem 1.5rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .access-card-content {
            padding: 1.5rem 1.5rem 1.5rem 0.5rem;
        }
        .access-badge {
            display: inline-block;
            font-size: 0.65rem; font-weight: 800;
            text-transform: uppercase; letter-spacing: 1.2px;
            background: rgba(232,168,56,0.15);
            color: #e8a838;
            border: 1px solid rgba(232,168,56,0.25);
            border-radius: 50px;
            padding: 0.2rem 0.7rem;
            margin-bottom: 0.6rem;
        }
        .access-badge-blue  { background: rgba(100,160,255,0.1); color: #7ab0ff; border-color: rgba(100,160,255,0.2); }
        .access-badge-green { background: rgba(80,200,100,0.1);  color: #7de898; border-color: rgba(80,200,100,0.2); }
        .access-badge-amber { background: rgba(232,168,56,0.15); color: #e8a838; border-color: rgba(232,168,56,0.3); }

        .access-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.1rem; color: #fff;
            margin: 0 0 0.5rem; line-height: 1.3;
        }
        .access-desc {
            font-size: 0.82rem; color: rgba(255,255,255,0.55);
            line-height: 1.6; margin: 0 0 0.85rem;
        }
        .access-features {
            display: flex; flex-direction: column; gap: 0.4rem;
            margin-bottom: 0.85rem;
        }
        .af-item {
            display: flex; align-items: flex-start; gap: 0.5rem;
            font-size: 0.78rem; color: rgba(255,255,255,0.7);
            line-height: 1.4;
        }
        .af-item i { color: #e8a838; font-size: 0.75rem; margin-top: 0.1rem; flex-shrink: 0; }
        .access-users { display: flex; flex-wrap: wrap; gap: 0.4rem; }
        .au-pill {
            display: inline-flex; align-items: center; gap: 0.3rem;
            font-size: 0.67rem; font-weight: 700;
            background: rgba(45,80,22,0.4);
            color: #a8e6a0;
            border: 1px solid rgba(168,230,160,0.2);
            border-radius: 50px; padding: 0.2rem 0.6rem;
        }
        .au-pill-amber { background: rgba(232,168,56,0.15); color: #e8a838; border-color: rgba(232,168,56,0.25); }
        .au-pill-green { background: rgba(80,200,100,0.1);  color: #7de898; border-color: rgba(80,200,100,0.2); }
        .au-pill-dark  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }

        /* Responsive */
        @media (max-width: 900px) {
            .access-card-inner { grid-template-columns: 120px 1fr; }
        }
        @media (max-width: 767px) {
            .access-grid { grid-template-columns: 1fr; gap: 1rem; }
            .access-card-inner {
                grid-template-columns: 1fr;
            }
            .access-illustration {
                padding: 1.5rem 1.5rem 0.5rem;
                justify-content: center;
            }
            .access-illustration svg { max-width: 140px !important; }
            .access-card-content { padding: 0.5rem 1.5rem 1.5rem; }
        }

        /* SLA / Platform Commitments bar */
        .sla-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        @media (max-width: 767px) {
            .sla-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }
        }
        @media (max-width: 400px) {
            .sla-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Capabilities Grid */
        .capabilities-section {
            padding: 6rem 0;
            background: var(--primary-green);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .capabilities-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
            animation: movePattern 20s linear infinite;
        }
        
        @keyframes movePattern {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .capability-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.8rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .capability-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .capability-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }
        
        .capability-label {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .capability-desc {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        


        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--earth-brown), var(--primary-green));
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .stat-item {
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 1;
        }
        
        .stat-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(3rem, 6vw, 4.5rem);
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #fff, var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* Partners Section */
        .partners-section {
            padding: 4rem 0;
            background: var(--cream);
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            align-items: center;
        }
        
        .partner-text-logo { font-family: 'Archivo Black', sans-serif; font-size: 1.1rem; letter-spacing: 0.3px; }
        .partner-sub { font-size: 0.72rem; color: #888; margin-top: 0.25rem; font-weight: 600; }
        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            transition: all 0.3s ease;
            min-height: 90px;
            border: 2px solid rgba(45, 80, 22, 0.08);
        }
        
        .partner-logo:hover {
            transform: translateY(-3px);
            border-color: var(--accent-gold);
            box-shadow: 0 8px 20px rgba(232, 168, 56, 0.15);
        }
        
        .partner-logo img {
            max-width: 140px;
            max-height: 60px;
            width: auto;
            height: auto;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
            object-fit: contain;
        }
        
        .partner-logo:hover img { filter: grayscale(0%); opacity: 1; }
        
        .partner-placeholder {
            width: 120px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Blog Section */
        .blog-section {
            padding: 6rem 0;
            background: linear-gradient(to bottom, var(--cream), white);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }
        
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
        }
        
        .blog-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image {
            transform: scale(1.08);
        }
        
        .blog-image-wrapper {
            overflow: hidden;
            position: relative;
        }
        
        .blog-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--accent-gold);
            color: var(--dark-slate);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .blog-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
            color: #666;
            font-size: 0.85rem;
        }
        
        .blog-meta i {
            color: var(--accent-gold);
        }
        
        .blog-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--dark-slate);
            margin-bottom: 1rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .blog-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        
        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-green);
            font-weight: 700;
            text-decoration: none;
            transition: gap 0.3s ease;
        }
        
        .blog-read-more:hover {
            gap: 1rem;
            color: var(--accent-gold);
        }
        
        .blog-read-more i {
            transition: transform 0.3s ease;
        }
        
        .blog-read-more:hover i {
            transform: translateX(5px);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #1a3010 0%, var(--primary-green) 50%, #3d5a1e 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(232,168,56,0.08) 0%, transparent 60%),
                        radial-gradient(circle at 70% 50%, rgba(232,168,56,0.06) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-section .container { position: relative; z-index: 1; }
        .cta-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2rem, 4vw, 3.2rem);
            color: #ffffff;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: -0.01em;
        }
        .cta-text {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.75);
            margin-bottom: 2.5rem;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            z-index: 10;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }
        
        .scroll-indicator i {
            font-size: 2rem;
            color: var(--accent-gold);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-section {
                min-height: auto;
                padding: 6rem 1rem 3rem;
            }
            
            .hero-title {
                font-size: clamp(2rem, 5vw, 4.5rem);
            }
            
            .features-showcase {
                max-width: 100%;
                margin-top: 2rem;
            }
            
            .feature-grid {
                gap: 1.2rem;
                padding: 2rem;
            }
            
            .brand-circle {
                width: 100px;
                height: 100px;
            }
            
            .brand-circle i {
                font-size: 2.5rem;
            }
            
            .brand-text {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 1rem 2.5rem;
            }
            
            .hero-title {
                font-size: clamp(1.8rem, 5vw, 3.5rem);
                margin-bottom: 1.2rem;
            }
            
            .portal-card,
            .feature-card {
                margin-bottom: 2rem;
            }
            
            .features-showcase {
                max-width: 100%;
                margin-top: 2.5rem;
            }
            
            .feature-grid {
                gap: 1rem;
                padding: 1.8rem;
            }
            
            .feature-box {
                padding: 1.5rem 1rem;
            }
            
            .feature-box-icon {
                width: 60px;
                height: 60px;
            }
            
            .feature-box-icon i {
                font-size: 1.7rem;
            }
            
            .feature-box-title {
                font-size: 0.95rem;
            }
            
            .feature-box-desc {
                font-size: 0.8rem;
            }
            
            .brand-circle {
                width: 90px;
                height: 90px;
            }
            
            .brand-circle i {
                font-size: 2rem;
            }
            
            .brand-text {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 5rem 0.75rem 2rem;
            }
            .hero-title {
                font-size: clamp(1.6rem, 8vw, 2.8rem);
                line-height: 1.08;
            }
            .hero-subtitle {
                font-size: 0.92rem;
                margin-bottom: 1.5rem;
            }
            .features-showcase {
                max-width: 100%;
                margin-top: 2rem;
            }
            .feature-grid {
                gap: 0.75rem;
                padding: 1.5rem;
            }
            .feature-box {
                padding: 1.2rem 0.8rem;
                border-radius: 16px;
            }
            .feature-box-icon {
                width: 52px;
                height: 52px;
                margin-bottom: 0.6rem;
            }
            .feature-box-icon i { font-size: 1.4rem; }
            .feature-box-title { font-size: 0.82rem; }
            .feature-box-desc { font-size: 0.72rem; }
        }

        /* ═══════════════════════════════════════════════════════
           ONBOARDING SECTION — KYA & KYAP
        ═══════════════════════════════════════════════════════ */
        .onboarding-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
        }

        .onboarding-tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 3rem;
            background: rgba(45,80,22,0.07);
            border-radius: 60px;
            padding: 6px;
            max-width: 540px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem;
        }

        .onboarding-tab-btn {
            flex: 1;
            padding: 0.85rem 1.4rem;
            border: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(.34,1.56,.64,1);
            background: transparent;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
        }

        .onboarding-tab-btn.active {
            background: linear-gradient(135deg, var(--primary-green), #3d6b20);
            color: #fff;
            box-shadow: 0 6px 20px rgba(45,80,22,0.28);
        }

        .onboarding-tab-btn i { font-size: 1rem; }
        .onboarding-panel { display: none; }
        .onboarding-panel.active { display: block; }

        /* Entry Cards */
        .onboarding-entry-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3.5rem;
        }

        @media (max-width: 768px) { .onboarding-entry-grid { grid-template-columns: 1fr; } }

        .entry-card {
            border-radius: 24px;
            padding: 2.2rem 1.8rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s ease;
            border: 2px solid transparent;
        }

        .entry-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.11); }

        .entry-card.kya-card {
            background: linear-gradient(135deg, #f0f8f0, #e3f5e3);
            border-color: rgba(45,80,22,0.14);
        }

        .entry-card.kyap-card {
            background: linear-gradient(135deg, #fffbf0, #fff4d6);
            border-color: rgba(232,168,56,0.22);
        }

        .entry-card-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.1rem;
        }

        .kya-card .entry-card-badge { background: rgba(45,80,22,0.11); color: var(--primary-green); }
        .kyap-card .entry-card-badge { background: rgba(232,168,56,0.17); color: #8a5e00; }

        .entry-card-icon {
            width: 64px; height: 64px;
            border-radius: 18px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem; margin-bottom: 1.1rem;
        }

        .kya-card .entry-card-icon {
            background: linear-gradient(135deg, var(--primary-green), #3d6b20);
            color: #fff; box-shadow: 0 8px 24px rgba(45,80,22,0.22);
        }

        .kyap-card .entry-card-icon {
            background: linear-gradient(135deg, var(--accent-gold), #d07a00);
            color: #fff; box-shadow: 0 8px 24px rgba(232,168,56,0.28);
        }

        .entry-card-title { font-family: 'Archivo Black', sans-serif; font-size: 1.4rem; margin-bottom: 0.45rem; }
        .kya-card .entry-card-title { color: var(--primary-green); }
        .kyap-card .entry-card-title { color: #7a4800; }

        .entry-card-desc { color: #555; font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.3rem; }

        .entry-card-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.6rem; }

        .entry-chip { padding: 0.28rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
        .kya-card .entry-chip { background: rgba(45,80,22,0.07); color: var(--primary-green); }
        .kyap-card .entry-chip { background: rgba(232,168,56,0.1); color: #7a4800; }

        .entry-card-btn {
            display: inline-flex; align-items: center; gap: 0.55rem;
            padding: 0.8rem 1.6rem; border-radius: 50px; font-weight: 700;
            font-size: 0.9rem; text-decoration: none; border: none; cursor: pointer;
            transition: all 0.3s ease;
        }

        .kya-card .entry-card-btn { background: linear-gradient(135deg, var(--primary-green), #3d6b20); color:#fff; box-shadow: 0 6px 18px rgba(45,80,22,0.22); }
        .kya-card .entry-card-btn:hover { transform: translateX(4px); box-shadow: 0 10px 28px rgba(45,80,22,0.33); color:#fff; }
        .kyap-card .entry-card-btn { background: linear-gradient(135deg, var(--accent-gold), #d07a00); color:#fff; box-shadow: 0 6px 18px rgba(232,168,56,0.27); }
        .kyap-card .entry-card-btn:hover { transform: translateX(4px); box-shadow: 0 10px 28px rgba(232,168,56,0.37); color:#fff; }

        /* Steps Wizard */
        .steps-wizard {
            background: white; border-radius: 28px;
            box-shadow: 0 12px 50px rgba(0,0,0,0.08);
            overflow: hidden; border: 1px solid rgba(0,0,0,0.05);
        }

        .wizard-header {
            padding: 2rem 2.5rem 1.6rem;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
        }

        .wizard-header-left h3 { font-family: 'Archivo Black', sans-serif; font-size: 1.3rem; margin-bottom: 0.25rem; }
        .kya-wizard .wizard-header-left h3 { color: var(--primary-green); }
        .kyap-wizard .wizard-header-left h3 { color: #7a4800; }
        .wizard-header-left p { color: #888; font-size: 0.86rem; margin: 0; }

        .wizard-badge {
            display: flex; align-items: center; gap: 0.45rem;
            padding: 0.45rem 1.1rem; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
        }
        .kya-wizard .wizard-badge { background: rgba(45,80,22,0.08); color: var(--primary-green); }
        .kyap-wizard .wizard-badge { background: rgba(232,168,56,0.11); color: #7a4800; }

        /* Progress Track */
        .steps-progress-track {
            display: flex; align-items: flex-start;
            padding: 2rem 2.5rem; overflow-x: auto; scrollbar-width: none; gap: 0;
        }
        .steps-progress-track::-webkit-scrollbar { display: none; }

        .step-node {
            display: flex; flex-direction: column; align-items: center;
            flex: 1; min-width: 80px; position: relative; cursor: pointer;
        }

        .step-node::before {
            content: ''; position: absolute; top: 20px; left: 50%; right: -50%;
            height: 3px; background: #ebebeb; z-index: 0; transition: background 0.4s ease;
        }
        .step-node:last-child::before { display: none; }
        .step-node.completed::before { background: #e8a838; }
        .kyap-wizard .step-node.completed::before { background: #e8a838; }

        .step-bubble {
            width: 42px; height: 42px; border-radius: 50%;
            border: 3px solid #ddd; background: white;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 0.88rem; color: #bbb;
            z-index: 1; transition: all 0.4s cubic-bezier(.34,1.56,.64,1); position: relative;
        }

        .step-node.active .step-bubble {
            border-color: var(--primary-green); background: #fff; color: var(--primary-green);
            box-shadow: 0 0 0 5px rgba(45,80,22,0.1), 0 4px 12px rgba(45,80,22,0.2); transform: scale(1.1);
        }
        .kyap-wizard .step-node.active .step-bubble {
            border-color: var(--accent-gold); background: #fff; color: var(--accent-gold);
            box-shadow: 0 0 0 5px rgba(232,168,56,0.15), 0 4px 12px rgba(232,168,56,0.2);
        }
        .step-node.completed .step-bubble { border-color: #e8a838; background: #e8a838; color: #1a1a1a; }
        .kyap-wizard .step-node.completed .step-bubble { border-color: #e8a838; background: #e8a838; color: #1a1a1a; }

        .step-label { margin-top: 0.6rem; font-size: 0.72rem; font-weight: 700; text-align: center; color: #ccc; max-width: 80px; line-height: 1.3; transition: color 0.3s ease; }
        .step-node.active .step-label { color: var(--primary-green); }
        .kyap-wizard .step-node.active .step-label { color: var(--accent-gold); }
        .step-node.completed .step-label { color: #666; }

        /* Step Body */
        .wizard-body { padding: 1.5rem 2.5rem 2rem; }

        .step-panel { display: none; animation: stepIn 0.38s ease; }
        .step-panel.active { display: block; }

        @keyframes stepIn { from { opacity:0; transform: translateX(18px); } to { opacity:1; transform: translateX(0); } }

        .step-panel-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.35rem; color: var(--dark-slate); }
        .step-panel-sub { color: #888; font-size: 0.87rem; margin-bottom: 1.6rem; }

        /* Req grid */
        .req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1.5rem; }
        @media (max-width: 600px) { .req-grid { grid-template-columns: 1fr; } }

        .req-item {
            display: flex; align-items: flex-start; gap: 0.8rem;
            padding: 0.9rem 1rem; background: #f8f9fa; border-radius: 14px;
            border: 1.5px solid transparent; transition: all 0.28s ease;
        }
        .req-item:hover { border-color: rgba(232,168,56,0.35); background: #fff8ec; }
        .vc-selected {
            border-color: #e8a838 !important;
            background: #fffbf0 !important;
        }
        .vc-selected .req-item-icon {
            background: #e8a838 !important;
            color: #1a1a1a !important;
        }
        .kyap-wizard .req-item:hover { border-color: rgba(232,168,56,0.26); background: #fffbf0; }

        .req-item-icon {
            width: 36px; height: 36px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; flex-shrink: 0;
        }
        .kya-wizard .req-item-icon { background: rgba(232,168,56,0.1); color: #c8881a; }
        .kyap-wizard .req-item-icon { background: rgba(232,168,56,0.1); color: #c8881a; }

        .req-item-text strong { display: block; font-size: 0.84rem; font-weight: 700; color: #222; margin-bottom: 0.12rem; }
        .req-item-text span { font-size: 0.75rem; color: #999; line-height: 1.35; }
        .req-mandatory { font-size: 0.65rem; padding: 0.12rem 0.45rem; background: rgba(220,38,38,0.07); color: #c0392b; border-radius: 7px; font-weight: 700; display: inline-block; margin-top: 0.2rem; }
        .req-optional { font-size: 0.65rem; padding: 0.12rem 0.45rem; background: rgba(74,158,255,0.07); color: #1a6fc9; border-radius: 7px; font-weight: 700; display: inline-block; margin-top: 0.2rem; }

        /* Notices */
        .wizard-notice {
            display: flex; align-items: flex-start; gap: 0.9rem;
            padding: 0.9rem 1.1rem; border-radius: 12px; margin-bottom: 1.3rem;
            font-size: 0.85rem; line-height: 1.55;
        }
        .wizard-notice.info { background: rgba(74,158,255,0.07); border-left: 4px solid var(--sky-blue); color: #1a4a80; }
        .wizard-notice.success { background: rgba(232,168,56,0.07); border-left: 4px solid var(--accent-gold); color: #7a4800; }
        .wizard-notice.warning { background: rgba(232,168,56,0.09); border-left: 4px solid var(--accent-gold); color: #7a4800; }
        .wizard-notice i { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

        /* Wizard nav */
        .wizard-nav {
            display: flex; align-items: center; justify-content: space-between;
            padding-top: 1.4rem; border-top: 1px solid rgba(0,0,0,0.06);
            flex-wrap: wrap; gap: 0.8rem;
        }
        .wizard-nav-info { font-size: 0.8rem; color: #aaa; }
        .wizard-nav-btns { display: flex; gap: 0.7rem; }

        .wiz-btn {
            padding: 0.7rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.88rem;
            border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.45rem; transition: all 0.3s ease;
        }
        .wiz-btn-secondary { background: #f0f0f0; color: #666; }
        .wiz-btn-secondary:hover { background: #e3e3e3; }

        .kya-wizard .wiz-btn-primary { background: linear-gradient(135deg, var(--primary-green), #3d6b20); color:#fff; box-shadow: 0 5px 16px rgba(45,80,22,0.2); }
        .kya-wizard .wiz-btn-primary:hover { box-shadow: 0 9px 24px rgba(45,80,22,0.3); transform: translateY(-2px); }
        .kyap-wizard .wiz-btn-primary { background: linear-gradient(135deg, var(--accent-gold), #d07a00); color:#fff; box-shadow: 0 5px 16px rgba(232,168,56,0.27); }
        .kyap-wizard .wiz-btn-primary:hover { box-shadow: 0 9px 24px rgba(232,168,56,0.37); transform: translateY(-2px); }

        /* Completion */
        .wizard-complete { text-align: center; padding: 2.5rem 1.5rem; }
        .wizard-complete-icon {
            width: 82px; height: 82px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
            margin: 0 auto 1.3rem; animation: popIn 0.55s cubic-bezier(.34,1.56,.64,1);
        }
        .kya-wizard .wizard-complete-icon { background: linear-gradient(135deg, var(--primary-green), #3d6b20); color:#fff; box-shadow: 0 12px 36px rgba(45,80,22,0.28); }
        .kyap-wizard .wizard-complete-icon { background: linear-gradient(135deg, var(--accent-gold), #d07a00); color:#fff; box-shadow: 0 12px 36px rgba(232,168,56,0.28); }
        @keyframes popIn { from { transform: scale(0.5); opacity:0; } to { transform: scale(1); opacity:1; } }
        .wizard-complete h3 { font-family: 'Archivo Black', sans-serif; font-size: 1.7rem; margin-bottom: 0.7rem; }
        .kya-wizard .wizard-complete h3 { color: var(--primary-green); }
        .kyap-wizard .wizard-complete h3 { color: #7a4800; }
        .wizard-complete p { color: #777; font-size: 0.95rem; max-width: 460px; margin: 0 auto 1.8rem; line-height: 1.65; }
        .complete-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

        @media (max-width: 768px) {
            .steps-progress-track { padding: 1.2rem 1rem; }
            .step-label { font-size: 0.62rem; max-width: 65px; }
            .step-bubble { width: 36px; height: 36px; font-size: 0.78rem; }
            .wizard-body { padding: 1.2rem 1.3rem 1.5rem; }
            .wizard-header { padding: 1.3rem 1.3rem 1rem; }
        }

        /* ══════════════════════════════════════════════
           START YOUR JOURNEY — TABS & JOIN CARDS
        ══════════════════════════════════════════════ */
        .journey-tabs-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 2.5rem;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 0 1rem;
        }
        .journey-tabs-wrapper::-webkit-scrollbar { display: none; }

        .journey-tabs {
            display: inline-flex;
            background: rgba(45,80,22,0.07);
            border-radius: 60px;
            padding: 5px;
            gap: 0;
            flex-wrap: nowrap;
        }

        .journey-tab {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.7rem 1.4rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.88rem;
            cursor: pointer;
            background: transparent;
            color: #c8881a;
            transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
            white-space: nowrap;
        }

        .journey-tab i { font-size: 1rem; }

        .journey-tab.active {
            background: linear-gradient(135deg, var(--primary-green), #3d6b20);
            color: #fff;
            box-shadow: 0 5px 18px rgba(45,80,22,0.28);
        }

        @media (max-width: 768px) {
            .journey-tabs-wrapper { padding: 0 0.5rem; }
            .journey-tabs {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                width: 100%;
                border-radius: 16px;
                padding: 6px;
                gap: 4px;
            }
            .journey-tab {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 0.65rem 0.3rem;
                border-radius: 12px;
                gap: 0.3rem;
                font-size: 0;
                white-space: normal;
                text-align: center;
            }
            .journey-tab i { font-size: 1.25rem; }
            .journey-tab span {
                display: block;
                font-size: 0.6rem;
                font-weight: 800;
                line-height: 1.2;
                letter-spacing: 0;
                max-width: 52px;
            }
        }
        @media (max-width: 380px) {
            .journey-tab span { font-size: 0.55rem; }
            .journey-tab i { font-size: 1.1rem; }
        }

        .journey-panel { display: none; }
        .journey-panel.active { display: block; animation: stepIn 0.35s ease; }

        /* Join card grid */
        .join-card-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 1.8rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) { .join-card-grid { grid-template-columns: 1fr; } }

        .join-hero-card {
            border-radius: 24px;
            padding: 2.2rem 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .join-hero-card::before {
            content: '';
            position: absolute;
            top: -40px; right: -40px;
            width: 180px; height: 180px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
        }
        .join-hero-card::after {
            content: '';
            position: absolute;
            bottom: -30px; left: -30px;
            width: 130px; height: 130px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
        }
        .join-hero-icon {
            width: 60px; height: 60px;
            background: rgba(232,168,56,0.2);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.7rem; margin-bottom: 1.2rem;
            backdrop-filter: blur(8px);
            border: 1.5px solid rgba(232,168,56,0.4);
            color: #e8a838;
        }
        .join-hero-card h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.5rem; margin-bottom: 0.7rem;
            position: relative; z-index: 1;
        }
        .join-hero-card p {
            font-size: 0.92rem; line-height: 1.65;
            opacity: 0.9; margin-bottom: 1.3rem;
            position: relative; z-index: 1;
        }
        .join-chips {
            display: flex; flex-wrap: wrap; gap: 0.4rem;
            margin-bottom: 1.5rem; position: relative; z-index: 1;
        }
        .join-hero-card .join-chips span {
            background: rgba(255,255,255,0.18);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.25);
        }
        .join-cta-btn {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.85rem 1.8rem;
            background: white;
            color: var(--primary-green);
            border: none; border-radius: 50px;
            font-weight: 800; font-size: 0.92rem;
            cursor: pointer; transition: all 0.3s ease;
            position: relative; z-index: 1;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .join-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }

        .join-info-card {
            background: white;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.07);
            border: 1.5px solid rgba(0,0,0,0.05);
        }
        .join-info-card h4 {
            font-size: 1rem; font-weight: 800;
            color: #222; margin-bottom: 1.1rem;
            padding-bottom: 0.7rem;
            border-bottom: 1.5px solid #f0f0f0;
        }
        .join-info-rows { display: grid; gap: 0.6rem; margin-bottom: 1.1rem; }
        .join-info-row {
            display: flex; align-items: center; gap: 0.75rem;
            font-size: 0.86rem; color: #555;
        }
        .join-info-row i {
            width: 28px; height: 28px; border-radius: 8px;
            background: rgba(232,168,56,0.1);
            display: flex; align-items: center; justify-content: center;
            color: #e8a838; font-size: 0.85rem; flex-shrink: 0;
        }
        .join-req-title {
            font-size: 0.75rem; font-weight: 800;
            text-transform: uppercase; letter-spacing: 0.5px;
            color: #999; margin-bottom: 0.3rem;
        }
        .join-info-card .join-chips span {
            background: rgba(232,168,56,0.1);
            color: #c8881a;
            padding: 0.25rem 0.7rem;
            border-radius: 20px;
            font-size: 0.73rem;
            font-weight: 600;
        }



