@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');
        :root {
            --primary: #4fc4ff;
            --primary-dark: #4353ff;
            --accent: #7cf7ff;
            --accent-light: #b5f5ff;
            --dark: #050b2b;
            --darker: #03071f;
            --light: #f4f8ff;
            --gradient-start: #2563eb;
            --gradient-end: #0ea5e9;
            --gradient-accent: linear-gradient(130deg, #54f0ff 0%, #6d5bff 100%);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.25);
            --transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'IBM Plex Sans', sans-serif;
            background: linear-gradient(135deg, #ecf3ff 0%, #f9fbff 100%);
            color: #131a3d;
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
        }

        .hero-title,
        .section-title,
        .stack-cost-card h3,
        .stack-cost-figure span,
        .stack-cost-row strong,
        .hero-pricing-anchor strong,
        .stack-label,
        .stack-tool-list span,
        .preview-title,
        .module-group-heading,
        .module-control-rail .module-info h4,
        .home-page .os-modules span,
        .home-page .why-proof-kpi strong {
            font-family: 'Space Grotesk', sans-serif;
        }
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(79, 196, 255, 0.1) 0%, transparent 25%),
                        radial-gradient(circle at 90% 80%, rgba(99, 91, 255, 0.08) 0%, transparent 20%);
            z-index: -1;
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .navbar-brand {
            font-weight: 800;
            color: var(--dark);
            display: flex;
            align-items: center;
            font-size: 1.8rem;
        }
        
        .navbar-brand img {
            height: 42px;
            margin-right: 12px;
        }
        
        .navbar-brand span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: var(--transition);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .nav-link:hover::after  {
            width: 100%;
        }

        .platform-dropdown .platform-dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .platform-dropdown {
            position: static;
        }

        .platform-caret {
            font-size: 0.72rem;
            color: #6f7c9b;
            transition: transform 0.24s ease;
        }

        .platform-dropdown.show .platform-caret {
            transform: rotate(180deg);
        }

        .platform-mega-menu {
            width: min(960px, calc(100vw - 1.5rem));
            left: max(0.75rem, calc(50vw - 480px));
            right: auto;
            top: calc(100% + 14px);
            transform: none;
            border: 1px solid rgba(24, 44, 86, 0.1);
            border-radius: 16px;
            box-shadow: 0 22px 44px rgba(9, 28, 69, 0.16);
            background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
            max-height: calc(100vh - 96px);
            overflow-y: auto;
        }

        .platform-mega-menu[data-bs-popper] {
            left: max(0.75rem, calc(50vw - 480px));
            right: auto;
            top: calc(100% + 14px);
            transform: none;
        }

        .platform-mega-inner {
            padding: 16px;
        }

        .platform-mega-banner {
            margin-top: 12px;
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid rgba(54, 92, 170, 0.18);
            background: linear-gradient(135deg, rgba(230, 242, 255, 0.88) 0%, rgba(246, 251, 255, 0.94) 100%);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .platform-mega-banner-tag {
            flex-shrink: 0;
            font-size: 0.63rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 700;
            color: #1e4ea6;
            background: rgba(79, 196, 255, 0.22);
            border: 1px solid rgba(79, 196, 255, 0.34);
            border-radius: 999px;
            padding: 5px 8px;
            line-height: 1;
        }

        .platform-mega-banner-text {
            font-size: 0.86rem;
            line-height: 1.45;
            color: #20345f;
            font-weight: 500;
        }

        .platform-menu-group {
            padding: 14px;
            border-radius: 12px;
            background: rgba(235, 244, 255, 0.72);
        }

        .platform-menu-label {
            font-size: 0.67rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #657390;
            font-weight: 700;
            padding-left: 8px;
            margin-bottom: 8px;
        }

        .platform-menu-link {
            display: block;
            padding: 9px 12px;
            margin: 0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #162044;
            transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
        }

        .platform-menu-link:hover,
        .platform-menu-link:focus {
            background-color: rgba(79, 196, 255, 0.16);
            color: #143f94;
            transform: translateX(1px);
        }

        @media (max-width: 991.98px) {
            .platform-mobile-title {
                font-weight: 600;
                color: #132251;
            }

            .platform-mobile-stack {
                border-left: 2px solid rgba(79, 196, 255, 0.28);
                margin-left: 10px;
                padding-left: 14px;
            }

            .platform-mobile-block {
                padding: 2px 0;
            }

            .platform-mobile-label {
                font-size: 0.67rem;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                color: #6f7d99;
                font-weight: 700;
            }

            .platform-mobile-link {
                margin: 0;
                padding-left: 0;
                font-weight: 500;
                color: #1b2c58;
                border-radius: 8px;
            }

            .platform-mobile-link::after {
                display: none;
            }

            .platform-mobile-link:hover,
            .platform-mobile-link:focus {
                background: rgba(79, 196, 255, 0.12);
                color: #15469f;
            }
        }

        @media (min-width: 992px) {
            .platform-dropdown .platform-mega-menu {
                margin-top: 14px;
            }
        }
        
        /* Hero Section */
        .hero {
            min-height: 110vh;
            padding: 160px 0 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background:
                radial-gradient(circle at 20% -10%, rgba(111, 206, 255, 0.35), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(157, 170, 255, 0.3), transparent 60%),
                linear-gradient(130deg, #f8fbff 0%, #eef4ff 45%, #edf8ff 100%);
            color: #071b34;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: -20% -10% -10% -10%;
            background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), transparent 55%),
                        radial-gradient(circle at 80% 10%, rgba(173, 217, 255, 0.7), transparent 55%);
            opacity: 0.55;
            pointer-events: none;
            z-index: 0;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 45%);
            pointer-events: none;
            z-index: 2;
        }

        .hero > .container {
            position: relative;
            z-index: 3;
        }

        .hero-grid-overlay {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(10,48,88,0.04) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(10,48,88,0.04) 1px, transparent 1px);
            background-size: 160px 160px;
            opacity: 0.45;
            z-index: 1;
            pointer-events: none;
        }

        .hero-orbit {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 2;
        }

        .hero-orbit .orbit {
            position: absolute;
            border: 1px solid rgba(41, 106, 204, 0.15);
            border-radius: 50%;
            animation: orbitSpin 26s linear infinite;
        }

        .orbit-one {
            width: 420px;
            height: 420px;
            top: 10%;
            right: 5%;
        }

        .orbit-two {
            width: 280px;
            height: 280px;
            top: 30%;
            right: 18%;
            animation-duration: 18s;
        }

        .orbit-three {
            width: 520px;
            height: 520px;
            top: -5%;
            right: -10%;
            border-color: rgba(115, 86, 255, 0.18);
            animation-duration: 32s;
        }

        .hero-aurora {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.9;
            z-index: 0;
            animation: auroraFlow 16s ease-in-out infinite alternate;
        }

        .hero-aurora-one {
            top: -120px;
            left: -80px;
            background: radial-gradient(circle, rgba(147, 228, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
        }

        .hero-aurora-two {
            bottom: -160px;
            right: -60px;
            background: radial-gradient(circle, rgba(180, 173, 255, 0.65) 0%, rgba(255, 255, 255, 0) 70%);
            animation-duration: 22s;
        }

        .hero-row {
            position: relative;
            z-index: 5;
        }

        .hero-left {
            position: relative;
        }

        .hero-pill-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            border-radius: 999px;
            background: var(--gradient-accent);
            color: #04112b;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            box-shadow: 0 15px 40px rgba(84, 154, 255, 0.25);
        }

        .hero-pill i {
            font-size: 1rem;
        }

        .hero-pill.outline {
            background: rgba(255, 255, 255, 0.7);
            color: #0b2042;
            border: 1px solid rgba(79, 129, 255, 0.35);
            box-shadow: none;
        }

        .hero-title,
        .hero-pill,
        .metric-pill strong,
        .hero-highlight {
            font-family: 'Space Grotesk', sans-serif;
        }

        .hero-title {
            font-weight: 900;
            font-size: clamp(2.1rem, 4.2vw, 3.7rem);
            margin-bottom: 25px;
            line-height: 1.1;
            background: linear-gradient(90deg, #031b41 0%, #0c4ba5 40%, #5c58ff 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(7, 30, 67, 0.82);
            margin-bottom: 24px;
        }

        .hero-highlight {
            color: #0d2870;
            font-weight: 600;
        }

        .hero-support-line {
            font-size: 1.05rem;
            color: rgba(6, 28, 63, 0.86);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .hero-pricing-anchor {
            margin-bottom: 24px;
            padding: 10px 14px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(59, 110, 220, 0.24);
            font-size: 0.98rem;
            color: #0c2d66;
            display: inline-block;
        }

        .hero-pricing-anchor strong {
            color: #0c1f53;
        }

        .hero-buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: flex-start;
            margin-bottom: 30px;
        }

        .hero .hero-cta {
            gap: 10px;
            flex-wrap: nowrap;
        }

        .hero .hero-cta .btn {
            padding: 0.72rem 1.15rem !important;
            font-size: 0.9rem;
            line-height: 1.15;
            border-radius: 12px;
            white-space: nowrap;
        }

        .stack-cost-card {
            margin: 0 0 18px;
            padding: 16px 18px;
            border-radius: 20px;
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(234, 244, 255, 0.78));
            border: 1px solid rgba(63, 115, 224, 0.2);
            box-shadow: 0 18px 38px rgba(16, 48, 94, 0.14);
            max-width: 560px;
        }

        .stack-cost-card h3 {
            margin: 0 0 10px;
            font-size: 0.96rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #0c2d66;
            font-weight: 700;
        }

        .stack-cost-rows {
            display: grid;
            gap: 6px;
        }

        .stack-cost-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 10px;
            font-size: 0.92rem;
            color: rgba(7, 30, 67, 0.86);
        }

        .stack-cost-row strong {
            color: #0b1f4f;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
        }

        .stack-cost-divider {
            border-top: 1px solid rgba(37, 87, 188, 0.2);
            margin: 10px 0 12px;
        }

        .stack-cost-footer {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .stack-cost-figure {
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(59, 110, 220, 0.18);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stack-cost-figure span {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(10, 32, 64, 0.65);
        }

        .stack-cost-figure strong {
            font-size: 1.32rem;
            line-height: 1;
            font-weight: 800;
            font-family: 'Space Grotesk', sans-serif;
            font-variant-numeric: tabular-nums;
        }

        .stack-total strong {
            color: #0b1e4a;
        }

        .stack-workroomly strong {
            color: #0f7f4d;
        }

        .stack-cost-save {
            margin: 10px 0 0;
            padding: 10px 12px;
            border-radius: 12px;
            background: linear-gradient(120deg, rgba(25, 117, 241, 0.12), rgba(28, 194, 127, 0.16));
            border: 1px solid rgba(31, 126, 230, 0.18);
            color: #0c2d66;
            font-size: 0.94rem;
            font-weight: 700;
        }

        .stack-cost-save strong {
            color: #0a5f3a;
        }

        .stack-cost-disclaimer {
            margin: 8px 0 0;
            color: rgba(7, 30, 67, 0.62);
            font-size: 0.74rem;
            line-height: 1.35;
        }

        .stack-cost-link {
            display: inline-flex;
            align-items: center;
            margin-top: 8px;
            color: #0c3ea1;
            font-size: 0.84rem;
            font-weight: 700;
            text-decoration: none;
        }

        .stack-cost-link:hover {
            text-decoration: underline;
            color: #072f7b;
        }

        .hero .hero-right.hero-cost-column {
            padding-top: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero .hero-cost-card {
            max-width: 100%;
            margin-bottom: 10px;
        }

        .hero-cost-footnote {
            margin: 0;
            color: rgba(8, 34, 76, 0.7);
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
        }

        .hero-glints {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 22px;
        }

        .glint {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            border-radius: 999px;
            background: rgba(12, 27, 56, 0.07);
            border: 1px solid rgba(12, 27, 56, 0.15);
            color: #0a2040;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }

        .glint i {
            color: #326bff;
        }

        .hero-metric-line {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .hero-right .hero-metric-line {
            margin-top: 0;
            position: relative;
            z-index: 2;
        }

        .metric-pill {
            padding: 10px 12px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(39, 84, 184, 0.2);
            display: flex;
            flex-direction: column;
            min-width: 0;
            box-shadow: 0 15px 30px rgba(16, 48, 94, 0.1);
        }

        .metric-pill strong {
            font-size: 1.35rem;
            color: #0a2040;
            line-height: 1;
        }

        .metric-pill span {
            font-size: 0.7rem;
            color: rgba(10, 32, 64, 0.65);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-top: 4px;
        }
        
        .btn-gradient {
            background: linear-gradient(120deg, #2ab8ff 0%, #7165ff 60%, #9bc7ff 100%);
            border: none;
            box-shadow: 0 20px 45px rgba(43, 184, 255, 0.35);
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .btn-gradient:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 25px 55px rgba(43, 184, 255, 0.45);
        }

        .btn-glass {
            backdrop-filter: blur(16px);
            border: 1px solid rgba(108, 143, 255, 0.35);
            color: #0c1a32;
            background: rgba(255, 255, 255, 0.75);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-3px);
        }

        .play-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(108, 143, 255, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .hero-social-proof {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 35px;
        }

        .avatar-group {
            display: inline-flex;
            align-items: center;
        }

        .avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 2px solid rgba(109, 139, 255, 0.5);
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a1b37;
            font-weight: 700;
            margin-left: -12px;
            font-size: 0.85rem;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .proof-title {
            margin: 0;
            font-weight: 700;
            color: #0b1a35;
        }

        .proof-subtitle {
            margin: 0;
            color: rgba(11, 26, 53, 0.6);
            font-size: 0.95rem;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 18px;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(114, 140, 255, 0.3);
            border-radius: 26px;
            backdrop-filter: blur(25px);
            box-shadow: 0 25px 65px rgba(15, 49, 94, 0.15);
        }

        .stat-card {
            padding: 20px 24px;
            color: #071a34;
        }

        .stat-card .label {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            color: rgba(7, 26, 55, 0.6);
        }

        .stat-card h3 {
            font-size: 2.5rem;
            margin: 5px 0;
            font-weight: 800;
        }

        .stat-card small {
            color: rgba(7, 26, 55, 0.5);
        }

        .hero-right {
            position: relative;
            padding-top: 40px;
        }

        .hero-visual-stack {
            position: relative;
            padding-bottom: 120px;
        }

        .hero-right .command-console {
            margin-bottom: 0;
        }

        .hero-right .hero-metric-segment {
            margin-top: 18px;
        }

        .command-console {
            padding: 35px;
            color: #031a3b;
            border-radius: 32px;
            position: relative;
            overflow: hidden;
        }

        .command-console::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, rgba(255,255,255,0.5), transparent);
            pointer-events: none;
        }

        .console-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
        }

        .console-status {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .pulse-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #37d5ff;
            box-shadow: 0 0 12px rgba(55, 213, 255, 0.7);
            animation: heroPulse 2s infinite;
        }

        .badge.beta {
            background: rgba(3, 30, 64, 0.08);
            border-radius: 999px;
            padding: 6px 18px;
            font-size: 0.75rem;
            letter-spacing: 0.06em;
            border: 1px solid rgba(3, 30, 64, 0.15);
        }

        .console-body {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .console-line {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 18px;
            align-items: start;
        }

        .console-label {
            margin: 0;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(3, 27, 61, 0.55);
        }

        .console-message {
            padding: 16px 18px;
            border-radius: 16px;
            background: rgba(3, 20, 44, 0.04);
            line-height: 1.5;
        }

        .console-message.primary {
            background: rgba(45, 173, 255, 0.12);
            border: 1px solid rgba(76, 164, 255, 0.35);
        }

        .console-line.grid {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
        }

        .chip {
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(3, 23, 53, 0.05);
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .console-footer {
            margin-top: 30px;
            padding: 18px 0 0 0;
            border-top: 1px solid rgba(3, 24, 52, 0.08);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .type-indicator {
            display: inline-flex;
            gap: 6px;
        }

        .type-indicator span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(3, 19, 46, 0.35);
            animation: heroPulse 1.5s infinite ease-in-out;
        }

        .type-indicator span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .type-indicator span:nth-child(3) {
            animation-delay: 0.4s;
        }

        .floating-widget {
            position: absolute;
            padding: 22px 24px;
            color: #051c3b;
            width: 260px;
        }

        .schedule-card {
            top: -30px;
            right: 10px;
            animation: heroFloat 8s ease-in-out infinite;
        }

        .metrics-card {
            bottom: -20px;
            left: 30px;
            display: flex;
            gap: 20px;
            animation: heroFloat 10s ease-in-out infinite;
            animation-delay: 1s;
        }

        .widget-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            letter-spacing: 0.04em;
            margin-bottom: 12px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }

        .dot-green {
            background: #4dffcb;
            box-shadow: 0 0 10px rgba(77, 255, 203, 0.8);
        }

        .widget-body {
            margin-bottom: 18px;
            color: rgba(5, 28, 68, 0.75);
        }

        .widget-footer {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: rgba(5, 28, 68, 0.7);
        }

        .metric {
            text-align: center;
        }

        .metric-label {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            color: rgba(3, 21, 49, 0.5);
        }

        .metric h4 {
            font-size: 2rem;
            font-weight: 800;
            margin: 5px 0;
        }

        .hero-marquee {
            margin-top: 80px;
            padding: 16px 0;
            overflow: hidden;
            position: relative;
            display: flex;
            gap: 40px;
        }

        .hero-marquee::before,
        .hero-marquee::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            pointer-events: none;
        }

        .hero-marquee::before {
            left: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent);
        }

        .hero-marquee::after {
            right: 0;
            background: linear-gradient(270deg, rgba(255, 255, 255, 0.9), transparent);
        }

        .marquee-track {
            display: flex;
            gap: 60px;
            white-space: nowrap;
            font-weight: 600;
            letter-spacing: 0.05em;
            animation: heroMarquee 18s linear infinite;
        }

        .marquee-track span {
            color: rgba(5, 30, 68, 0.65);
        }

        .stack-replacement-strip {
            margin-top: 48px;
            border-radius: 28px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(84, 132, 234, 0.24);
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.8fr);
            gap: 18px;
            align-items: center;
            box-shadow: 0 24px 55px rgba(15, 50, 103, 0.12);
        }

        .stack-side h3 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
            color: #081c4c;
        }

        .stack-label {
            margin: 0 0 8px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(8, 28, 76, 0.64);
        }

        .stack-tool-list {
            margin: 14px 0 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .stack-tool-list span {
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(11, 28, 65, 0.07);
            color: #17376f;
            font-size: 0.84rem;
            font-weight: 600;
            border: 1px solid rgba(11, 28, 65, 0.1);
        }

        .stack-cost-line {
            margin: 0;
            font-size: 0.95rem;
            color: #7c2432;
            font-weight: 600;
        }

        .stack-divider {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: linear-gradient(130deg, #45cdff, #5e68ff);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            box-shadow: 0 12px 30px rgba(68, 132, 255, 0.35);
        }

        .stack-workroomly {
            border-radius: 18px;
            padding: 18px;
            background: linear-gradient(145deg, #eef6ff, #e5f0ff);
            border: 1px solid rgba(56, 112, 220, 0.2);
        }

        .stack-workroomly h3 {
            margin-bottom: 8px;
        }

        .stack-included {
            margin: 0 0 8px;
            color: rgba(9, 34, 78, 0.82);
        }

        .stack-win {
            margin: 0;
            font-weight: 700;
            color: #0c2f6c;
        }

        .os-architecture-section {
            margin-top: 44px;
        }

        .os-architecture-card {
            border-radius: 20px;
            padding: 22px;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(84, 132, 234, 0.22);
            box-shadow: 0 18px 45px rgba(16, 45, 94, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .os-architecture-card h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 700;
            color: #082150;
        }

        .os-architecture-card p {
            margin: 0;
            color: rgba(8, 31, 69, 0.78);
        }

        .os-modules {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .os-modules span {
            padding: 6px 10px;
            border-radius: 10px;
            background: rgba(44, 97, 206, 0.11);
            color: #123a81;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .who-for-section {
            margin-top: 32px;
        }

        .team-fit-card {
            border-radius: 18px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(84, 132, 234, 0.22);
            box-shadow: 0 16px 38px rgba(16, 45, 94, 0.09);
            height: 100%;
        }

        .team-fit-card h3 {
            margin: 0 0 8px;
            font-size: 1.08rem;
            font-weight: 700;
            color: #082150;
        }

        .team-fit-card p {
            margin: 0;
            color: rgba(8, 31, 69, 0.78);
        }

        .founder-pillars {
            margin-top: 44px;
        }

        .pillars-intro {
            margin-bottom: 20px;
        }

        .pillars-intro h2 {
            margin: 0 0 8px;
            color: #071f4f;
            font-size: clamp(1.6rem, 2.7vw, 2.2rem);
            font-weight: 800;
        }

        .pillars-intro p {
            margin: 0;
            color: rgba(5, 30, 67, 0.78);
            font-size: 1.02rem;
        }

        .pillar-card {
            border-radius: 20px;
            padding: 22px;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(84, 132, 234, 0.22);
            box-shadow: 0 18px 45px rgba(16, 45, 94, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .pillar-index {
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.78rem;
            color: #0a3a87;
            font-weight: 700;
        }

        .pillar-card h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 700;
            color: #082150;
        }

        .pillar-card p {
            margin: 0;
            color: rgba(8, 31, 69, 0.78);
        }

        .pillar-card p + p {
            margin-top: 8px;
        }

        .pillar-modules {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .pillar-modules span {
            padding: 6px 10px;
            border-radius: 10px;
            background: rgba(44, 97, 206, 0.11);
            color: #123a81;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .pillar-card img {
            margin-top: auto;
            border-radius: 14px;
            border: 1px solid rgba(18, 67, 155, 0.18);
            box-shadow: 0 14px 28px rgba(17, 48, 103, 0.18);
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .ai-native-ops-section {
            margin-top: 44px;
            padding: 30px;
            border-radius: 26px;
            background: rgba(255, 255, 255, 0.86);
            border: 1px solid rgba(84, 132, 234, 0.24);
            box-shadow: 0 20px 46px rgba(15, 50, 103, 0.12);
        }

        .ai-native-label {
            margin: 0 0 10px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 0.78rem;
            font-weight: 700;
            color: #0a3a87;
        }

        .ai-native-ops-section h2 {
            margin: 0 0 10px;
            font-size: clamp(1.45rem, 2.2vw, 2rem);
            font-weight: 800;
            color: #071f4f;
        }

        .ai-native-ops-section p {
            margin: 0;
            color: rgba(5, 30, 67, 0.78);
        }

        .ai-native-points {
            list-style: none;
            margin: 16px 0 0;
            padding: 0;
            display: grid;
            gap: 10px;
        }

        .ai-native-points li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #0b2f6e;
            font-weight: 600;
            line-height: 1.4;
        }

        .ai-native-points i {
            color: #1a76ff;
            margin-top: 2px;
        }

        .ai-native-ops-section .hero-right {
            padding-top: 0;
        }

        .trust-local-section {
            padding: 36px 0 22px;
        }

        .trust-local-card {
            padding: 28px;
            border-radius: 24px;
            background: #ffffff;
            border: 1px solid rgba(86, 129, 221, 0.2);
            box-shadow: 0 16px 38px rgba(14, 42, 90, 0.08);
        }

        .trust-local-card h2 {
            margin: 0 0 8px;
            font-size: clamp(1.45rem, 2.5vw, 2rem);
            font-weight: 800;
            color: #081f4b;
        }

        .trust-local-card p {
            margin: 0 0 18px;
            color: rgba(8, 31, 69, 0.78);
        }

        .trust-point {
            border-radius: 12px;
            padding: 11px 12px;
            background: rgba(40, 105, 216, 0.08);
            border: 1px solid rgba(40, 105, 216, 0.16);
            color: #0a316f;
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            min-height: 100%;
        }

        .trust-faq-row {
            margin-top: 16px;
        }

        .trust-faq-card {
            height: 100%;
            border-radius: 16px;
            padding: 20px;
            background: #fff;
            border: 1px solid rgba(86, 129, 221, 0.18);
            box-shadow: 0 10px 24px rgba(14, 42, 90, 0.07);
        }

        .trust-faq-card h3 {
            font-size: 1.04rem;
            margin: 0 0 8px;
            color: #082150;
            font-weight: 700;
        }

        .trust-faq-card p {
            margin: 0;
            color: rgba(8, 31, 69, 0.78);
            font-size: 0.92rem;
        }

        .why-workroomly-section {
            padding: 20px 0 0;
        }

        .why-workroomly-card {
            padding: 30px;
            border-radius: 24px;
            background: #ffffff;
            border: 1px solid rgba(86, 129, 221, 0.2);
            box-shadow: 0 16px 38px rgba(14, 42, 90, 0.08);
        }

        .why-workroomly-card h2 {
            margin: 0 0 8px;
            font-size: clamp(1.45rem, 2.5vw, 2rem);
            font-weight: 800;
            color: #081f4b;
        }

        .why-workroomly-card p {
            margin: 0 0 12px;
            color: rgba(8, 31, 69, 0.78);
        }

        .why-tool-list {
            margin: 0 0 12px;
            padding-left: 18px;
            color: #0a316f;
            font-weight: 600;
        }

        .why-tool-list li {
            margin-bottom: 4px;
        }

        .final-conversion-section {
            padding: 34px 0 12px;
        }

        .final-conversion-card {
            padding: 34px 28px;
            border-radius: 24px;
            background: linear-gradient(140deg, #06173e 0%, #0b2c6d 48%, #0f57b0 100%);
            border: 1px solid rgba(129, 198, 255, 0.35);
            box-shadow: 0 24px 54px rgba(4, 21, 57, 0.32);
            text-align: center;
            color: #e8f4ff;
        }

        .final-conversion-card h2 {
            margin: 0 0 12px;
            font-size: clamp(1.5rem, 2.8vw, 2.3rem);
            font-weight: 800;
            color: #ffffff;
        }

        .final-conversion-card p {
            margin: 0;
            color: rgba(233, 244, 255, 0.9);
            font-size: 1.02rem;
        }

        .final-conversion-actions {
            margin-top: 22px;
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        @keyframes heroFloat {
            0% { transform: translateY(0px) translateZ(0); }
            50% { transform: translateY(-12px) translateZ(0); }
            100% { transform: translateY(0px) translateZ(0); }
        }

        @keyframes heroPulse {
            0% { opacity: 0.4; transform: scale(0.9); }
            50% { opacity: 1; transform: scale(1.1); }
            100% { opacity: 0.4; transform: scale(0.9); }
        }

        @keyframes heroMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        @keyframes auroraFlow {
            0% { transform: translate3d(0, 0, 0) scale(1); }
            50% { transform: translate3d(40px, -30px, 0) scale(1.05); }
            100% { transform: translate3d(-30px, 20px, 0) scale(0.95); }
        }

        @keyframes orbitSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @media (max-width: 991px) {
            .hero {
                padding: 140px 0 90px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero .hero-cta {
                flex-wrap: wrap;
            }

            .hero-social-proof {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-right {
                padding-top: 0;
            }

            .hero .hero-right.hero-cost-column {
                justify-content: flex-start;
            }

            .hero-visual-stack {
                padding-bottom: 0;
            }

            .command-console {
                margin-bottom: 20px;
            }

            .floating-widget {
                position: relative;
                width: 100%;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                margin-top: 20px;
            }

            .metrics-card {
                justify-content: space-between;
            }

            .module-lab {
                padding: 32px;
            }

            .module-control-rail {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                max-height: 126px;
            }

            .module-control-rail .module-card {
                min-width: 0;
            }

            .preview-frame {
                border-radius: 22px;
            }

            .stack-replacement-strip {
                grid-template-columns: 1fr;
            }

            .ai-native-ops-section {
                padding: 24px;
            }

            .stack-divider {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .hero .hero-right {
                display: block;
                padding-top: 0;
            }

            .hero .hero-right .hero-visual-stack {
                display: none;
            }

            .hero-right .hero-metric-segment {
                margin-top: 0;
            }

            .hero-right .hero-metric-line {
                margin-top: 0;
            }

            .stack-cost-footer {
                grid-template-columns: 1fr;
            }

            .stack-cost-card {
                padding: 15px;
            }

            .hero-cost-footnote {
                text-align: left;
            }

            .hero-metric-line {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .module-lab,
            .module-control-rail-wrap,
            .module-lightbox,
            .hero-marquee {
                display: none;
            }

            .mobile-proof-section {
                display: block;
                margin-top: 28px;
            }

            .mobile-proof-head {
                margin-bottom: 14px;
            }

            .mobile-proof-eyebrow {
                margin: 0 0 8px;
                text-transform: uppercase;
                letter-spacing: 0.11em;
                font-size: 0.75rem;
                font-weight: 700;
                color: rgba(7, 32, 78, 0.68);
            }

            .mobile-proof-head h3 {
                margin: 0 0 8px;
                font-size: clamp(1.35rem, 5.4vw, 1.8rem);
                font-weight: 800;
                color: #081f4b;
            }

            .mobile-proof-head p {
                margin: 0;
                color: rgba(8, 31, 69, 0.78);
                font-size: 0.95rem;
            }

            .mobile-proof-grid {
                display: grid;
                gap: 12px;
            }

            .mobile-proof-card {
                border-radius: 18px;
                overflow: hidden;
                background: #ffffff;
                border: 1px solid rgba(77, 129, 232, 0.2);
                box-shadow: 0 16px 38px rgba(16, 45, 94, 0.11);
            }

            .mobile-proof-card img {
                width: 100%;
                aspect-ratio: 16 / 10;
                object-fit: cover;
                display: block;
                background: #eaf2ff;
            }

            .mobile-proof-content {
                padding: 12px 14px 14px;
            }

            .mobile-proof-content h4 {
                margin: 0 0 4px;
                font-size: 1rem;
                font-weight: 700;
                color: #0a2b66;
            }

            .mobile-proof-content p {
                margin: 0;
                font-size: 0.87rem;
                color: rgba(10, 32, 64, 0.72);
            }

            .mobile-proof-cta {
                margin-top: 14px;
                display: grid;
                gap: 10px;
            }

            .mobile-proof-cta .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .mobile-proof-cta .btn:focus-visible {
                outline: 2px solid rgba(76, 200, 255, 0.9);
                outline-offset: 2px;
            }
        }

        @media (max-width: 575px) {
            .hero-pill-group {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

            .console-line {
                grid-template-columns: 1fr;
            }

            .module-lab {
                padding: 24px;
            }

            .module-control-rail .module-card {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }

            .preview-zoom-btn {
                top: 12px;
                right: 12px;
                width: 38px;
                height: 38px;
                border-radius: 12px;
            }

            .preview-nav {
                right: 12px;
                bottom: 12px;
                gap: 8px;
            }

            .preview-arrow {
                width: 34px;
                height: 34px;
                border-radius: 10px;
            }

            .preview-page-indicator {
                min-width: 54px;
                padding: 8px 10px;
                font-size: 0.74rem;
            }

            .preview-meta-row {
                align-items: flex-start;
                flex-direction: column;
            }

            .hero-metric-line {
                grid-template-columns: 1fr;
            }

            .hero-glints {
                flex-direction: column;
            }

            .hero-pricing-anchor {
                display: block;
                width: 100%;
                margin-bottom: 18px;
            }

            .stack-cost-card {
                margin-bottom: 16px;
                max-width: 100%;
            }

            .stack-cost-row {
                font-size: 0.9rem;
            }

            .stack-cost-figure strong {
                font-size: 1.2rem;
            }

            .stack-replacement-strip,
            .trust-local-card,
            .why-workroomly-card,
            .final-conversion-card {
                padding: 20px;
            }

            .ai-native-ops-section {
                padding: 20px;
            }

            .stack-side h3,
            .pillars-intro h2 {
                font-size: 1.35rem;
            }

            .pillar-card {
                padding: 18px;
            }

            .final-conversion-actions .btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Module Lab */
        .module-lab {
            margin-top: 60px;
            padding: 42px;
            border-radius: 36px;
            background:
                radial-gradient(circle at 20% 30%, rgba(82, 149, 255, 0.35), transparent 55%),
                radial-gradient(circle at 85% 10%, rgba(141, 87, 255, 0.25), transparent 60%),
                linear-gradient(140deg, #040b1f 0%, #051536 55%, #030d25 100%);
            border: 1px solid rgba(78, 118, 255, 0.35);
            box-shadow: 0 45px 100px rgba(2, 9, 28, 0.75);
            color: #f1f5ff;
        }

        .module-lab-fluid-row {
            width: 100%;
        }

        .module-lab-header {
            max-width: 720px;
            margin-bottom: 28px;
        }

        .lab-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(10, 27, 58, 0.5);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #e7f0ff;
        }

        .module-lab-header h3 {
            margin: 18px 0 12px;
            font-weight: 800;
            font-size: 2rem;
        }

        .module-lab-header p {
            margin: 0;
            color: rgba(232, 241, 255, 0.7);
        }

        .module-preview-wall {
            border-radius: 32px;
            padding: 32px;
            background: linear-gradient(125deg, rgba(8, 19, 46, 0.95), rgba(13, 32, 74, 0.95));
            border: 1px solid rgba(113, 166, 255, 0.25);
            box-shadow: inset 0 0 90px rgba(2, 8, 27, 0.8);
            margin-bottom: 0;
        }

        .module-control-rail-wrap {
            margin-top: 0 !important;
        }

        .preview-frame {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10;
            border-radius: 28px;
            background: linear-gradient(130deg, rgba(7, 15, 35, 0.9), rgba(12, 30, 68, 0.95));
            overflow: hidden;
            border: 1px solid rgba(168, 212, 255, 0.1);
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65);
        }

        .preview-frame::after {
            content: '';
            position: absolute;
            inset: 12px;
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .preview-toolbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            background: linear-gradient(90deg, rgba(4, 9, 30, 0.85), rgba(6, 19, 55, 0.75));
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 3;
        }

        .window-dots {
            display: flex;
            gap: 6px;
        }

        .window-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }

        .window-dot.red { background: #ff6b6b; }
        .window-dot.yellow { background: #fbc245; }
        .window-dot.green { background: #3bff99; }

        .preview-title {
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #ebf4ff;
            font-size: 0.85rem;
        }

        .preview-pill {
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #f4fbff;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .module-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            opacity: 0;
            transform: scale(0.96);
            transition: opacity 0.35s ease, transform 0.45s ease, filter 0.4s ease;
            z-index: 1;
            cursor: zoom-in;
            image-rendering: auto;
            filter: saturate(1.02) contrast(1.01);
        }

        .module-image.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        .preview-zoom-btn {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(149, 205, 255, 0.45);
            background: rgba(8, 16, 40, 0.85);
            border-radius: 14px;
            color: #deeeff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.25s ease, background 0.25s ease;
            z-index: 5;
        }

        .preview-zoom-btn:hover {
            transform: translateY(-2px);
            background: rgba(27, 54, 112, 0.95);
        }

        .preview-nav {
            position: absolute;
            right: 18px;
            bottom: 18px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            z-index: 5;
        }

        .preview-arrow {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            border: 1px solid rgba(149, 205, 255, 0.35);
            background: rgba(5, 12, 32, 0.85);
            color: #ebf3ff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .preview-arrow:hover {
            transform: translateY(-1px);
            border-color: rgba(98, 240, 255, 0.95);
        }

        .preview-page-indicator {
            min-width: 64px;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: rgba(236, 245, 255, 0.9);
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid rgba(160, 208, 255, 0.24);
            background: rgba(5, 12, 32, 0.75);
        }

        .preview-meta-row {
            margin-top: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
        }

        .preview-dots {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .preview-dot {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            border: 0;
            padding: 0;
            cursor: pointer;
            background: rgba(218, 233, 255, 0.3);
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .preview-dot.active {
            transform: scale(1.2);
            background: #70f3ff;
        }

        .preview-dot:hover {
            background: rgba(132, 242, 255, 0.8);
        }

        .preview-caption {
            margin-top: 18px;
            color: rgba(233, 240, 255, 0.85);
        }

        .caption-label {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.5);
        }

        .preview-caption h4 {
            margin: 8px 0;
            font-weight: 700;
            font-size: 1.6rem;
            color: #f9fbff;
        }

        .preview-caption p {
            margin: 0;
            color: rgba(226, 233, 255, 0.7);
        }

        .module-grid-hint {
            margin: 10px 0 0;
            font-size: 0.9rem;
            color: rgba(222, 232, 255, 0.6);
        }

        .mobile-proof-section {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-proof-section {
                display: block;
            }
        }

        .module-lightbox {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(2, 6, 16, 0.94);
            padding: clamp(18px, 3.4vw, 44px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .module-lightbox.open {
            opacity: 1;
            pointer-events: auto;
        }

        body.module-lightbox-open {
            overflow: hidden;
        }

        .module-lightbox img {
            max-width: min(1500px, 94vw);
            max-height: 88vh;
            width: auto;
            height: auto;
            border-radius: 18px;
            border: 1px solid rgba(167, 214, 255, 0.35);
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
            background: rgba(6, 16, 38, 0.95);
            object-fit: contain;
        }

        .module-lightbox-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            border: 1px solid rgba(145, 207, 255, 0.4);
            background: rgba(7, 16, 40, 0.92);
            color: #eff6ff;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        .module-lightbox-close:hover {
            transform: translateY(-2px);
        }

        .module-control-rail {
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-height: none;
            overflow-y: visible;
            padding-right: 0;
            align-content: initial;
        }

        .module-group-heading {
            margin: 10px 0 2px;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 700;
            color: #0f3d8a;
        }

        .module-group-heading:first-child {
            margin-top: 0;
        }

        .module-control-rail::-webkit-scrollbar {
            width: 8px;
        }

        .module-control-rail::-webkit-scrollbar-track {
            background: rgba(12, 28, 68, 0.35);
            border-radius: 999px;
        }

        .module-control-rail::-webkit-scrollbar-thumb {
            background: rgba(123, 171, 255, 0.65);
            border-radius: 999px;
        }

        .module-control-rail .module-card {
            background: linear-gradient(180deg, #ffffff, #f5f9ff);
            border-radius: 13px;
            padding: 10px 11px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
            border: 1px solid rgba(62, 117, 226, 0.24);
            display: flex;
            gap: 9px;
            align-items: center;
            color: #0b3276;
            box-shadow: 8px 10px 22px rgba(14, 42, 90, 0.14);
            min-width: 0;
            min-height: 58px;
        }

        .module-control-rail .module-card:focus-visible {
            outline: 2px solid rgba(99, 236, 255, 0.9);
            outline-offset: 2px;
        }

        .module-control-rail .module-card.active {
            border-color: rgba(43, 104, 231, 0.7);
            background: linear-gradient(165deg, #ffffff, #ecf4ff);
            box-shadow:
                11px 14px 26px rgba(15, 47, 102, 0.2),
                0 0 0 1px rgba(76, 136, 255, 0.28);
        }

        @media (hover: hover) and (pointer: fine) {
            .module-control-rail .module-card:hover {
                transform: translateY(-1px) scale(1.02);
                box-shadow: 10px 13px 26px rgba(13, 42, 92, 0.2);
                background: linear-gradient(180deg, #ffffff, #eff5ff);
            }
        }

        .module-control-rail .module-icon {
            width: 31px;
            height: 31px;
            border-radius: 9px;
            background: rgba(55, 118, 242, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.86rem;
            color: #1d63e0;
            flex: 0 0 31px;
        }

        .module-control-rail .module-card.active .module-icon {
            background: linear-gradient(145deg, #2f7bff, #2563eb);
            color: #ffffff;
            box-shadow: 0 7px 15px rgba(57, 111, 230, 0.35);
        }

        .module-control-rail .module-info {
            min-width: 0;
        }

        .module-control-rail .module-info h4 {
            font-weight: 700;
            margin: 0;
            color: #0f3d8a;
            font-size: 0.86rem;
            line-height: 1.25;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .module-control-rail .module-info p {
            display: none;
            margin: 0;
        }

        @media (min-width: 1200px) {
            .module-lab-fluid-row {
                width: 100%;
                margin-left: 0;
            }

            #module-lab-desktop {
                float: right;
                width: calc(100% - 212px);
                margin-top: 60px;
            }

            #module-lab-desktop + .module-control-rail-wrap {
                float: left;
                width: 188px;
                margin-top: 60px !important;
            }

            #module-lab-desktop + .module-control-rail-wrap .module-control-rail {
                max-height: none;
                overflow-y: visible;
                padding-right: 0;
            }

            .trust-local-section {
                clear: both;
            }
        }

        @media (max-width: 1199px) {
            #module-lab-desktop,
            #module-lab-desktop + .module-control-rail-wrap {
                float: none;
                width: 100%;
            }

            .module-control-rail-wrap {
                margin-top: 14px !important;
            }

            .module-control-rail {
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                max-height: 126px;
                overflow-y: auto;
                padding-right: 3px;
            }

            .module-group-heading {
                grid-column: 1 / -1;
                margin-top: 10px;
            }
        }

        
        /* Motivation Sections */
        .motivation-section {
            padding: 50px 0 20px 0;
            position: relative;
        }
        
        .motivation-card {
            background: white;
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .motivation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
            z-index: -1;
        }
        
        .motivation-card h2 {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .motivation-card p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .benefit-list {
            list-style: none;
            padding-left: 0;
        }
        
        .benefit-list li {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .benefit-list li:last-child {
            border-bottom: none;
        }
        
        .benefit-list li i {
            width: 30px;
            height: 30px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 14px;
        }
        
        .motivation-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            height: 100%;
        }
        
        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            padding: 30px 0px;
            text-align: center;
            font-family: 'Space Grotesk', sans-serif;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 80px;
            text-align: center;
            color: #555;
            font-weight: 400;
        }

        .section-heading {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .section-heading .section-title {
            margin-bottom: 0;
        }

        @media (min-width: 768px) {
            .section-heading {
                flex-direction: row;
                align-items: center;
                gap: 1rem;
            }
        }

        .result-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 5px 14px;
            border-radius: 999px;
            background: rgba(108, 99, 255, 0.15);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        
        /* Features */
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
          /* Features */
        .feature-card:hover {
            background:linear-gradient(90deg, var(--dark), var(--primary-dark));
            color: white;
            /* border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1; */
        }
        
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }
        
        .feature-card:hover::before {
            height: 100%;
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 36px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            background: white;
            color: var(--primary);
            transform: scale(1.1) translateY(-10px);
        }
        
        .feature-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .feature-card p {
            transition: var(--transition);
        }
        
        .feature-card:hover h4,
        .feature-card:hover p {
            color: white;
        }
        
        /* Download Section */
        /* .download-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
            margin: 100px auto;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .download-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            z-index: -1;
        } */
             .download-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            margin: -50px auto 0px;
            position: relative;
            z-index: 10;
            max-width: 1000px;
        }
        
        .download-title {
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }
        
        /* .platform-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .platform-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: white;
        }
        
        .platform-name {
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            font-size: 1.4rem;
        } */
         .platform-card {
            background: #f8f9ff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #eef2ff;
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(108, 99, 255, 0.15);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .platform-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .platform-name {
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            /* content: """; */
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 120px;
            color: rgba(108, 99, 255, 0.05);
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1;
            z-index: 0;
        }
        
        .testimonial-text {
            margin: 20px 0 40px;
            font-style: italic;
            color: #555;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .author-role {
            color: #777;
            font-size: 0.95rem;
        }
        
        /* CTA Section */
        .cta-section {
            /* background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); */
            color: white;
            padding: 120px 0;
            text-align: center;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            margin: 100px 0;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }
        
        .cta-title {
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 25px;
            position: relative;
        }
        
        .cta-subtitle {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
            font-weight: 400;
        }
        
        .btn-cta {
            max-width: 400px;
            background: white;
            color: var(--primary);
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }
        
        .btn-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 10%;
            height: 100%;
            background: var(--gradient-accent);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            color: white;
        }
        
        .btn-cta:hover::before {
            opacity: 1;
        }
        
        /* Footer */
        footer {
            background: var(--darker);
            color: white;
            padding: 100px 0 50px;
            position: relative;
        }
        
        .footer-brand {
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 25px;
            display: block;
        }
        
        .footer-brand span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-links h5 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: var(--transition);
            position: relative;
            padding-left: 0;
        }
        
        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: var(--transition);
            color: var(--accent);
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 20px;
        }
        
        .footer-links a:hover::before {
            opacity: 1;
            left: 0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 50px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
            font-size: 0.95rem;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section {
                padding: 100px 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 767px) {
            .hero {
                padding-top: 90px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .download-section {
                padding: 40px;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-subtitle {
                font-size: 1.2rem;
            }
            
            .motivation-card {
                padding: 40px 30px;
            }
            
            .motivation-card h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 575px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .module-preview {
                height: 250px;
            }
        }



        /* pricinghero Section */
        .pricinghero {
            background: linear-gradient(120deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            padding: 240px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricinghero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        
        /* Sections */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            letter-spacing: -0.5px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 80px;
            text-align: center;
            color: #555;
            font-weight: 400;
        }
        
        /* Currency Switcher */
        .currency-switcher {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            background: white;
            padding: 10px;
            border-radius: 50px;
            max-width: 300px;
            margin: 30px auto;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .currency-btn {
            padding: 8px 25px;
            border: none;
            background: transparent;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .currency-btn.active {
            background: var(--primary);
            color: white;
        }

        
        /* Pricing Tabs */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            background: white;
            padding: 10px;
            border-radius: 50px;
            max-width: 500px;
            margin: 0 auto 40px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .pricing-tab {
            padding: 12px 30px;
            border: none;
            background: transparent;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pricing-tab.active {
            background: var(--primary);
            color: white;
        }
        
        .savings-badge {
            background: rgba(37, 211, 102, 0.15);
            color: var(--success);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-left: 8px;
        }
        
        /* Pricing Cards */
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
            border: 2px solid #f0f2ff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
            border-color: var(--primary);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.25);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: 600;
        }
        
        .pricing-header {
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }
        
        .pricing-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .pricing-subtitle {
            font-size: 16px;
            color: var(--text);
            margin-bottom: 15px;
        }
        
        .price-display {
            margin: 20px 0;
        }
        
        .price-amount {
            font-size: 38px;
            font-weight: 800;
            color: var(--dark);
        }
        
        .price-period {
            font-size: 16px;
            color: var(--text);
        }
        
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 18px;
            margin-right: 10px;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .pricing-features li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--primary);
        }
        
        .pricing-cta .btn {
            width: 100%;
            padding: 12px;
            font-weight: 600;
            border-radius: 10px;
        }
        
        /* Calculator Section */
        .calculator-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
            /* margin: 60px 0; */
        }
        
        .calculator-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            color: var(--dark);
        }
        
        .form-range {
            height: 8px;
        }
        
        .form-range::-webkit-slider-thumb {
            background: var(--primary);
        }
        
        .card-price {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
        }
        
        .savings-visualization {
            background: #f0f2ff;
            height: 10px;
            border-radius: 5px;
            margin: 25px 0 15px;
            overflow: hidden;
        }
        
        .savings-fill {
            background: var(--success);
            height: 100%;
            border-radius: 5px;
            transition: width 0.5s ease;
        }
        
        /* Trust Badges */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 60px 0;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
            max-width: 300px;
        }
        
        .trust-badge i {
            font-size: 32px;
            color: var(--primary);
            margin-right: 15px;
        }
        
        /* Features Section */
        .feature-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .toggle-btn {
            padding: 10px 25px;
            background: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .toggle-btn:first-child {
            border-radius: 30px 0 0 30px;
        }
        
        .toggle-btn:last-child {
            border-radius: 0 30px 30px 0;
        }
        
        .toggle-btn.active {
            background: var(--primary);
            color: white;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .feature-card i {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .comparison-table th {
            background: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f9faff;
        }
        
        .comparison-table .feature-name i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .check-icon {
            color: var(--success);
        }
        
        /* FAQ Section */
        .faq-section {
            margin: 80px 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 20px 20px;
            display: none;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        /* Money Back Section */
        .money-back {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
            border-radius: 20px;
            margin: 60px 0;
        }
        
        .money-back-icon {
            font-size: 60px;
            margin-bottom: 30px;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
            margin-top: 80px;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .pricinghero-title {
                font-size: 36px;
            }
            
            .pricinghero-subtitle {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .pricinghero-title {
                font-size: 32px;
            }
            
            .price-amount {
                font-size: 36px;
            }
            
            .trust-badges {
                flex-direction: column;
                align-items: center;
            }
            
        }
        
        /* Testimonials */
        .testimonial-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            border-radius: 20px;
            padding: 80px 0;
            color: white;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-text::before {
            /* content: """; */
            position: absolute;
            top: -30px;
            left: -20px;
            font-size: 100px;
            color: rgba(255, 255, 255, 0.1);
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1;
            z-index: -1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: white;
            font-size: 1.2rem;
        }
        
        .author-role {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 60px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
        }
        
        .stat-number {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 80px 0;
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
            margin: 80px 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            background: white;
            padding: 25px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: #f9faff;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            background: #f9faff;
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        
        .faq-answer.show {
            padding: 25px;
            max-height: 500px;
        }



        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* New Sections */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 10px 0;
        }
        
        .trust-badge {
            background: white;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .trust-badge i {
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .enterprise-features {
            background: white;
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
            margin: 80px 0;
        }
        
        .feature-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .toggle-btn {
            background: #f0f3ff;
            border: none;
            padding: 12px 25px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .toggle-btn:first-child {
            border-radius: 50px 0 0 50px;
        }
        
        .toggle-btn:last-child {
            border-radius: 0 50px 50px 0;
        }
        
        .toggle-btn.active {
            background: var(--primary);
            color: white;
        }
        
        .integration-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            margin: 80px 0;
        }
        
        .integration-logo {
            height: 50px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
        }
        
        .integration-logo:hover {
            filter: none;
            opacity: 1;
            transform: scale(1.1);
        }
        
        .money-back {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(74, 68, 201, 0.1) 100%);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin: 0px 0;
        }
        
        .money-back-icon {
            width: 100px;
            height: 100px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .pricinghero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 991px) {
            .pricinghero-title {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .enterprise-features {
                padding: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .pricinghero {
                padding: 120px 0 70px;
            }
            
            .pricinghero-title {
                font-size: 2.2rem;
            }
            
            .pricinghero-subtitle {
                font-size: 1.1rem;
            }
            
            .pricing-tabs {
                flex-direction: column;
                gap: 5px;
            }
            
            .pricing-tab {
                width: 100%;
            }
            
            .calculator-section {
                padding: 30px;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-subtitle {
                font-size: 1.2rem;
            }
            
            .trust-badges {
                gap: 20px;
            }
            
            .integration-logos {
                gap: 30px;
            }
            
            .money-back {
                padding: 40px;
            }
        }
        
        @media (max-width: 575px) {
            .pricinghero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .price-amount {
                font-size: 2.8rem;
            }
            
            .integration-logos img {
                height: 35px;
            }
        }


/* SOLUTIONS */

        /* solutionhero Section */
        .solutions-solutionhero {
            min-height: 80vh;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .solutionhero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .solutionhero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
            animation: float 4s ease-in-out infinite;
        }
        
        .solutionhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .solutionhero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        /* Industry Solutions */
        .industry-section {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .industry-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .industry-header {
            padding: 30px;
            color: white;
            position: relative;
        }
        
        .industry-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .industry-title {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .industry-content {
            padding: 30px;
        }
        
        .benefit-list {
            list-style: none;
            padding-left: 0;
        }
        
        .benefit-list li {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .benefit-list li:last-child {
            border-bottom: none;
        }
        
        .benefit-list li i {
            width: 30px;
            height: 30px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 14px;
        }
        
        /* ROI Section */
        .roi-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .roi-container {
            background: white;
            border-radius: 25px;
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.15);
            padding: 50px;
            margin-top: -100px;
        }
        
        .roi-card {
            text-align: center;
            padding: 30px;
        }
        
        .roi-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1;
        }
        
        .roi-label {
            font-size: 1.2rem;
            color: #555;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .comparison-table th {
            background: var(--primary);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f9f9ff;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .check-icon {
            color: #4CAF50;
            font-size: 1.5rem;
        }
        
        .x-icon {
            color: #f44336;
            font-size: 1.5rem;
        }
        
        /* Workflow Section */
        /* .capabilities-section {
            position: relative;
            border-radius: 40px;
            background: radial-gradient(circle at 10% 20%, rgba(76, 151, 255, 0.25), transparent 55%),
                        radial-gradient(circle at 80% 0%, rgba(140, 92, 255, 0.2), transparent 60%),
                        linear-gradient(145deg, #030816, #050f27 60%, #051430 100%);
            box-shadow: 0 60px 120px rgba(5, 9, 28, 0.7);
            overflow: hidden;
        }

        .capabilities-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 180px 180px;
            opacity: 0.4;
            pointer-events: none;
        }

        .capabilities-section .section-title,
        .capabilities-section p,
        .capabilities-section .text-center {
            color: #f0f5ff;
            position: relative;
            z-index: 1;
        }

        .capabilities-section .section-title {
            background: none;
            -webkit-text-fill-color: #f5f7ff;
        }

        .capabilities-section .section-title::after {
            background: rgba(255, 255, 255, 0.4);
        } */

        .workflow-section {
            padding: 100px 0;
        }
        
        .workflow-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .workflow-card {
            width: 300px;
            background: rgba(7, 14, 36, 0.8);
            border-radius: 24px;
            padding: 36px 28px;
            box-shadow: 0 25px 60px rgba(2, 5, 16, 0.7);
            text-align: center;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            border: 1px solid rgba(92, 123, 255, 0.25);
            overflow: hidden;
        }
        
        .workflow-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 0% 0%, rgba(80, 229, 255, 0.35), transparent 45%),
                        linear-gradient(135deg, rgba(60, 163, 255, 0.6), rgba(120, 98, 255, 0.6));
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }
        
        .workflow-card:hover::before {
            opacity: 1;
        }

        .workflow-number {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.08);
            color: #7bd5ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 24px;
            font-weight: 700;
            transition: var(--transition);
        }

        .workflow-card:hover .workflow-number {
            background: rgba(255, 255, 255, 0.9);
            color: #0b1b3c;
            transform: scale(1.2);
        }

        .workflow-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            transition: var(--transition);
            color: #f0f5ff;
        }

        .workflow-card p {
            transition: var(--transition);
            color: rgba(239, 245, 255, 0.75);
        }

        .workflow-card:hover h4,
        .workflow-card:hover p {
            color: white;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .testimonial-text {
            margin: 20px 0 40px;
            font-style: italic;
            color: #555;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .author-role {
            color: #777;
            font-size: 0.95rem;
        }


         /* CTA Section */
        .cta-section {
            padding: 100px 0;
        }

        .cta-panel {
            background: linear-gradient(135deg, #0b1124, #1b254d);
            border-radius: 32px;
            padding: 60px;
            color: #fff;
            box-shadow: 0 40px 70px rgba(10, 10, 40, 0.35);
        }

        .cta-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 6px 16px;
            background: rgba(255,255,255,0.15);
            border-radius: 999px;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .cta-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 25px;
        }

        .cta-benefits {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .cta-benefits li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 12px;
        }

        .cta-benefits i {
            color: #22c55e;
        }
/*         
        .btn-cta {
            background: white;
            color: var(--primary);
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }
        
        .btn-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            color: white;
        }
        
        .btn-cta:hover::before {
            opacity: 1;
        } */

         /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .solutionhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .solutionhero-title {
                font-size: 2.5rem;
            }
            
            .roi-container {
                padding: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .solutions-solutionhero {
                padding-top: 100px;
            }
            
            .solutionhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .roi-value {
                font-size: 2.5rem;
            }
            
            .workflow-card {
                width: 100%;
            }
        }





        /* Features Hero */
        .features-hero {
            min-height: 80vh;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .hero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
            animation: float 4s ease-in-out infinite;
        }
        
        .hero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        /* Feature Navigation */
        .feature-nav {
            background: white;
            padding: 20px 0;
            position: sticky;
            top: 80px;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .feature-nav .nav-link {
            font-weight: 600;
            color: var(--dark);
            padding: 10px 15px;
            border-radius: 50px;
            transition: var(--transition);
        }
        
        img.retool-logo {
  filter: brightness(0) invert(1);
}

        .feature-nav .nav-link.active, 
        .feature-nav .nav-link:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Feature Sections */
        .feature-section {
            padding: 120px 0;
            position: relative;
        }
        
        .feature-section:nth-child(even) {
            background: white;
        }
        
        .section-header {
            margin-bottom: 80px;
            text-align: center;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
            font-weight: 400;
        }
        
        /* Feature Demo */
        .feature-demo {
            background: white;
            border-radius: 25px;
            box-shadow: 0 40px 60px rgba(108, 99, 255, 0.15);
            overflow: hidden;
            height: 600px;
            position: relative;
            margin-bottom: 80px;
        }
        
        .demo-nav {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
            padding: 20px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .demo-nav-btn {
            background: white;
            border: 1px solid #e0e0ff;
            border-radius: 10px;
            padding: 12px 20px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .demo-nav-btn.active, 
        .demo-nav-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .demo-content {
            padding: 30px;
            height: calc(100% - 70px);
            overflow-y: auto;
        }
        
        .demo-view {
            display: none;
        }
        
        .demo-view.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        /* Chat Demo */
        .chat-container {
            display: flex;
            height: 100%;
        }
        
        .chat-sidebar {
            width: 300px;
            border-right: 1px solid #f0f0ff;
            padding-right: 20px;
        }
        
        .chat-channels {
            list-style: none;
            padding: 0;
        }
        
        .chat-channel {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .chat-channel.active, 
        .chat-channel:hover {
            background: rgba(108, 99, 255, 0.1);
        }
        
        .chat-main {
            flex: 1;
            padding-left: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .chat-header {
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0ff;
            margin-bottom: 20px;
        }
        
        .chat-messages {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 20px;
        }
        
        .message {
            margin-bottom: 20px;
            max-width: 80%;
        }
        
        .message-incoming {
            align-self: flex-start;
        }
        
        .message-outgoing {
            align-self: flex-end;
            margin-left: auto;
        }
        
        .message-bubble {
            background: #f0f0ff;
            padding: 15px;
            border-radius: 20px;
            border-bottom-left-radius: 0;
        }
        
        .message-outgoing .message-bubble {
            background: var(--primary);
            color: white;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 0;
        }
        
        .message-info {
            font-size: 0.8rem;
            color: #777;
            margin-top: 5px;
        }
        
        .message-outgoing .message-info {
            text-align: right;
        }
        
        .chat-input {
            display: flex;
            gap: 10px;
            align-items: center;
            background: #f8f9ff;
            padding: 15px;
            border-radius: 20px;
        }
        
        /* Task Board Demo */
        .board-container {
            display: flex;
            gap: 20px;
            height: 100%;
            overflow-x: auto;
        }
        
        .board-column {
            min-width: 300px;
            background: #f8f9ff;
            border-radius: 15px;
            padding: 20px;
        }
        
        .board-column-header {
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
        }
        
        .board-tasks {
            min-height: 400px;
        }
        
        .board-task {
            background: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            cursor: grab;
        }
        
        .task-title {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .task-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #777;
        }
        
        .task-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
        }
        
        /* Meeting Demo */
        .meeting-container {
            display: flex;
            height: 100%;
            gap: 20px;
        }
        
        .meeting-participants {
            width: 250px;
        }
        
        .participant {
            background: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .participant-main {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .meeting-main {
            background: #f8f9ff;
            border-radius: 20px;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-bottom: 20px;
        }
        
        .meeting-feed {
            width: 80%;
            height: 80%;
            background: var(--dark);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .meeting-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .control-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        
        .control-btn.end-call {
            background: var(--accent);
            color: white;
        }
        
        .control-btn:hover {
            transform: translateY(-5px);
        }
        
        /* Feature Cards */
        .feature-card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }
        
        .feature-card:hover::before {
            height: 100%;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 36px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            background: white;
            color: var(--primary);
            transform: scale(1.1) translateY(-10px);
        }
        
        .feature-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .feature-card p {
            transition: var(--transition);
        }
        
        .feature-card:hover h4,
        .feature-card:hover p {
            color: white;
        }
        
        /* Integrations */
        .integrations-section {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
            padding: 100px 0;
            border-radius: 30px;
        }
        
        .integration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .integration-item {
            background: white;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .integration-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .integration-item img {
            max-width: 100%;
            height: 40px;
            object-fit: contain;
        }
        


        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .feature-demo {
                height: 500px;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .feature-demo {
                height: 400px;
            }
            
            .chat-container, 
            .meeting-container {
                flex-direction: column;
            }
            
            .chat-sidebar, 
            .meeting-participants {
                width: 100%;
                height: 200px;
                overflow-y: auto;
            }
        }
        
        @media (max-width: 767px) {
            .features-hero {
                padding-top: 100px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .feature-demo {
                height: 500px;
            }
        }


        /* Resources */

        /* resourceshero Section */
        .resourceshero {
            background: linear-gradient(120deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            padding: 200px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .resourceshero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .resourceshero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
        }
        
        .resourceshero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
            font-weight: 400;
        }
        
        .search-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-container input {
            width: 100%;
            padding: 20px 30px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding-right: 180px;
        }
        
        .search-container button {
            position: absolute;
            right: 10px;
            top: 10px;
            padding: 10px 30px;
            border-radius: 50px;
            background: var(--accent);
            color: white;
            border: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .search-container button:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }
        
        /* Resource Categories */
        .categories {
            padding: 100px 0;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .category-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 40px 30px;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
        }
        
        .category-icon {
            width: 100px;
            height: 100px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .category-card:hover .category-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .category-title {
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        
        .category-count {
            background: var(--accent);
            color: white;
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        /* Resource Cards */
        .resources-section {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
            padding: 100px 0;
            position: relative;
        }
        
        .resources-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
            z-index: 0;
        }
        
        .resource-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        .resource-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
        }
        
        .resource-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .resource-content {
            padding: 30px;
        }
        
        .resource-tag {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .resource-title {
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .resource-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .resource-meta i {
            margin-right: 5px;
        }
        
        .resource-meta span {
            margin-right: 20px;
        }
        
        .resource-excerpt {
            margin-bottom: 20px;
            color: #555;
        }
        
        .resource-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .resource-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .resource-link:hover i {
            transform: translateX(5px);
        }
        
        /* Tutorials Spotlight */
        .tutorials-spotlight .spotlight-card {
            display: grid;
            grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
            background: #0b1124;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 35px 80px rgba(15, 23, 42, 0.35);
            min-height: 360px;
            margin-bottom: 60px;
        }

        @media (max-width: 991px) {
            .tutorials-spotlight .spotlight-card {
                grid-template-columns: 1fr;
            }
        }

        .spotlight-media {
            min-height: 320px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .spotlight-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11,17,36,0.1), rgba(11,17,36,0.6));
        }

        .spotlight-content {
            padding: 45px;
            background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(45,55,72,0.9));
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.25rem;
        }

        .spotlight-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .spotlight-badge {
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 999px;
            background: rgba(255,255,255,0.16);
        }

        .spotlight-chip {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            font-weight: 600;
            font-size: 0.85rem;
        }

        .spotlight-title {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 0;
        }

        .spotlight-summary {
            color: rgba(255,255,255,0.8);
            margin-bottom: 0.5rem;
        }

        .spotlight-meta {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            padding: 20px;
            border-radius: 20px;
            background: rgba(255,255,255,0.08);
        }

        .spotlight-meta span {
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.6);
        }

        .spotlight-meta strong {
            font-size: 1.2rem;
            display: block;
            margin-top: 4px;
        }

        .spotlight-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .spotlight-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .spotlight-author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .placeholder-pill {
            display: inline-block;
            width: 120px;
            height: 22px;
            border-radius: 999px;
            background: rgba(255,255,255,0.2);
        }

        .placeholder-meta .placeholder-text {
            height: 16px;
            border-radius: 999px;
        }

        /* Learning Paths */
        .learning-paths {
            padding: 100px 0;
        }
        
        .path-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
        }
        
        .path-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
        }
        
        .path-header {
            padding: 30px;
            background: linear-gradient(120deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
        }

.path-header.gradient-purple {
    background: linear-gradient(135deg, #6c63ff, #b86bff);
}

.path-header.gradient-blue {
    background: linear-gradient(135deg, #007aff, #00c6ff);
}

.path-header.gradient-orange {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.path-hero-section {
    padding: 120px 0 40px;
}

.path-hero-card {
    background: linear-gradient(135deg, #0b1124, #1b254d);
    border-radius: 32px;
    padding: 50px;
    color: #fff;
    box-shadow: 0 35px 90px rgba(10, 10, 40, 0.35);
}

.path-hero-card h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.path-hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 20px;
}

.path-hero-metric {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 20px;
}

.path-hero-metric span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.path-hero-metric strong {
    font-size: 1.5rem;
    display: block;
}

.path-modules-section .timeline {
    position: relative;
    padding-left: 20px;
}

.path-modules-section .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), rgba(108,99,255,0));
    border-radius: 999px;
}

.timeline-card {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(108,99,255,0.3);
}

.timeline-card .module-card {
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(15,23,42,0.1);
    border: 1px solid rgba(15,23,42,0.05);
}

.path-sidebar {
    position: sticky;
    top: 120px;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(15,23,42,0.08);
}

.path-sidebar .sidebar-block {
    margin-bottom: 15px;
}
        
        .path-title {
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        
        .path-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .path-stat {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .path-stat i {
            margin-right: 8px;
        }
        
        .path-content {
            padding: 30px;
            flex-grow: 1;
        }
        
        .path-modules {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .path-modules li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .path-modules li:last-child {
            border-bottom: none;
        }
        
.path-modules li i {
    color: var(--primary);
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.path-hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.path-hero-breadcrumb {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modules-header #modules-summary {
    color: #6b6f85;
}

.path-modules-section .timeline {
    position: relative;
    padding-left: 25px;
}

.path-modules-section .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), rgba(108,99,255,0));
    border-radius: 999px;
}

.timeline-card {
    position: relative;
    margin-bottom: 30px;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(108,99,255,0.3);
}

.timeline-card .module-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(15,23,42,0.05);
    box-shadow: 0 30px 70px rgba(15,23,42,0.1);
    padding: 28px;
}

.module-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: #6b6f85;
    font-size: 0.9rem;
}

.module-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.module-actions .btn {
    border-radius: 999px;
}

.path-sidebar .sidebar-block + .sidebar-block {
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
    padding-top: 20px;
}
        
        .path-progress {
            height: 8px;
            background: #f0f0f0;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .path-progress-bar {
            height: 100%;
            background: var(--primary);
            border-radius: 4px;
            width: 65%;
        }
        
        .path-action {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Community Section */
        .community-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            color: white;
            padding: 100px 0;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .community-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .community-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .community-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .community-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .community-card:hover .community-icon {
            background: var(--accent);
            transform: scale(1.1);
        }
        
        .community-title {
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        
        .community-description {
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .community-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .community-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .community-link:hover i {
            transform: translateX(5px);
        }
        
        /* Newsletter */
        .newsletter {
            padding: 100px 0;
            background: white;
            border-radius: 20px;
            margin: 100px 0;
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
        }
        
        .newsletter-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .newsletter-title {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .newsletter-subtitle {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            color: #555;
        }
        
        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border-radius: 50px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            padding: 15px 40px;
            border-radius: 50px;
            background: var(--primary);
            color: white;
            border: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .newsletter-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }
        

         /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .resourceshero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 991px) {
            .resourceshero-title {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 767px) {
            .resourceshero {
                padding: 120px 0 70px;
            }
            
            .resourceshero-title {
                font-size: 2.2rem;
            }
            
            .resourceshero-subtitle {
                font-size: 1.1rem;
            }
            
            .search-container input {
                padding-right: 30px;
            }
            
            .search-container button {
                position: relative;
                width: 100%;
                margin-top: 15px;
                top: 0;
                right: 0;
            }
        }
        
        @media (max-width: 575px) {
            .resourceshero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }



        /* Roadmap */
         
        /* Roadmap rmhero */
        .roadmap-rmhero {
            min-height: 70vh;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .rmhero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .rmhero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
        }
        
        .rmhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .rmhero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        /* Recently Released */
        .released-section {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .released-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .released-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: var(--transition);
            border: 1px solid #f0f0ff;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .released-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(108, 99, 255, 0.15);
        }
        
        .released-icon {
            width: 80px;
            height: 80px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 25px;
        }
        
        .released-title {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .released-desc {
            color: #555;
            margin-bottom: 20px;
        }
        
        .status-badge {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .status-launched {
            background: rgba(76, 175, 80, 0.15);
            color: #2e7d32;
        }
        
        .status-in-progress {
            background: rgba(33, 150, 243, 0.15);
            color: #1565c0;
        }
        
        .status-planned {
            background: rgba(121, 85, 72, 0.15);
            /* color: #4e342e; */
        }
        
        /* Roadmap Timeline */
        .roadmap-container {
            padding: 100px 0;
            position: relative;
        }
        
        .roadmap-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--primary);
            z-index: 0;
        }
        
        .roadmap-phase {
            position: relative;
            margin-bottom: 100px;
            padding: 40px;
            border-radius: 25px;
            background: white;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
            z-index: 1;
        }
        
        .roadmap-phase:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .phase-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .phase-title {
            font-weight: 800;
            font-size: 2.2rem;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .phase-timeline {
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .phase-summary {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
            padding: 20px;
            background: #f8f9ff;
            border-radius: 15px;
            border-left: 4px solid var(--primary);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #f0f0ff;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .feature-user-story {
            font-style: italic;
            color: #777;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .benefits-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        .benefits-list li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
        }
        
        .benefits-list li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            margin-right: 10px;
        }
        
        .vote-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        
        .vote-btn {
            background: transparent;
            border: 1px solid #ddd;
            border-radius: 50px;
            padding: 6px 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .vote-btn:hover {
            background: rgba(108, 99, 255, 0.05);
            border-color: var(--primary);
        }
        
        .vote-count {
            font-weight: 600;
        }
        
        /* Community Section */
        /* .community-section {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
            padding: 100px 0;
            text-align: center;
        } */
        
        /* .community-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .community-title {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .community-desc {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 40px;
        } */
        
        .idea-form {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .idea-input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 50px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        
        .idea-submit {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .idea-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
          
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .rmhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .rmhero-title {
                font-size: 2.5rem;
            }
            
            .roadmap-container::before {
                left: 30px;
            }
            
            .roadmap-phase {
                margin-left: 60px;
            }

            .idea-form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 767px) {
            .roadmap-rmhero {
                padding-top: 100px;
            }
            
            .rmhero-title {
                font-size: 2.2rem;
            }
            
            .phase-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .phase-timeline {
                margin-top: 15px;
            }

            .community-card {
                padding: 30px 20px;
            }
        }




        /* carhero Section - CENTERED */
        .careers-carhero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            padding: 20px;
        }
        
        .carhero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .carhero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
        }
        
        .carhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .carhero-subtitle {
            font-size: 1.35rem;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .carhero-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        /* Why Join Section */
        .why-join {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .benefit-title {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        /* Team Culture */
        .team-culture {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .culture-container {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .culture-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            height: 500px;
            background-size: cover;
            background-position: center;
            flex: 1;
        }
        
        .culture-text {
            flex: 1;
            padding: 20px;
        }
        
        .culture-title {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
        }
        
        .culture-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--accent);
            border-radius: 5px;
        }
        
        .culture-point {
            margin-top: 30px;
            display: flex;
            gap: 15px;
        }
        
        .culture-point i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-top: 5px;
        }
        
        /* Job Openings */
        .job-openings {
            padding: 100px 0;
            background: white;
        }
        
        .job-filters {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }
        
        .filter-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .job-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .job-title {
            font-weight: 800;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .job-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            color: #777;
            font-size: 1.1rem;
            flex-wrap: wrap;
        }
        
        .job-meta i {
            margin-right: 8px;
            color: var(--primary);
        }
        
        .job-description {
            margin-bottom: 25px;
            color: #555;
        }
        
        /* Application Process */
        .application-process {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f3ff 0%, #e8ebff 100%);
        }
        
        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-card {
            width: 250px;
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .process-card:hover::before {
            height: 100%;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 24px;
            font-weight: 700;
            transition: var(--transition);
        }
        
        .process-card:hover .process-number {
            background: white;
            color: var(--primary);
            transform: scale(1.2);
        }
        
        .process-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .process-card p {
            transition: var(--transition);
        }
        
        .process-card:hover h4,
        .process-card:hover p {
            color: white;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: white;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .testimonial-text {
            margin: 20px 0 40px;
            font-style: italic;
            color: #555;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .author-role {
            color: #777;
            font-size: 0.95rem;
        }
        

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .carhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .carhero-title {
                font-size: 2.5rem;
            }
            
            .culture-container {
                flex-direction: column;
            }
            
            .culture-image {
                width: 100%;
                height: 400px;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 767px) {
            .careers-carhero {
                min-height: 70vh;
            }
            
            .carhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .job-meta {
                flex-direction: column;
                gap: 8px;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .carhero-buttons {
                flex-direction: column;
                align-items: center;
            }
        } 



        /* abthero Section */
        .about-abthero {
            min-height: 80vh;
            padding-top: 150px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .abthero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .abthero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
        }
        
        .abthero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .abthero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
        }
        
        /* Mission Section */
        .mission-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .mission-content {
            background: white;
            border-radius: 25px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 30px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--accent);
            border-radius: 5px;
        }
        
        .mission-statement {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
            position: relative;
            padding-left: 30px;
            border-left: 4px solid var(--primary);
        }
        
        /* Timeline */
        .timeline-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 100%;
        }
        
        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 30px);
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 30px);
        }
        
        .timeline-dot {
            position: absolute;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .timeline-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        
        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .timeline-year {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .team-image {
            height: 280px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .team-content {
            padding: 30px 20px;
        }
        
        .team-name {
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .team-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f3ff 0%, #e8ebff 100%);
        }
        
        .values-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .value-title {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .stat-card {
            text-align: center;
            padding: 40px 20px;
        }
        
        .stat-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1.2rem;
            color: #555;
        }


        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .abthero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .abthero-title {
                font-size: 2.5rem;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: 50px;
                padding-right: 0;
                text-align: left;
            }
            
            .timeline-dot {
                left: 11px;
            }
        }
        
        @media (max-width: 767px) {
            .about-abthero {
                padding-top: 120px;
            }
            
            .abthero-title {
                font-size: 2.2rem;
            }
            
            .mission-content {
                padding: 40px 20px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        } 


        /* Article detail */
        .article-hero {
            padding: 140px 0 80px;
            background: radial-gradient(circle at top, rgba(108,99,255,0.08), transparent 60%), #f7f8ff;
        }

        .article-hero-card {
            background: linear-gradient(135deg, #0b1124, #1b254d);
            border-radius: 32px;
            padding: 45px;
            color: #fff;
            box-shadow: 0 45px 90px rgba(10,10,40,0.35);
        }

        .article-hero-intro {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .article-badge {
            background: rgba(255,255,255,0.2);
            color: #fff;
            padding: 8px 20px;
            border-radius: 999px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .article-title {
            font-weight: 900;
            font-size: 3.4rem;
            margin: 20px 0;
            line-height: 1.15;
            color: #fff;
        }

        .article-subtitle {
            color: rgba(255,255,255,0.85);
            font-size: 1.2rem;
            margin-bottom: 0;
        }

        .article-hero-chips {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-chip {
            background: rgba(255,255,255,0.12);
            border-radius: 16px;
            padding: 12px 18px;
            min-width: 160px;
        }

        .hero-chip span {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.65);
        }

        .hero-chip strong {
            display: block;
            font-size: 1.1rem;
            margin-top: 4px;
        }

        .article-hero-footer {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .article-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            overflow: hidden;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .author-info {
            line-height: 1.4;
            margin-right: 0;
        }

        .author-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
        }

        .author-role {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }

        .hero-share .btn {
            border-radius: 999px;
            padding: 10px 18px;
            font-weight: 600;
            border-color: rgba(255,255,255,0.4);
            color: #fff;
        }

        .article-layout {
            margin-bottom: 100px;
        }

        .article-body {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 30px 80px rgba(15,23,42,0.08);
        }

        .article-hero-media {
            height: 420px;
            border-radius: 20px;
            background-size: cover;
            background-position: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .article-hero-media.has-video {
            height: auto;
            background: none;
            padding: 0;
        }

        .article-hero-media .hero-video {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(15,23,42,0.25);
        }

        .article-hero-media iframe {
            width: 100%;
            height: 100%;
        }

        .article-prose {
            margin-top: 30px;
        }

        .article-prose h2 {
            font-weight: 800;
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--dark);
            position: relative;
        }

        .article-prose h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .article-prose h3 {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: var(--primary);
        }

        .article-prose p,
        .article-prose li {
            font-size: 1.08rem;
            color: #3b3d4a;
            margin-bottom: 20px;
        }
        
        .highlight-box {
            background: rgba(108, 99, 255, 0.05);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #666;
            font-size: 1.1rem;
        }
        
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #777;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        
        /* Sidebar */
        .article-sidebar {
            position: sticky;
            top: 120px;
            padding-left: 20px;
        }

        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 25px 60px rgba(15,23,42,0.08);
        }
        
        .sidebar-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .toc-list {
            list-style: none;
            padding-left: 0;
        }
        
        .toc-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .toc-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .toc-list a {
            color: #555;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .toc-list a:hover {
            color: var(--primary);
        }
        
        .toc-list a i {
            margin-right: 10px;
            color: var(--primary);
            font-size: 0.8rem;
        }
        
        .popular-stack {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .popular-card {
            border: 1px solid #eef0ff;
            border-radius: 18px;
            overflow: hidden;
            background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
            box-shadow: 0 15px 40px rgba(15,23,42,0.06);
        }

        .popular-card-link {
            display: flex;
            text-decoration: none;
            color: inherit;
        }

        .popular-card-media {
            width: 90px;
            min-height: 90px;
            background-size: cover;
            background-position: center;
        }

        .popular-card-body {
            padding: 15px;
            flex: 1;
        }

        .popular-card-body h4 {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .popular-card-category {
            display: inline-block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .popular-card-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.85rem;
            color: #6b6f85;
        }
        
        .author-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Related Articles */
        .related-articles {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        /* .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
         */
        /* .blog-image {
            height: 220px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .blog-content {
            padding: 30px;
        }
        
        .blog-category {
            display: inline-block;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .blog-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 10px;
            line-height: 1.3;
            color: var(--dark);
        }

        .blog-title a,
        .blog-card .blog-title a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        .blog-card .blog-title a:hover {
            color: var(--primary);
        }
        
        .blog-excerpt {
            color: #666;
            margin-bottom: 20px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
        }
        

        .comments-section {
            max-width: 800px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }
        
        .comment-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        .comment-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .comment-author {
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .comment-date {
            color: #777;
            font-size: 0.9rem;
        }
        
        .comment-reply {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 15px;
        }
        
        .comment-form {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .form-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
        }
        
        textarea.form-control {
            min-height: 150px;
        }
        
        .btn-submit {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 15px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        


      
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
     
        @media (max-width: 1199px) {
            .article-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .article-title {
                font-size: 2.5rem;
            }
            
            .article-hero-card {
                padding: 35px;
            }
            
            .article-sidebar {
                margin-left: 0;
                margin-top: 40px;
                padding-left: 0;
            }
            
            .article-hero-media {
                height: 360px;
            }
        }
        
        @media (max-width: 767px) {
            .article-hero {
                padding-top: 120px;
            }

            .article-title {
                font-size: 2.2rem;
            }
            
            .article-hero-intro {
                flex-direction: column;
            }
            
            .article-hero-media {
                height: 280px;
            }
        }
 */


        /* comphero Section - CENTERED */
        .compliance-comphero {
            min-height: 60vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center; /* Centered horizontally */
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            padding: 100px 20px;
        }
        
        .comphero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
            text-align: center; /* Centered text */
        }
        
        .comphero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .comphero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            color: #555;
            font-weight: 400;
            margin: 0 auto 40px; /* Centered with auto margins */
        }
        
        /* Badges - Centered */
        .comphero-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        /* Compliance Content */
        .compliance-content {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .compliance-section {
            margin-bottom: 70px;
        }
        
        .compliance-section h3 {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-left: 30px;
        }
        
        .compliance-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .compliance-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .compliance-section ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .compliance-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .compliance-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .compliance-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .compliance-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
        }
        
        .compliance-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .compliance-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Standards Section */
        .standards-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .standard-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            margin-bottom: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .standard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .standard-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .standard-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-right: 20px;
        }
        
        .standard-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0;
        }
        
        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .compliance-badge {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Security Measures */
        .security-section {
            padding: 100px 0;
            background: white;
        }
        
        .security-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        
        .security-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.15);
        }
        
        .security-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        /* Certifications */
        .certifications-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f3ff 0%, #e8ebff 100%);
        }
        
        .cert-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .cert-card {
            width: 230px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .cert-card:hover::before {
            height: 100%;
        }
        
        .cert-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .cert-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .cert-card p {
            transition: var(--transition);
        }
        
        .cert-card:hover h4,
        .cert-card:hover p {
            color: white;
        }
        
        /* Contact Card */
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            max-width: 600px;
            margin: 70px auto 0;
            border-top: 5px solid var(--primary);
        }
        
        .contact-card h3 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--dark);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            color: var(--primary);
            font-size: 1.3rem;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .comphero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .comphero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .compliance-section h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 767px) {
            .compliance-comphero {
                padding-top: 120px;
            }
            
            .comphero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .standard-header {
                flex-direction: column;
                text-align: center;
            }
            
            .standard-icon {
                margin: 0 auto 15px;
            }
        } 




        /* prhero Section - CENTERED */
        .compliance-prhero {
            min-height: 60vh;
            padding-top: 150px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center; /* Centered horizontally */
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .prhero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
            text-align: center; /* Centered text */
        }
        
        .prhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .prhero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            color: #555;
            font-weight: 400;
            margin: 0 auto 40px; /* Centered with auto margins */
        }
        
        /* Badges - Centered */
        .prhero-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        /* Compliance Content */
        .compliance-content {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .compliance-section {
            margin-bottom: 70px;
        }
        
        .compliance-section h3 {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-left: 30px;
        }
        
        .compliance-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .compliance-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .compliance-section ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .compliance-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .compliance-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .compliance-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .compliance-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
        }
        
        .compliance-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .compliance-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Standards Section */
        .standards-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .standard-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            margin-bottom: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .standard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .standard-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .standard-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-right: 20px;
        }
        
        .standard-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0;
        }
        
        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .compliance-badge {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Security Measures */
        .security-section {
            padding: 100px 0;
            background: white;
        }
        
        .security-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        
        .security-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.15);
        }
        
        .security-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        /* Certifications */
        .certifications-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f3ff 0%, #e8ebff 100%);
        }
        
        .cert-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .cert-card {
            width: 230px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .cert-card:hover::before {
            height: 100%;
        }
        
        .cert-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .cert-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .cert-card p {
            transition: var(--transition);
        }
        
        .cert-card:hover h4,
        .cert-card:hover p {
            color: white;
        }
        
        /* Contact Card */
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            max-width: 600px;
            margin: 70px auto 0;
            border-top: 5px solid var(--primary);
        }
        
        .contact-card h3 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--dark);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            color: var(--primary);
            font-size: 1.3rem;
        }
        


        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .prhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .prhero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .compliance-section h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 767px) {
            .compliance-prhero {
                padding-top: 120px;
            }
            
            .prhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .standard-header {
                flex-direction: column;
                text-align: center;
            }
            
            .standard-icon {
                margin: 0 auto 15px;
            }
        } 


        /* termhero Section - FIXED CENTERING */
        .terms-termhero {
            min-height: 60vh;
            padding-top: 150px;
            display: flex;
            align-items: center;
            justify-content: center; /* Added for vertical centering */
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            text-align: center; /* Center text content */
        }
        
        .termhero-content {
            max-width: 800px; /* Added max-width for better control */
            margin: 0 auto; /* Center the content block */
        }
        
        .termhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .termhero-subtitle {
            font-size: 1.35rem;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
        }
        
        /* Terms Content */
        .terms-content {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            text-align: center; /* Center section titles */
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .terms-section {
            margin-bottom: 70px;
        }
        
        .terms-section h3 {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-left: 30px;
        }
        
        .terms-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .terms-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .terms-section ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .terms-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .terms-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .highlight-box {
            background: rgba(108, 99, 255, 0.05);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        
        .terms-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            margin-bottom: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .terms-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .terms-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        
        .terms-card h4 i {
            margin-right: 12px;
            color: var(--primary);
        }
        
        /* Feature Terms */
        .feature-terms {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.15);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        /* Agreement Section */
        .agreement-section {
            padding: 100px 0;
            background: white;
        }
        
        .agreement-box {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            border-top: 5px solid var(--primary);
        }



        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .termhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .termhero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .terms-section h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 767px) {
            .terms-termhero {
                padding-top: 120px;
                min-height: 50vh;
            }
            
            .termhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .termhero-subtitle {
                font-size: 1.1rem;
            }
        } 



         
        /* Blog bloghero Section */
        .blog-bloghero {
            min-height: 60vh;
            padding-top: 150px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            margin-bottom: 80px;
        }
        
        .bloghero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .bloghero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
            animation: float 4s ease-in-out infinite;
        }
        
        .bloghero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bloghero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        /* Blog Content */
        .blog-container {
            padding: 0 0 100px;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        
        @media (min-width: 992px) {
            .blog-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        
        .blog-spotlight-card {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            background: linear-gradient(135deg, #0b1124, #1b254d);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 35px 80px rgba(15, 23, 42, 0.35);
            margin-bottom: 60px;
        }

        .blog-spotlight-media {
            min-height: 320px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .blog-spotlight-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11,17,36,0.1), rgba(11,17,36,0.7));
        }

        .blog-spotlight-content {
            padding: 45px;
            color: #fff;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            justify-content: center;
        }

        .blog-spotlight-content .spotlight-title a {
            color: #fff;
            text-decoration: none;
        }

        .blog-spotlight-content .spotlight-summary {
            color: rgba(255,255,255,0.8);
            margin-bottom: 0;
        }

        .blog-spotlight-card .spotlight-cta small {
            color: rgba(255,255,255,0.7);
        }

        /* Blog Posts */
        .blog-posts {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 768px) {
            .blog-posts {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .blog-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(15,23,42,0.08);
            transition: var(--transition);
            border: 1px solid rgba(15,23,42,0.05);
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 70px rgba(108, 99, 255, 0.25);
        }

        .blog-list-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
        }
        
        .blog-image {
            height: 220px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .blog-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .blog-category {
            display: inline-block;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .blog-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
            line-height: 1.3;
        }

        .blog-title a,
        .blog-card .blog-title a,
        .tutorials-layout .blog-card .blog-title a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        .blog-card .blog-title a:hover,
        .tutorials-layout .blog-card .blog-title a:hover {
            color: var(--primary);
        }
        
        .blog-excerpt {
            color: #666;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
            gap: 12px;
        }
        
        .author-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            overflow: hidden;
            background: #f0f2ff;
            border: 2px solid rgba(108, 99, 255, 0.2);
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 600;
        }

        .blog-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        /* Sidebar */
        .blog-sidebar {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: sticky;
            top: 120px;
        }
        
        .sidebar-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .categories-list {
            list-style: none;
            padding-left: 0;
        }
        
        .categories-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
        }

        .categories-list li:last-child {
            border-bottom: none;
        }

        .categories-list li.active a {
            color: var(--primary);
            font-weight: 600;
        }

        .categories-list li.active .category-count {
            background: var(--primary);
            color: #fff;
        }
        
        .categories-list a {
            color: #555;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .categories-list a:hover {
            color: var(--primary);
        }
        
        .category-count {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50px;
            padding: 2px 10px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .popular-posts {
            list-style: none;
            padding-left: 0;
        }
        
        .popular-post {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .popular-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .popular-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .popular-content h4 {
            font-size: 1rem;
            margin-bottom: 8px;
        }
        
        .popular-content h4 a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .popular-content h4 a:hover {
            color: var(--primary);
        }
        
        .popular-meta {
            font-size: 0.8rem;
            color: #777;
        }
        
        .newsletter-form {
            margin-top: 30px;
        }
        
        .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
        }
        
        .btn-subscribe {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 12px 20px;
            width: 100%;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-subscribe:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }
        
        .page-item .page-link {
            color: var(--primary);
            border: none;
            border-radius: 10px;
            margin: 0 5px;
            transition: var(--transition);
        }
        
        .page-item.active .page-link {
            background: var(--primary);
            color: white;
        }
        
        .page-item:not(.active) .page-link:hover {
            background: rgba(108, 99, 255, 0.1);
        }



        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .bloghero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .bloghero-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 767px) {
            .blog-bloghero {
                padding-top: 120px;
            }
            
            .bloghero-title {
                font-size: 2.2rem;
            }
        } 
        
        /* Blog specific styles */
        .featured-post {
            grid-column: 1 / -1;
        }
        
        .featured-post .blog-image {
            height: 400px;
        }
        
        .featured-post .blog-content {
            padding: 40px;
        }
        
        .featured-post .blog-title {
            font-size: 2rem;
        }
        
        .featured-post .blog-excerpt {
            font-size: 1.1rem;
        }



        /* privhero Section - OPTIMIZED FOR CENTERING */
        .privacy-privhero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            text-align: center;
            padding: 100px 0;
        }
        
        .privhero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .privhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .privhero-subtitle {
            font-size: 1.35rem;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
        }
        
        /* Policy Content */
        .policy-content {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .policy-section {
            margin-bottom: 70px;
        }
        
        .policy-section h3 {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-left: 30px;
        }
        
        .policy-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .policy-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .policy-section ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .policy-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .policy-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .highlight-box {
            background: rgba(108, 99, 255, 0.05);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        
        /* Data Table */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .data-table th {
            background: var(--primary);
            color: white;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }
        
        .data-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .data-table tr:nth-child(even) {
            background: #f9f9ff;
        }
        
        .data-table tr:hover {
            background: rgba(108, 99, 255, 0.03);
        }
        
        /* Security Badges */
        .security-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            justify-content: center;
        }
        
        .security-badge {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        
        .security-badge:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Cookie Cards */
        .cookie-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .cookie-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: var(--transition);
            border-top: 3px solid var(--primary);
        }
        
        .cookie-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
        }
        
        .cookie-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Contact Card */
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            max-width: 600px;
            margin: 70px auto 0;
            border-top: 5px solid var(--primary);
        }
        
        .contact-card h3 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            color: var(--primary);
            font-size: 1.3rem;
        }
        


        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .privhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .privhero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .policy-section h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 767px) {
            .privacy-privhero {
                padding: 80px 0;
            }
            
            .privhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .policy-section h3 {
                font-size: 1.5rem;
                padding-left: 25px;
            }
            
            .contact-card {
                padding: 30px;
            }
            
            .privhero-subtitle {
                font-size: 1.1rem;
            }
        } 




        /* downloadhero Section */
        .download-downloadhero {
            background: linear-gradient(135deg, #f5f7ff 0%, #e6e9ff 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .download-downloadhero::before {
            content: "";
            position: absolute;
            top: -300px;
            right: -300px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.08);
            z-index: 0;
        }
        
        .download-downloadhero::after {
            content: "";
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.08);
            z-index: 0;
        }
        
        .downloadhero-content {
            position: relative;
            z-index: 2;
        }
        
        .downloadhero-badge {
            display: inline-block;
            background-color: rgba(108, 99, 255, 0.15);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .downloadhero-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .downloadhero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--text);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .downloadhero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .btn-lg {
            padding: 12px 30px;
            font-size: 18px;
            border-radius: 12px;
            font-weight: 600;
        }
        
        .btn-outline-dark {
            border: 2px solid var(--dark);
            color: var(--dark);
        }
        
        .btn-outline-dark:hover {
            background-color: var(--dark);
            color: white;
        }
        
        /* Platform Section */
        .platform-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .platform-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .platform-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.1);
            padding: 40px 30px;
            text-align: center;
            width: 300px;
            transition: all 0.3s ease;
            border: 2px solid #f0f2ff;
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
            border-color: var(--primary);
        }
        
        .platform-icon {
            width: 100px;
            height: 100px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: var(--primary);
        }
        
        .platform-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .platform-desc {
            color: var(--text);
            margin-bottom: 25px;
            font-size: 16px;
        }
        
        .download-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            width: 100%;
            max-width: 200px;
        }
        
        .download-btn:hover {
            background: white;
            color: var(--primary);
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ebff;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.15);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: var(--primary);
        }
        
        /* .feature-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        } */
        
        .feature-desc {
            color: var(--text);
            margin-bottom: 0;
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: white;
        }
        
        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.08);
            border: 1px solid #e9ebff;
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--text);
            font-style: italic;
            position: relative;
        }
        
        .testimonial-text::before {
            /* content: """; */
            font-size: 80px;
            position: absolute;
            top: -30px;
            left: -20px;
            color: rgba(108, 99, 255, 0.1);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 600;
            font-size: 24px;
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
        }
        
        .author-role {
            color: var(--text);
            font-size: 14px;
        }
        
        /* FAQ */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
        }
        
        .accordion-item {
            border: 1px solid #e9ebff;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            background: white;
        }
        
        .accordion-button {
            padding: 25px;
            font-weight: 600;
            font-size: 18px;
            color: var(--dark);
            background: white;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary);
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c63ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            padding: 0 25px 25px;
            color: var(--text);
            font-size: 16px;
            line-height: 1.7;
        }
        



        /* Responsive */
        @media (max-width: 992px) {
            .downloadhero-title {
                font-size: 36px;
            }
            
            .downloadhero-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 24px;
            }
            
            .downloadhero-title {
                font-size: 32px;
            }
            
            .downloadhero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .platform-cards {
                flex-direction: column;
                align-items: center;
            }
        }




        /* cthero Section */
        .contact-cthero {
            background: linear-gradient(135deg, #f5f7ff 0%, #e6e9ff 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .contact-cthero::before {
            content: "";
            position: absolute;
            top: -300px;
            right: -300px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.08);
            z-index: 0;
        }
        
        .contact-cthero::after {
            content: "";
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.08);
            z-index: 0;
        }
        
        .cthero-content {
            position: relative;
            z-index: 2;
        }
        
        .cthero-badge {
            display: inline-block;
            background-color: rgba(108, 99, 255, 0.15);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .cthero-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .cthero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--text);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cthero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }
        
        /* Contact Channels Section */
        .contact-channels {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .channel-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .channel-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            width: 300px;
            transition: all 0.3s ease;
            border: 2px solid #f0f2ff;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.1);
        }
        
        .channel-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
            border-color: var(--primary);
        }
        
        .channel-icon {
            width: 80px;
            height: 80px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--primary);
        }
        
        .channel-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .channel-desc {
            color: var(--text);
            margin-bottom: 25px;
            font-size: 16px;
        }
        
        .channel-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            width: 100%;
            max-width: 200px;
        }
        
        .channel-btn:hover {
            background: white;
            color: var(--primary);
        }
        
        .whatsapp-btn {
            background: #25D366;
            border-color: #25D366;
        }
        
        .whatsapp-btn:hover {
            background: white;
            color: #25D366;
        }
        
        /* Contact Information */
        .contact-info-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
        }
        
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.1);
        }
        
        .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            flex: 1;
            min-width: 300px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
            color: var(--primary);
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-details h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .contact-details p {
            font-size: 16px;
            color: var(--text);
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
            justify-content: center;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 20px;
        }
        
        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: white;
        }
        
        .map-container {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }



        /* Responsive */
        @media (max-width: 992px) {
            .cthero-title {
                font-size: 36px;
            }
            
            .cthero-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
     
            
            .cthero-title {
                font-size: 32px;
            }
            
            .cthero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .channel-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-container {
                padding: 30px;
            }
        }


