:root {
            --primary: #009669;
            --primary-dark: #065f46;
            --primary-light: #d1fae5;
            --text-dark: #0f172a;
            --text-light: #64748b;
            --bg-light: #ffffff;
            --bg-gray: #f8fafc;
            --white: #ffffff;
            --radius-lg: 32px;
            --radius-md: 20px;
            --radius-sm: 12px;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* --- Scroll Reveal Animations --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 100px 0;
        }

        /* --- Simple Process Section --- */
        .process-section {
            text-align: center;
            background-color: #fff;
        }

        .pill-badge {
            background-color: #fefce8;
            color: #854d0e;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .pill-badge:hover {
            transform: scale(1.05);
            letter-spacing: 1.5px;
        }

        .pill-badge.green {
            background-color: var(--primary-light);
            color: var(--primary-dark);
        }

        .process-section h2 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            color: #111;
            letter-spacing: -1.5px;
        }

        .highlight-steps {
            background-color: #111827;
            color: #ecfeff;
            padding: 0 12px;
            border-radius: 12px;
            display: inline-block;
            transform: rotate(-1deg);
            transition: var(--transition);
        }

        .highlight-steps:hover {
            transform: rotate(0deg) scale(1.05);
            background-color: var(--primary-dark);
        }

        .highlight-steps span {
            color: #fde047;
        }

        .highlight-steps span.green-theme {
            color: #03ff9d;
        }

        .process-section p.sub-desc {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 80px;
            font-size: 18px;
            line-height: 1.6;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 15%;
            right: 15%;
            height: 2px;
            border-top: 2px dashed #e2e8f0;
            z-index: 1;
        }

        .step-item {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: var(--transition);
        }

        .step-item:hover {
            transform: translateY(-10px);
        }

        .step-icon-wrap {
            width: 100px;
            height: 100px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            margin-bottom: 32px;
            position: relative;
            transition: var(--transition);
        }

        .step-item:hover .step-icon-wrap {
            box-shadow: var(--shadow-lg);
            background: var(--primary-light);
            color: var(--primary);
        }

        .step-number {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #fde047;
            color: #111;
            width: 32px;
            height: 20px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .step-item:hover .step-number {
            transform: scale(1.2) rotate(5deg);
        }

        .step-number.green-theme {
            background: var(--primary);
            color: #fff;
        }

        .step-item h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #000;
            transition: var(--transition);
        }

        .step-item:hover h3 {
            color: var(--primary);
        }

        .step-item p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
            max-width: 280px;
        }

        /* --- Trust Section --- */
        .trust-section {
            background-color: #f8fafc;
            padding: 80px 0;
        }

        .trust-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .trust-title h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .trust-title p {
            color: var(--text-light);
            font-size: 18px;
        }

        .satisfaction-rate {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--text-dark);
            background: #fff;
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: var(--shadow);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .check-circle {
            width: 24px;
            height: 24px;
            background: #00b884;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .trust-card {
            background: #fff;
            padding: 48px;
            border-radius: var(--radius-lg);
            transition: var(--transition);
            border: 2px solid transparent;
            box-shadow: var(--shadow-sm);
        }

        .trust-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .trust-icon-box {
            width: 56px;
            height: 56px;
            background: #f8fafc;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #000;
            transition: var(--transition);
        }

        .trust-card:hover .trust-icon-box {
            background: var(--primary);
            color: #fff;
            transform: rotate(10deg) scale(1.1);
        }

        .trust-card h4 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .trust-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.6;
        }

        /* --- Testimonials Section --- */
        .testimonials-section {
            text-align: center;
            background: #fff;
        }

        .testimonials-section h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1.5px;
        }

        .testimonials-section p.sub {
            color: var(--text-light);
            font-size: 18px;
            max-width: 500px;
            margin: 0 auto 80px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            text-align: left;
        }

        .testimonial-card {
            background: #fff;
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 1px solid #f1f5f9;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .testimonial-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .rating-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 24px;
            color: #facc15;
            transition: var(--transition);
        }

        .testimonial-card:hover .rating-stars {
            transform: scale(1.1);
        }

        .testimonial-text {
            font-size: 17px;
            color: #334155;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 32px;
            position: relative;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .user-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            background: #f1f5f9;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .testimonial-card:hover .user-avatar {
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .user-details h5 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 2px;
        }

        .user-details span {
            font-size: 13px;
            color: var(--text-light);
        }


        /* Responsive */
        @media (max-width: 992px) {

            .steps-grid,
            .trust-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .steps-grid::before {
                display: none;
            }


            .process-section h2 {
                font-size: 40px;
            }

            .trust-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
        }