
        :root {
        --purple: #602e9e;
        --orange: #d68e45;
        --light-purple: #f8f5fc;
        --light-orange: #fef8f3;
        --text-dark: #2d1b4e;
        --text-muted: #5d4a7a;
        --gradient-main: linear-gradient(135deg, #602e9e, #d68e45);
        --gradient-reverse: linear-gradient(135deg, #d68e45, #602e9e);
        --card-shadow: 0 8px 24px rgba(96, 46, 158, 0.12);
      }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #faf9fc;
            color: #2d1b4e;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated Background */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f5fc 0%, #fef8f3 50%, #f8f5fc 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(96, 46, 158, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(214, 142, 69, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(96, 46, 158, 0.08) 0%, transparent 50%);
            animation: drift 25s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(96, 46, 158, 0.05) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(214, 142, 69, 0.05) 50%, transparent 70%);
            background-size: 200% 200%;
            animation: gradient-shift 15s ease infinite;
        }

        /* Floating Elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(96, 46, 158, 0.2), transparent);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(214, 142, 69, 0.2), transparent);
            bottom: 15%;
            right: 10%;
            animation-delay: 3s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(96, 46, 158, 0.15), transparent);
            top: 60%;
            left: 15%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.9); }
            75% { transform: translate(20px, -10px) scale(1.05); }
        }

        @keyframes drift {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(80px, 80px) rotate(180deg); }
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 600px;
            padding: 50px 20px;
            padding-bottom: 0px;
        }

        .hero-badge {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, rgba(96, 46, 158, 0.15), rgba(214, 142, 69, 0.15));
            border: 2px solid #d68e45;
            border-radius: 50px;
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease, pulse-glow 3s ease-in-out infinite;
            color: #602e9e;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(96, 46, 158, 0.15);
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine-badge 3s infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 10px 30px rgba(96, 46, 158, 0.15); }
            50% { box-shadow: 0 10px 40px rgba(214, 142, 69, 0.3); }
        }

        @keyframes shine-badge {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.75rem;
            font-weight: 900;
            margin-bottom: 35px;
            background: linear-gradient(135deg, #602e9e 0%, #d68e45 50%, #602e9e 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.15;
            animation: fadeInUp 0.8s ease 0.2s both, shine 8s linear infinite;
            letter-spacing: -2px;
            text-shadow: 0 4px 20px rgba(96, 46, 158, 0.1);
            position: relative;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, #602e9e, #d68e45);
            border-radius: 2px;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }

        .hero-subtitle {
            font-size: 1.6rem;
            color: #5d4a7a;
            max-width: 900px;
            margin: 0 auto 60px;
            animation: fadeInUp 0.8s ease 0.4s both;
            line-height: 1.8;
            font-weight: 500;
        }

        .hero-cta-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .hero-cta-primary {
            padding: 20px 50px;
            background: linear-gradient(135deg, #602e9e, #d68e45);
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(96, 46, 158, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero-cta-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .hero-cta-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(214, 142, 69, 0.4);
        }

        .hero-cta-primary:hover::before {
            width: 400px;
            height: 400px;
        }

        .hero-cta-secondary {
            padding: 20px 50px;
            background: transparent;
            color: #602e9e;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            border: 2px solid #602e9e;
            transition: all 0.4s ease;
        }

        .hero-cta-secondary:hover {
            background: #602e9e;
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(96, 46, 158, 0.25);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 3s infinite;
        }

        .scroll-indicator::after {
            content: '↓';
            font-size: 2rem;
            color: #d68e45;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-20px); }
            60% { transform: translateX(-50%) translateY(-10px); }
        }

        /* Approach Section */
        .approach {
            padding: 60px 0;
            position: relative;
            background: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .section-label {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(96, 46, 158, 0.1), rgba(214, 142, 69, 0.1));
            border-radius: 20px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #602e9e;
            border: 2px solid rgba(214, 142, 69, 0.3);
            font-weight: 600;
        }

        .section-header h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 800;
            background: linear-gradient(135deg, #602e9e 0%, #d68e45 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #5d4a7a;
            max-width: 800px;
            margin: 0 auto;
        }

        .pillar {
            background: linear-gradient(135deg, #f8f5fc 0%, #fef8f3 100%);
            padding: 60px 40px;
            border: 2px solid #e8dff5;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(96, 46, 158, 0.08);
            height: 100%;
        }

        .pillar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #602e9e 0%, #d68e45 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .pillar::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(214, 142, 69, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .pillar:hover {
            transform: translateY(-15px);
            border-color: #d68e45;
            box-shadow: 0 20px 60px rgba(96, 46, 158, 0.15);
        }

        .pillar:hover::before {
            transform: scaleX(1);
        }

        .pillar:hover::after {
            opacity: 1;
        }

        .pillar-number {
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(135deg, rgba(96, 46, 158, 0.15), rgba(214, 142, 69, 0.15));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 20px;
        }

        .pillar h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: #602e9e;
        }

        .pillar p {
            color: #5d4a7a;
            font-size: 1.05rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Services Section */
        .services {
            padding: 60px 0;
            background: linear-gradient(180deg, #faf9fc 0%, #f8f5fc 100%);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(214, 142, 69, 0.3) 50%, transparent 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 80px;
        }

        .service-card {
            background: #ffffff;
            border: 2px solid #e8dff5;
            border-radius: 20px;
            padding: 25px 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(96, 46, 158, 0.08);
            height: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #602e9e 0%, #d68e45 100%);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(214, 142, 69, 0.1) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.6s ease;
            border-radius: 50%;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: #d68e45;
            box-shadow: 0 30px 80px rgba(96, 46, 158, 0.2);
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card:hover::after {
            transform: translate(-50%, -50%) scale(1);
        }

        .service-number {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, rgba(96, 46, 158, 0.1), rgba(214, 142, 69, 0.1));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            z-index: 1;
            color: #602e9e;
        }

        .service-benefit {
            background: linear-gradient(135deg, rgba(96, 46, 158, 0.08), rgba(214, 142, 69, 0.08));
            border-left: 4px solid #d68e45;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 10px;
            position: relative;
            z-index: 1;
        }

        .service-benefit strong {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: #602e9e;
            font-weight: 700;
        }

        .service-benefit p {
            color: #2d1b4e;
            line-height: 1.6;
            font-weight: 500;
            margin: 0;
        }

        .deliverables {
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }

        .deliverables h4 {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            color: #602e9e;
            font-weight: 700;
        }

        .deliverables ul {
            list-style: none;
            padding: 0;
        }

        .deliverables li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: #5d4a7a;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .deliverables li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #d68e45;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .service-card:hover .deliverables li {
            color: #2d1b4e;
        }

        .service-card:hover .deliverables li::before {
            transform: translateX(5px);
        }

        /* CTA Section */
        .cta {
            padding: 60px 0;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, #fef8f3 0%, #f8f5fc 50%, #fef8f3 100%);
            overflow: hidden;
            border-top: 3px solid #d68e45;
        }

        .cta::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(96, 46, 158, 0.08) 0%, transparent 70%);
            top: 50%;
            left: 25%;
            transform: translate(-50%, -50%);
            animation: pulse 4s ease-in-out infinite;
        }

        .cta::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(214, 142, 69, 0.08) 0%, transparent 70%);
            top: 50%;
            right: 25%;
            transform: translate(50%, -50%);
            animation: pulse 4s ease-in-out infinite 2s;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 3.75rem;
            margin-bottom: 30px;
            font-weight: 800;
            background: linear-gradient(135deg, #602e9e 0%, #d68e45 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta p {
            font-size: 1.3rem;
            color: #5d4a7a;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 25px 60px;
            background: linear-gradient(135deg, #602e9e 0%, #d68e45 100%);
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 3px solid transparent;
            box-shadow: 0 15px 40px rgba(96, 46, 158, 0.25);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-button:hover {
            transform: scale(1.08);
            box-shadow: 0 20px 60px rgba(214, 142, 69, 0.4);
            background: linear-gradient(135deg, #d68e45 0%, #602e9e 100%);
            color: #ffffff;
        }

        .cta-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        /* RXF STORY SECTION */
        .rxf-story {
            padding: 60px 0;
            background: #ffffff;
            position: relative;
        }

        .rxf-story::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(214, 142, 69, 0.3) 50%, transparent 100%);
        }

        .section-title {
            text-align: center;
            margin-bottom: 100px;
        }

        .section-title h2 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #602e9e 0%, #d68e45 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .section-title p {
            color: #5d4a7a;
            font-size: 1.2rem;
            max-width: 835px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .problem-solution {
            margin-top: 80px;
        }

        .problem-card,
        .solution-card {
            background: linear-gradient(135deg, #f8f5fc 0%, #fef8f3 100%);
            border-radius: 20px;
            padding: 25px 40px;
            box-shadow: 0 10px 30px rgba(96, 46, 158, 0.08);
            height: 100%;
            border: 2px solid #e8dff5;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .problem-card::before,
        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #602e9e 0%, #d68e45 100%);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .problem-card:hover::before,
        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .problem-card:hover,
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(96, 46, 158, 0.15);
            border-color: #d68e45;
        }

        .problem-card h3,
        .solution-card h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #602e9e;
            margin-bottom: 25px;
        }

        .problem-card p,
        .solution-card p {
            color: #5d4a7a;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .problem-card .highlight-text {
            color: #602e9e;
            font-weight: 700;
        }

        .solution-title {
            font-size: 2rem;
            font-weight: 700;
            color: #602e9e;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .solution-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #602e9e, #d68e45);
            border-radius: 2px;
        }

        /* RXF FRAMEWORK */
        .framework-container {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .framework-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            border-radius: 15px;
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid rgba(96, 46, 158, 0.1);
            background: #ffffff;
            overflow: hidden;
        }

        .framework-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(96, 46, 158, 0.05), rgba(214, 142, 69, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .framework-item:hover::before {
            opacity: 1;
        }

        .framework-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(96, 46, 158, 0.15);
            border-color: #d68e45;
        }

        .framework-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .framework-item:hover .framework-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .framework-icon.revenue { 
            background: linear-gradient(135deg, #602e9e, #7d4bb8);
            box-shadow: 0 5px 15px rgba(96, 46, 158, 0.3);
        }

        .framework-icon.excellence { 
            background: linear-gradient(135deg, #d68e45, #e8a557);
            box-shadow: 0 5px 15px rgba(214, 142, 69, 0.3);
        }

        .framework-icon.freedom { 
            background: linear-gradient(135deg, #602e9e, #7d4bb8);
            box-shadow: 0 5px 15px rgba(96, 46, 158, 0.3);
        }

        .framework-content {
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .framework-content h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #602e9e;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .framework-content p {
            color: #5d4a7a;
            margin: 0;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f8f5fc;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #602e9e, #d68e45);
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #d68e45, #602e9e);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-cta-primary,
            .hero-cta-secondary {
                width: 100%;
                text-align: center;
            }

            .section-header h2,
            .section-title h2 {
                font-size: 2.5rem;
            }

            .cta h2 {
                font-size: 2.5rem;
            }

            .service-card {
                padding: 40px 30px;
            }

            .problem-card,
            .solution-card {
                padding: 20px 30px;
            }

            .framework-item {
                padding: 20px;
                gap: 15px;
            }

            .framework-icon {
                width: 50px;
                height: 50px;
            }

            .framework-content h4 {
                font-size: 1.2rem;
            }

            .framework-content p {
                font-size: 0.95rem;
            }
        }
    
.btn-cta {
    background: var(--gradient-main);
    color: #fff;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 6px 18px rgba(96, 46, 158, 0.25);
    border: none;
    font-weight: 600;
    transition: all 0.3s 
ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}
 .btn-cta::before, .hero-cta-primary::before, .cta-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }
    .btn-cta:hover::before, .hero-cta-primary:hover::before, .cta-button:hover::before {
      width: 300px;
      height: 300px;
    }
    .btn-cta:hover, .hero-cta-primary:hover, .cta-button:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(96, 46, 158, 0.35);
      color: #fff;
      background: var(--gradient-reverse);
    }
    .btn-cta i {
      margin-right: 0.5rem;
    }