.persona-switch {
  display:inline-flex;
  gap:10px;
  justify-content:center;
  background:#f5f6f8;
  border-radius:50px;
  padding:6px;
}
.persona-btn {
  border:none;
  background:none;
  padding:10px 25px;
  font-weight:600;
  border-radius:50px;
  color:#444;
  transition:all .3s ease;
}
.persona-btn.active {
  background:#0d6efd;
  color:#fff;
}
.modules-header .section-title {
    margin-bottom: 0;
}

.timeline-card .module-card {
    background: #fff;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-card .module-meta {
    display: flex;
    gap: 1rem;
    color: #6b6f85;
    font-size: 0.9rem;
}

.timeline-card .module-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

#scroll-to-next {
    border-radius: 999px;
    font-weight: 600;
}
.timeline-card .module-card h3 a {
    text-decoration: none;
    color: #0f172a;
}

.timeline-card .module-card h3 a:hover {
    color: var(--primary);
}

/* ===============================
   Homepage premium refresh (scoped)
   =============================== */
.home-page {
    --home-ink: #0c1b3d;
    --home-ink-soft: #465474;
    --home-border: rgba(28, 61, 119, 0.16);
    --home-card: rgba(255, 255, 255, 0.9);
    --home-card-strong: #ffffff;
    --home-primary: #1150d8;
    --home-primary-deep: #0b2f7a;
    --home-teal: #0f9fb2;
    --home-bg: #f5f8ff;
    --home-space-hero-top: clamp(136px, 15vw, 206px);
    --home-space-hero-bottom: clamp(88px, 10vw, 132px);
    --home-space-section-gap: clamp(40px, 5vw, 68px);
    --home-space-panel-y: clamp(24px, 2.8vw, 34px);
    --home-space-panel-x: clamp(20px, 2.2vw, 30px);
    --home-space-card: clamp(20px, 2.3vw, 28px);
    --home-space-list: clamp(8px, 1vw, 12px);
    --home-content-max: 1296px;
    --home-inline-gutter: clamp(14px, 1.9vw, 24px);
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--home-ink);
    background:
        radial-gradient(circle at 4% 0%, rgba(114, 177, 255, 0.2), transparent 36%),
        radial-gradient(circle at 96% 13%, rgba(15, 159, 178, 0.14), transparent 36%),
        linear-gradient(180deg, #f3f7ff 0%, #f7fbff 38%, #f4f8ff 100%);
}

