 :root {
            --primary-purple: #6C00B0;
            --secondary-purple: #8a2be2;
            --dark-purple: #500986;
            --light-bg: #f0f0f0;
            --white: #ffffff;
            --text-dark: #1a1a1a;
            --text-gray: #4a4a4a;
            --text-light: #666;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 clamp(15px, 5vw, 80px);
        }
/* Header Section */
        .quote-section {
            padding: clamp(10px, 10vh, 10px) 0 clamp(20px, 8vh, 20px);
            text-align: center;
            position: relative;
        }

        .quote-badge {
            display: inline-block;
            background: rgba(138, 43, 226, 0.08);
            color: var(--primary-purple);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            /* margin-bottom: 25px; */
            letter-spacing: 0.5px;
        }

        .quote-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            /* padding: clamp(20px, 4vw, 40px); */
        }

        .quote-text {
            font-size: clamp(28px, 4.5vw, 48px);
            font-weight: 700;
            color: var(--text-dark);
            /* margin-bottom: 15px; */
            letter-spacing: -0.02em;
            line-height: 1.3;
        }

        .quote-author {
            font-size: clamp(16px, 2vw, 18px);
            color: var(--primary-purple);
            font-style: italic;
            font-weight: 600;
        }

        /* Philosophy Section */
        .philosophy {
            text-align: center;
            padding: clamp(10px, 7vh, 10px) 0;
            background: rgba(138, 43, 226, 0.03);
            border-radius: 30px;
            /* margin-bottom: clamp(50px, 8vh, 80px); */
        }

        .philosophy-heading {
            font-size: clamp(28px, 4.5vw, 44px);
            font-weight: 700;
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            /* margin-bottom: 10px; */
            letter-spacing: -0.02em;
            line-height: 1.3;
        }

        /* Framework Section */
        .framework-section {
            padding: clamp(40px, 8vh, 80px) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: clamp(50px, 8vh, 70px);
        }

        .section-badge {
            display: inline-block;
            background: rgba(138, 43, 226, 0.08);
            color: var(--primary-purple);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(32px, 4.5vw, 42px);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Grid Layout */
        .framework-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            gap: clamp(25px, 4vw, 40px);
            margin-bottom: clamp(60px, 10vh, 80px);
        }

        .framework-card {
            background: var(--white);
            border: 1px solid rgba(138, 43, 226, 0.15);
            border-radius: 20px;
            padding: clamp(25px, 4vw, 35px);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

        .framework-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .framework-card:hover {
            transform: translateY(-10px);
            border-color: rgba(138, 43, 226, 0.3);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
        }

        .framework-card:hover::before {
            transform: scaleX(1);
        }

        .card-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: clamp(50px, 7vw, 60px);
            height: clamp(50px, 7vw, 60px);
            background: rgba(138, 43, 226, 0.1);
            border: 2px solid var(--primary-purple);
            border-radius: 12px;
            font-size: clamp(20px, 3vw, 26px);
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 20px;
        }

        .card-title {
            font-size: clamp(20px, 2.8vw, 24px);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .card-subtitle {
            font-size: clamp(12px, 1.6vw, 14px);
            color: var(--primary-purple);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
        }

        .card-description {
            font-size: clamp(14px, 1.8vw, 16px);
            color: var(--text-gray);
            line-height: 1.7;
            flex-grow: 1;
        }

        /* Process Flow */
        .process-flow {
            background: var(--white);
            border: 1px solid rgba(138, 43, 226, 0.15);
            border-radius: 24px;
            padding: clamp(35px, 6vw, 60px);
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .flow-header {
            text-align: center;
            margin-bottom: clamp(40px, 6vh, 50px);
        }

        .flow-badge {
            display: inline-block;
            background: rgba(138, 43, 226, 0.08);
            color: var(--primary-purple);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .flow-title {
            font-size: clamp(24px, 3.5vw, 32px);
            font-weight: 700;
            color: var(--text-dark);
        }

        .flow-steps {
            display: flex;
            gap: clamp(15px, 2.5vw, 20px);
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 10px 0 20px;
            scroll-behavior: smooth;
        }

        .flow-steps::-webkit-scrollbar {
            display: none;
        }

        .flow-step {
            background: rgba(138, 43, 226, 0.03);
            border: 1px solid rgba(138, 43, 226, 0.15);
            border-radius: 16px;
            padding: clamp(20px, 3.5vw, 28px);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(15px, 3vw, 20px);
            position: relative;
            transition: all 0.3s ease;
            flex: 0 0 85%;
            scroll-snap-align: center;
            min-width: 280px;
        }

        .flow-step:hover {
            border-color: rgba(138, 43, 226, 0.4);
            background: rgba(138, 43, 226, 0.06);
            transform: translateY(-5px);
        }

        .step-number {
            flex-shrink: 0;
            width: clamp(45px, 6vw, 55px);
            height: clamp(45px, 6vw, 55px);
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(18px, 2.8vw, 22px);
            font-weight: 700;
            color: white;
        }

        .step-content {
            flex: 1;
            text-align: center;
        }

        .step-title {
            font-size: clamp(17px, 2.3vw, 22px);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .step-label {
            font-size: clamp(13px, 1.7vw, 15px);
            color: var(--text-gray);
            font-style: italic;
        }

        .step-arrow {
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: clamp(28px, 4vw, 35px);
            height: clamp(28px, 4vw, 35px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            font-size: clamp(18px, 2.8vw, 24px);
            font-weight: 600;
            opacity: 0.6;
            background: var(--white);
            border-radius: 50%;
            z-index: 2;
        }

        /* Floating Background Elements */
        .float-element {
            position: absolute;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(108, 0, 176, 0.05));
            border-radius: 50%;
            z-index: 0;
            animation: floatAnimation 25s infinite ease-in-out;
            pointer-events: none;
        }

        .float-element:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .float-element:nth-child(2) {
            top: 60%;
            right: 8%;
            animation-delay: 8s;
            width: 90px;
            height: 90px;
        }

        .float-element:nth-child(3) {
            bottom: 15%;
            left: 12%;
            animation-delay: 16s;
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-30px) rotate(90deg); }
            50% { transform: translateY(0px) rotate(180deg); }
            75% { transform: translateY(30px) rotate(270deg); }
        }

        /* Responsive Grid for larger screens */
        @media (min-width: 768px) {
            .framework-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .framework-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .flow-steps {
                justify-content: center;
                overflow-x: visible;
            }

            .flow-step {
                flex: 0 0 auto;
                min-width: 0;
                width: calc(20% - 16px);
                scroll-snap-align: none;
            }

            .flow-step:hover {
                transform: translateY(-5px);
            }
        }

        @media (min-width: 1200px) {
            .flow-step {
                width: calc(18% - 16px);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quote-container,
        .philosophy,
        .framework-card,
        .process-flow {
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .framework-card:nth-child(1) { animation-delay: 0.1s; }
        .framework-card:nth-child(2) { animation-delay: 0.2s; }
        .framework-card:nth-child(3) { animation-delay: 0.3s; }
        .framework-card:nth-child(4) { animation-delay: 0.4s; }
        .framework-card:nth-child(5) { animation-delay: 0.5s; }
        .framework-card:nth-child(6) { animation-delay: 0.6s; }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Ensure proper z-index layering */
        .quote-section, .philosophy, .framework-section {
            position: relative;
            z-index: 1;
        }