        :root {
            --bg-color: #F5F5F7;
            --accent-blue: #0071e3;
            /* Official soprolo Blue */
            --accent-hover: #0077ed;
            --glass: rgba(255, 255, 255, 0.72);
            --text-main: #1D1D1F;
            --text-sub: #86868b;
            --border: rgba(0, 0, 0, 0.1);
            --radius: 20px;
            /* soprolo-specific Easing */
            --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
            --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -soprolo-system, BlinkMacSystemFont, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            display: block;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            overflow-x: hidden;
            position: relative;
            scroll-behavior: smooth;
        }

        /* --- ENHANCED BACKGROUND ANIMATION --- */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: #fbfbfd;
            overflow: hidden;
            transform: translate3d(0, 0, 0);
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.5;
            mix-blend-mode: multiply;
            will-change: transform;
            animation: moveOrb 25s infinite alternate ease-in-out;
        }

        .blob-1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, #bcd6ff 0%, rgba(255, 255, 255, 0) 70%);
            top: -15%;
            left: -10%;
        }

        .blob-2 {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, #e0d7ff 0%, rgba(255, 255, 255, 0) 70%);
            bottom: -15%;
            right: -10%;
            animation-delay: -7s;
        }

        .blob-3 {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #d2f3ff 0%, rgba(255, 255, 255, 0) 70%);
            top: 35%;
            left: 25%;
            filter: blur(80px);
            animation: moveOrb 18s infinite alternate-reverse ease-in-out;
            animation-delay: -3s;
        }

        @keyframes moveOrb {
            0% {
                transform: translate3d(0, 0, 0) scale(1);
            }

            100% {
                transform: translate3d(100px, 50px, 0) scale(1.15);
            }
        }

        /* --- PAGE WRAPPER --- */
        .page-wrapper {
            max-width: 950px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            background: var(--glass);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); */
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px) scale(0.98);
            animation: soproloEntrance 0.8s var(--ease-out) forwards;
            position: relative;
            z-index: 1;
        }

        @keyframes soproloEntrance {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* --- PANELS --- */
        .card-left {
            padding: 40px;
            border-right: 1px solid var(--border);
            background: #fff;
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Soft glowing background blobs for light theme */
        .card-left::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -20%;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(0, 113, 227, 0.08) 0%, transparent 70%);
            filter: blur(60px);
            z-index: 0;
            animation: float 10s infinite alternate ease-in-out;
        }

        .card-left::after {
            content: '';
            position: absolute;
            bottom: -10%;
            right: -10%;
            width: 60%;
            height: 60%;
            background: radial-gradient(circle, rgba(94, 92, 230, 0.05) 0%, transparent 70%);
            filter: blur(50px);
            z-index: 0;
            animation: float 12s infinite alternate-reverse ease-in-out;
        }

        @keyframes float {
            from {
                transform: translate(0, 0);
            }

            to {
                transform: translate(30px, 40px);
            }
        }

        .card-left-content {
            position: relative;
            z-index: 1;
        }

        .card-left h1 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.05em;
            color: var(--text-main);
            background: none;
            -webkit-text-fill-color: initial;
            text-align: center;
        }

        .card-left p {
            color: var(--text-sub);
            font-size: 15px;
            line-height: 1.4;
            font-weight: 500;
            text-align: center;
        }

        .feedback-benefits {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #fbfbfd;
            padding: 15px;
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: 0.3s;
        }

        .benefit-item:hover {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #0071e3, #5e5ce6);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            box-shadow: 0 8px 20px rgba(0, 113, 227, 0.15);
            flex-shrink: 0;
        }

        .benefit-text {
            display: flex;
            flex-direction: column;
        }

        .benefit-text strong {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
        }

        .benefit-text span {
            font-size: 13px;
            color: var(--text-sub);
        }

        .support-stats {
            margin-top: 50px;
            display: flex;
            gap: 40px;
            padding: 25px;
            background: #f5f5f7;
            border-radius: 24px;
            border: 1px solid var(--border);
            text-align: center;
        }

        .stat-box {
            display: flex;
            flex-direction: column;
        }

        .stat-num {
            font-size: 23px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -1px;
        }

        .stat-label {
            font-size: 11px;
            color: var(--text-sub);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-panel {
            padding: 60px;
            position: relative;
            background: #fff;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
            color: var(--text-sub);
            padding-left: 2px;
        }

        input,
        textarea,
        .select-trigger {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s var(--ease-in-out);
            color: var(--text-main);
        }

        input:focus,
        textarea:focus {
            border-color: var(--accent-blue);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
        }

        textarea {
            resize: none;
            min-height: 120px;
        }

        /* --- CUSTOM SELECT SNAPPY --- */
        .custom-select {
            position: relative;
            cursor: pointer;
        }

        .select-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .select-trigger:hover {
            background: #fff;
        }

        .select-trigger::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 12px;
            color: var(--text-sub);
            transition: transform 0.4s var(--ease-out);
        }

        .custom-select.open .select-trigger::after {
            transform: rotate(180deg);
        }

        .options-list {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.95);
            transition: all 0.3s var(--ease-out);
            z-index: 100;
            padding: 8px;
        }

        .custom-select.open .options-list {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .option {
            padding: 12px 14px;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.2s;
        }

        .option:hover {
            background: var(--accent-blue);
            color: white;
            transform: scale(0.98);
        }

        .option:active {
            transform: scale(0.95);
        }

        /* --- BUTTONS & SUCCESS --- */
        .submit-btn {
            width: 100%;
            background: var(--accent-blue);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 14px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s var(--ease-out);
            will-change: transform;
        }

        .submit-btn:hover {
            background: var(--accent-hover);
            box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
        }

        .submit-btn:active {
            transform: scale(0.97);
        }

        .success-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 101;
            padding: 40px;
            border-radius: 0 var(--radius) var(--radius) 0;
            animation: soproloEntrance 0.6s var(--ease-out);
        }

        .tick-wrapper {
            width: 80px;
            height: 80px;
            margin-bottom: 24px;
        }

        .tick-svg {
            width: 100%;
            height: 100%;
        }

        .success-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-main);
            letter-spacing: -0.03em;
        }

        .success-text {
            color: var(--text-sub);
            font-size: 16px;
            line-height: 1.5;
            max-width: 320px;
            margin-bottom: 32px;
        }

        .home-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--text-main);
            color: white;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s var(--ease-out);
        }

        .home-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            background: #000;
        }

        /* --- TICK ANIMATION REDONE FOR SMOOTHNESS --- */
        .tick-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 25px;
        }

        .tick-circle {
            stroke-dasharray: 166;
            stroke-dashoffset: 166;
            stroke-width: 2;
            stroke: #22c55e;
            fill: none;
            animation: stroke-circle 0.8s var(--ease-in-out) forwards;
        }

        .tick-check {
            stroke-dasharray: 48;
            stroke-dashoffset: 48;
            stroke-width: 3;
            stroke: #22c55e;
            stroke-linecap: round;
            fill: none;
            animation: stroke-check 0.5s var(--ease-in-out) 0.5s forwards;
        }

        @keyframes stroke-circle {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes stroke-check {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 850px) {
            .page-wrapper {
                grid-template-columns: 1fr;
            }

            .card-left {
                border-right: none;
                border-top: 1px solid var(--border);
                order: 2;
                padding: 40px 30px;
            }

            .form-panel {
                order: 1;
                padding: 20px;
            }

            .success-overlay {
                border-radius: var(--radius);
            }

            body {
                margin-top: 80px;
            }

            main {
                padding: 5px 20px !important;
            }

            .support-stats {
                padding: 20px 15px;
            }
        }