.home-page .hero {
    min-height: 100vh;
    padding: var(--home-space-hero-top) 0 var(--home-space-hero-bottom);
}

.home-page main .container {
    max-width: min(var(--home-content-max), calc(100% - (var(--home-inline-gutter) * 2)));
}

.home-page .hero > .container {
    max-width: min(var(--home-content-max), calc(100% - (var(--home-inline-gutter) * 2)));
}

.home-page .hero-row {
    row-gap: clamp(26px, 4vw, 44px);
}

.home-page .hero-title {
    margin-bottom: clamp(18px, 2.4vw, 28px);
}

.home-page .hero-subtitle {
    margin-bottom: clamp(16px, 2.1vw, 26px);
    max-width: 57ch;
}

.home-page .hero-support-line {
    margin-bottom: clamp(10px, 1.4vw, 16px);
    max-width: 56ch;
}

.home-page .hero-pricing-anchor {
    margin-bottom: clamp(18px, 2.4vw, 28px);
    padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.8vw, 18px);
}

.home-page .hero-buttons {
    gap: clamp(10px, 1.4vw, 16px);
    margin-bottom: clamp(24px, 3vw, 36px);
}

.home-page .hero .hero-cta .btn {
    padding: 0.82rem 1.26rem !important;
}

.home-page .stack-cost-card {
    margin: 0 0 clamp(14px, 2vw, 24px);
    padding: clamp(18px, 2.2vw, 24px);
}

.home-page .stack-cost-divider {
    margin: clamp(10px, 1.3vw, 14px) 0 clamp(12px, 1.5vw, 16px);
}

.home-page .stack-cost-footer {
    gap: clamp(10px, 1.2vw, 14px);
}

.home-page .stack-cost-save {
    margin-top: clamp(10px, 1.3vw, 14px);
    padding: clamp(10px, 1.3vw, 14px) clamp(12px, 1.5vw, 16px);
}

.home-page .hero-title,
.home-page h1,
.home-page h2,
.home-page h3 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

.home-page .hero-subtitle,
.home-page .hero-support-line,
.home-page .section-support-copy,
.home-page .why-workroomly-main p {
    color: var(--home-ink-soft);
}

.home-page .btn-gradient {
    background: linear-gradient(125deg, #0f4ee6 0%, #117fff 55%, #08b299 100%);
    border: 0;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(13, 74, 197, 0.28);
    transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease;
}

.home-page .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(13, 74, 197, 0.34);
    filter: saturate(1.06);
}

.home-page .btn-glass {
    border: 1px solid rgba(13, 66, 171, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 248, 255, 0.86) 100%);
    color: #123474;
    transition: transform 0.26s ease, border-color 0.26s ease, background-color 0.26s ease;
}

.home-page .btn-glass:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 66, 171, 0.42);
    color: #0b2862;
}

.home-page .section-shell {
    margin-top: var(--home-space-section-gap);
    padding: var(--home-space-panel-y) var(--home-space-panel-x);
    border-radius: 32px;
    border: 1px solid var(--home-border);
    background: linear-gradient(168deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.92));
    box-shadow: 0 26px 56px rgba(12, 35, 78, 0.1);
    position: relative;
    overflow: hidden;
}

.home-page .section-shell::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(81, 156, 255, 0.24), transparent 68%);
    pointer-events: none;
}

.home-page .section-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(8, 41, 92, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 41, 92, 0.04) 1px, transparent 1px);
    background-size: 150px 150px;
    opacity: 0.35;
    pointer-events: none;
}

.home-page .section-shell > * {
    position: relative;
    z-index: 2;
}

.home-page .section-eyebrow {
    margin: 0 0 clamp(10px, 1.3vw, 14px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(17, 78, 202, 0.2);
    background: rgba(17, 102, 216, 0.09);
    color: #0e3e9b;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.home-page .section-support-copy {
    margin: 0;
    max-width: 680px;
}

.home-page .stack-replacement-strip {
    margin-top: clamp(36px, 5vw, 58px);
    padding: clamp(24px, 2.8vw, 34px);
    gap: clamp(14px, 1.8vw, 22px);
}

.home-page .stack-workroomly {
    padding: clamp(18px, 2.2vw, 24px);
}

.home-page .module-control-rail .module-card {
    padding: 8px 11px;
    min-height: 52px;
}

.home-page .os-architecture-section {
    margin-top: clamp(24px, 3vw, 38px);
}

.home-page .who-for-section {
    margin-top: clamp(22px, 2.8vw, 34px);
}

.home-page .os-architecture-card,
.home-page .team-fit-card,
.home-page .why-proof-panel,
.home-page .final-proof-item {
    transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.home-page .os-architecture-card {
    border-radius: 24px;
    padding: var(--home-space-card);
    background: var(--home-card);
    border: 1px solid var(--home-border);
    box-shadow: 0 16px 36px rgba(10, 34, 82, 0.09);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.2vw, 14px);
}

.home-page .os-architecture-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 44px rgba(10, 34, 82, 0.16);
    border-color: rgba(21, 79, 200, 0.32);
}

.home-page .os-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.home-page .os-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(12, 46, 109, 0.22);
}

.home-page .os-card-id {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(8, 30, 74, 0.58);
    font-weight: 800;
}

.home-page .os-card-command .os-card-icon {
    background: linear-gradient(135deg, #0d6de4, #1794f5);
}

.home-page .os-card-revenue .os-card-icon {
    background: linear-gradient(135deg, #0d8d84, #18b59a);
}

.home-page .os-card-execute .os-card-icon {
    background: linear-gradient(135deg, #1f5fd2, #3e88ff);
}

.home-page .os-card-capture .os-card-icon {
    background: linear-gradient(135deg, #3562b3, #5584db);
}

.home-page .os-architecture-card h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
    color: #061f51;
}

.home-page .os-card-impact {
    margin-top: 2px;
    color: #1f4a95;
    font-size: 0.92rem;
    font-weight: 600;
}

.home-page .os-modules {
    margin-top: auto;
    gap: 9px;
}

.home-page .os-modules span {
    border-radius: 999px;
    padding: 7px 12px;
    background: linear-gradient(160deg, rgba(19, 92, 216, 0.09), rgba(23, 157, 189, 0.12));
    border: 1px solid rgba(19, 92, 216, 0.16);
    color: #15448f;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.01em;
}

.home-page .team-fit-card {
    border-radius: 20px;
    padding: var(--home-space-card);
    background: var(--home-card-strong);
    border: 1px solid var(--home-border);
    box-shadow: 0 14px 30px rgba(8, 34, 79, 0.08);
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 12px);
}

.home-page .team-fit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 38px rgba(8, 34, 79, 0.14);
}

.home-page .team-fit-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.home-page .team-fit-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.92rem;
}

.home-page .team-fit-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(9, 33, 75, 0.64);
    font-weight: 800;
}

.home-page .fit-startups .team-fit-icon {
    background: linear-gradient(135deg, #0d6de4, #2e95ff);
}

.home-page .fit-agencies .team-fit-icon {
    background: linear-gradient(135deg, #0c8b84, #11b69f);
}

.home-page .fit-remote .team-fit-icon {
    background: linear-gradient(135deg, #2f67c2, #4f88df);
}

.home-page .fit-growing .team-fit-icon {
    background: linear-gradient(135deg, #1d60db, #2f8ef5);
}

.home-page .team-fit-card h3 {
    margin-top: 2px;
    color: #081e49;
}

.home-page .team-fit-proof {
    margin-top: auto;
    color: #1f4b96;
    font-size: 0.9rem;
    font-weight: 600;
}

.home-page .why-workroomly-section {
    padding: clamp(34px, 4.3vw, 52px) 0 clamp(8px, 1.2vw, 14px);
}

.home-page .why-workroomly-card {
    border-radius: 32px;
    padding: clamp(26px, 3vw, 36px);
    border: 1px solid rgba(21, 62, 133, 0.2);
    background: linear-gradient(160deg, #ffffff 0%, #f6faff 100%);
    box-shadow: 0 22px 50px rgba(8, 34, 79, 0.1);
}

.home-page .why-workroomly-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(20px, 2.4vw, 30px);
    align-items: stretch;
}

.home-page .why-workroomly-main h2 {
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    color: #061e4e;
}

.home-page .why-workroomly-main p {
    margin-bottom: clamp(12px, 1.5vw, 18px);
    max-width: 780px;
}

.home-page .why-tool-list {
    list-style: none;
    margin: 0 0 clamp(14px, 1.8vw, 20px);
    padding: 0;
    display: grid;
    gap: clamp(6px, 0.9vw, 10px);
}

.home-page .why-tool-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: clamp(8px, 1.05vw, 11px) clamp(12px, 1.5vw, 16px);
    border-radius: 12px;
    border: 1px solid rgba(22, 73, 162, 0.14);
    background: linear-gradient(160deg, rgba(244, 249, 255, 0.96), rgba(236, 245, 255, 0.9));
    color: #153f89;
    font-weight: 700;
}

.home-page .why-tool-list li::before {
    content: "\f0c1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0f6cd9;
    font-size: 0.8rem;
}

.home-page .why-proof-panel {
    border-radius: 24px;
    padding: var(--home-space-card);
    border: 1px solid rgba(103, 179, 255, 0.28);
    background: linear-gradient(150deg, #0a2358 0%, #0d327a 56%, #0d4b95 100%);
    color: #e9f4ff;
    box-shadow: inset 0 0 0 1px rgba(180, 222, 255, 0.08), 0 20px 38px rgba(5, 23, 59, 0.33);
    display: flex;
    flex-direction: column;
}

.home-page .why-proof-panel:hover {
    transform: translateY(-4px);
}

.home-page .why-proof-panel h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.14rem;
}

.home-page .why-proof-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: var(--home-space-list);
}

.home-page .why-proof-list li {
    display: flex;
    gap: 10px;
    color: rgba(230, 245, 255, 0.93);
    font-size: 0.94rem;
    line-height: 1.42;
}

.home-page .why-proof-list i {
    color: #7fd6ff;
    margin-top: 2px;
}

.home-page .why-proof-kpis {
    margin-top: clamp(14px, 1.8vw, 20px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--home-space-list);
}

.home-page .why-proof-kpi {
    border-radius: 12px;
    padding: clamp(10px, 1.2vw, 13px) clamp(8px, 1vw, 12px);
    background: rgba(230, 247, 255, 0.09);
    border: 1px solid rgba(176, 218, 255, 0.2);
    text-align: center;
}

.home-page .why-proof-kpi strong {
    display: block;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.05;
}

.home-page .why-proof-kpi span {
    display: block;
    margin-top: 4px;
    color: rgba(218, 239, 255, 0.86);
    font-size: 0.72rem;
    line-height: 1.2;
}

.home-page .why-proof-actions {
    margin-top: clamp(14px, 1.8vw, 20px);
    display: grid;
    gap: var(--home-space-list);
}

.home-page .why-proof-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.91rem;
}

.home-page .final-conversion-card {
    border-radius: 30px;
    background: linear-gradient(145deg, #031a43 0%, #0a2f74 48%, #0f529a 100%);
}

.home-page .final-conversion-card p {
    color: rgba(233, 244, 255, 0.9);
}

.home-page .final-proof-strip {
    margin: clamp(16px, 2vw, 24px) auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--home-space-list);
    max-width: 860px;
}

.home-page .final-proof-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(10px, 1.2vw, 13px) clamp(12px, 1.6vw, 16px);
    border-radius: 999px;
    background: rgba(217, 239, 255, 0.11);
    border: 1px solid rgba(173, 221, 255, 0.28);
    color: #e9f4ff;
    font-size: 0.86rem;
    font-weight: 700;
}

.home-page .final-proof-item:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 230, 255, 0.44);
}

.home-page .final-conversion-card .btn-glass {
    background: rgba(222, 243, 255, 0.12);
    border-color: rgba(190, 230, 255, 0.45);
    color: #f2f9ff;
}

.home-page .final-conversion-card .btn-glass:hover {
    background: rgba(233, 247, 255, 0.2);
    border-color: rgba(210, 236, 255, 0.55);
    color: #ffffff;
}

.home-page .founder-pillars,
.home-page .ai-native-ops-section,
.home-page .trust-local-section,
.home-page .final-conversion-section {
    margin-top: var(--home-space-section-gap);
}

.home-page .pillars-intro {
    margin-bottom: clamp(22px, 2.5vw, 32px);
}

.home-page .pillar-card {
    padding: var(--home-space-card);
    gap: clamp(10px, 1.2vw, 14px);
}

.home-page .ai-native-ops-section {
    padding: clamp(24px, 2.9vw, 36px);
}

.home-page .ai-native-points {
    margin-top: clamp(16px, 2vw, 22px);
    gap: var(--home-space-list);
}

.home-page .trust-local-section {
    padding: clamp(44px, 5vw, 68px) 0 clamp(24px, 3vw, 36px);
}

.home-page .trust-local-card {
    padding: clamp(24px, 2.8vw, 34px);
}

.home-page .trust-faq-row {
    margin-top: clamp(16px, 2vw, 24px);
}

.home-page .trust-faq-card {
    padding: clamp(18px, 2.2vw, 24px);
}

.home-page .final-conversion-section {
    padding: clamp(42px, 5vw, 70px) 0 clamp(18px, 2.8vw, 30px);
}

.home-page .final-conversion-card {
    padding: clamp(32px, 4vw, 46px) clamp(24px, 3vw, 34px);
}

.home-page .final-conversion-actions {
    margin-top: clamp(20px, 2.3vw, 30px);
    gap: clamp(10px, 1.4vw, 16px);
}

@media (max-width: 1199px) {
    .home-page .why-workroomly-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .home-page {
        --home-space-section-gap: clamp(34px, 6vw, 52px);
        --home-space-panel-y: clamp(22px, 3.4vw, 28px);
        --home-space-panel-x: clamp(18px, 3vw, 24px);
        --home-space-card: clamp(18px, 3.4vw, 24px);
    }

    .home-page .hero {
        min-height: auto;
    }

    .home-page .section-shell {
        padding: var(--home-space-panel-y) var(--home-space-panel-x);
        border-radius: 26px;
    }

    .home-page .why-workroomly-card {
        padding: clamp(22px, 3.6vw, 28px);
    }

}

@media (max-width: 767px) {
    .home-page {
        --home-space-section-gap: clamp(28px, 8vw, 42px);
        --home-space-panel-y: clamp(18px, 4.2vw, 22px);
        --home-space-panel-x: clamp(16px, 4vw, 22px);
        --home-space-card: clamp(16px, 4.2vw, 20px);
    }

    .home-page .section-shell {
        padding: var(--home-space-panel-y) var(--home-space-panel-x);
    }

    .home-page .hero {
        padding-top: clamp(118px, 20vw, 146px);
        padding-bottom: clamp(68px, 12vw, 92px);
    }

    .home-page .hero-buttons,
    .home-page .final-conversion-actions {
        gap: 10px;
    }

    .home-page .why-proof-kpis,
    .home-page .final-proof-strip {
        grid-template-columns: 1fr;
    }

    .home-page .team-fit-card,
    .home-page .os-architecture-card {
        padding: 18px;
    }
}

@media (max-width: 575px) {
    .home-page .section-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .home-page .why-workroomly-card {
        border-radius: 24px;
        padding: clamp(16px, 4.8vw, 20px);
    }

    .home-page .stack-replacement-strip,
    .home-page .trust-local-card,
    .home-page .final-conversion-card {
        padding: clamp(16px, 4.8vw, 20px);
    }

}

/* Mobile navigation + homepage readability overrides */
@media (max-width: 991.98px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 34px;
        width: auto;
        margin-right: 0;
    }

    .navbar .navbar-collapse {
        margin-top: 10px;
        padding: 10px 0 14px;
        max-height: calc(100vh - 84px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid rgba(17, 55, 122, 0.14);
    }

    .navbar .navbar-nav {
        width: 100%;
        align-items: stretch !important;
        gap: 2px;
    }

    .navbar .nav-link {
        margin: 0;
        padding: 10px 0;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .platform-mobile-nav {
        padding-top: 2px;
    }

    .platform-mobile-toggle {
        width: 100%;
        border: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        font-weight: 600;
        color: #132251;
    }

    .platform-mobile-toggle:focus-visible {
        outline: 2px solid rgba(54, 132, 255, 0.55);
        outline-offset: 2px;
        border-radius: 10px;
    }

    .platform-mobile-toggle .platform-caret {
        margin-left: 10px;
    }

    .platform-mobile-toggle[aria-expanded="true"] .platform-caret {
        transform: rotate(180deg);
    }

    .platform-mobile-collapse {
        margin-top: -2px;
    }

    .platform-mobile-stack {
        margin-top: 2px;
        max-height: min(52vh, 420px);
        overflow-y: auto;
        padding-right: 8px;
    }

    .navbar .navbar-cta {
        width: 100%;
        margin-left: 0 !important;
        padding-top: 12px;
        border-top: 1px solid rgba(17, 55, 122, 0.14);
    }

    .navbar .navbar-cta .btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 140px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .home-page {
        --home-space-section-gap: clamp(34px, 9vw, 52px);
        --home-space-panel-y: clamp(20px, 4.8vw, 24px);
        --home-space-panel-x: clamp(16px, 4.4vw, 22px);
    }

    .home-page .hero-title {
        font-size: clamp(2rem, 8.8vw, 2.7rem);
        line-height: 1.06;
        letter-spacing: -0.02em;
    }

    .home-page .hero-subtitle {
        font-size: clamp(1rem, 3.8vw, 1.08rem);
        line-height: 1.6;
    }

    .home-page .hero-support-line,
    .home-page .hero-pricing-anchor {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .home-page .hero .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .home-page .section-shell {
        border-radius: 24px;
    }

    .home-page .founder-pillars .row,
    .home-page .os-architecture-section .row,
    .home-page .who-for-section .row,
    .home-page .trust-points,
    .home-page .trust-faq-row {
        row-gap: 14px;
    }

    .home-page .pillars-intro p,
    .home-page .why-workroomly-main p,
    .home-page .trust-local-card p,
    .home-page .final-conversion-card p {
        font-size: 0.95rem;
        line-height: 1.58;
    }

    .home-page .pillar-card {
        padding: 20px;
        border-radius: 20px;
        gap: 10px;
    }

    .home-page .pillar-index {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .home-page .pillar-card h3 {
        font-size: clamp(1.16rem, 5vw, 1.36rem);
        line-height: 1.3;
    }

    .home-page .pillar-card p {
        font-size: 0.95rem;
        line-height: 1.56;
    }

    .home-page .pillar-detail {
        color: #3b5381;
    }

    .home-page .pillar-modules span {
        font-size: 0.72rem;
        padding: 6px 10px;
    }

    .home-page .pillar-card img {
        margin-top: 6px;
        border-radius: 12px;
        aspect-ratio: 16 / 9;
    }

    .home-page .ai-native-ops-section {
        padding: 20px;
        border-radius: 22px;
    }

    .home-page .ai-native-points li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .home-page .why-tool-list li {
        font-size: 0.86rem;
        line-height: 1.35;
        padding: 8px 10px;
    }

    .home-page .mobile-proof-content {
        padding: 14px 15px 16px;
    }

    .home-page .mobile-proof-content h4 {
        font-size: 1.02rem;
    }

    .home-page .mobile-proof-content p {
        font-size: 0.9rem;
        line-height: 1.48;
    }
}

@media (max-width: 575px) {
    .home-page .hero {
        padding-top: clamp(108px, 27vw, 136px);
    }

    .home-page .hero-title {
        font-size: clamp(1.86rem, 9.4vw, 2.35rem);
    }

    .home-page .pillar-detail {
        display: none;
    }
}
