    /* Override main background */
    main {
        background: transparent;
    }

    /* ==================== FORM SCREEN ==================== */
    .form-screen {
        min-height: calc(100vh - 77px);
        background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        position: relative;
        overflow: hidden;
    }

    .bg-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.1;
        background: white;
    }

    .bg-shape-1 {
        width: 400px;
        height: 400px;
        top: -100px;
        left: -100px;
        animation: float 8s ease-in-out infinite;
    }

    .bg-shape-2 {
        width: 300px;
        height: 300px;
        bottom: -50px;
        right: -50px;
        animation: float 6s ease-in-out infinite reverse;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    /* Main Layout */
    .form-layout {
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 1100px;
        width: 100%;
        position: relative;
        z-index: 5;
    }

    /* Character Section */
    .character-section {
        flex: 0 0 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .character-container {
        position: relative;
        width: 280px;
        height: 340px;
    }

    .robot {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Robot Body - Friendly & Round */
    .robot-body {
        width: 140px;
        height: 160px;
        background: linear-gradient(180deg, #E1BEE7 0%, #CE93D8 100%);
        border-radius: 70px 70px 50px 50px;
        position: relative;
        box-shadow: 0 20px 50px rgba(156, 39, 176, 0.3);
        border: 4px solid #BA68C8;
    }

    /* Chest Light - Car Icon */
    .robot-chest {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #9C27B0, #8E24AA);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 25px rgba(156, 39, 176, 0.5);
        animation: chestPulse 1.5s ease-in-out infinite;
    }

    .robot-chest svg {
        width: 24px;
        height: 24px;
        stroke: white;
        stroke-width: 2;
    }

    .robot-chest::before {
        display: none;
    }

    .robot-chest::after {
        display: none;
    }

    @keyframes chestPulse {
        0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 25px rgba(249, 115, 22, 0.5); }
        50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 35px rgba(249, 115, 22, 0.7); }
    }

    /* Robot Head - Cute & Round */
    .robot-head {
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 130px;
        height: 110px;
        background: linear-gradient(180deg, #E1BEE7 0%, #CE93D8 100%);
        border-radius: 65px 65px 50px 50px;
        border: 4px solid #BA68C8;
        box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
        z-index: 5;
    }

    /* Robot Ears */
    .robot-head::before,
    .robot-head::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 30px;
        background: linear-gradient(180deg, #CE93D8, #BA68C8);
        border-radius: 10px;
        top: 30px;
    }

    .robot-head::before {
        left: -14px;
        border: 3px solid #90CAF9;
    }

    .robot-head::after {
        right: -14px;
        border: 3px solid #90CAF9;
    }

    /* Robot Antenna - Cute */
    .robot-antenna {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 15px;
        background: #BA68C8;
        border-radius: 3px;
    }

    .robot-antenna::after {
        content: "";
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 18px;
        background: linear-gradient(135deg, #CE93D8, #AB47BC);
        border-radius: 50%;
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
        animation: antennaBlink 2s ease-in-out infinite;
    }

    @keyframes antennaBlink {
        0%, 100% { box-shadow: 0 0 15px rgba(251, 191, 36, 0.6); transform: translateX(-50%) scale(1); }
        50% { box-shadow: 0 0 25px rgba(251, 191, 36, 0.9); transform: translateX(-50%) scale(1.1); }
    }

    /* Robot Eyes - Big & Cute */
    .robot-eyes {
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
    }

    .robot-eye {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        border: 3px solid #6366f1;
        box-shadow: inset 0 3px 8px rgba(0,0,0,0.1);
    }

    .robot-pupil {
        width: 22px;
        height: 22px;
        background: linear-gradient(135deg, #1e293b, #334155);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease-out;
    }

    .robot-pupil::after {
        content: "";
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        position: absolute;
        top: 3px;
        right: 3px;
    }

    /* Blush */
    .robot-blush {
        position: absolute;
        width: 22px;
        height: 10px;
        background: rgba(251, 113, 133, 0.5);
        border-radius: 50%;
        top: 70px;
    }

    .robot-blush.left { left: 15px; }
    .robot-blush.right { right: 15px; }

    /* Robot Mouth - Smile */
    .robot-mouth {
        position: absolute;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 20px;
        background: transparent;
        border: none;
        overflow: visible;
        display: block;
        padding: 0;
    }

    .robot-mouth::before {
        content: "";
        position: absolute;
        width: 40px;
        height: 20px;
        border: 4px solid #6366f1;
        border-color: transparent transparent #6366f1 transparent;
        border-radius: 0 0 40px 40px;
        top: 0;
        left: 0;
    }

    .mouth-bar {
        display: none;
    }

    /* Robot Arms with Shoulder Pivot Points */
    .robot-arms {
        position: absolute;
        top: 10px;
        width: 100%;
        z-index: 10;
    }

    /* Shoulder - Gizli omuz noktası (pivot point) */
    .robot-shoulder {
        position: absolute;
        top: 0;
        width: 10px;
        height: 10px;
        /* İsterseniz görünür yapmak için: background: red; border-radius: 50%; */
    }

    .robot-shoulder.left {
        left: 10px;
    }

    .robot-shoulder.right {
        right: 10px;
    }

    /* Robot Arm - Omuz noktasından başlar */
    .robot-arm {
        position: absolute;
        width: 28px;
        height: 100px;
        background: linear-gradient(180deg, #BBDEFB 0%, #90CAF9 100%);
        border-radius: 14px;
        transform-origin: top center;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 3px solid #90CAF9;
        left: 50%;
        margin-left: -14px; /* Ortala (width/2) */
    }

    /* Sol kol - Omuzdan aşağı sarkar (normal pozisyon) */
    .robot-arm.left {
        top: 0;
        transform: rotate(15deg);
    }

    /* Sağ kol - Normal pozisyon: Omuzdan aşağı sarkar */
    .robot-arm.right {
        top: 0;
        transform: rotate(-15deg);
    }

    /* Robot Hands - Cute Round */
    .robot-hand {
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 34px;
        height: 34px;
        background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
        border-radius: 50%;
        border: 3px solid #CE93D8;
        z-index: 25; /* Ellerin her zaman en üstte olması için */
    }

    .robot-hand::after {
        display: none;
    }

    /* Sol el - Hafif sola */
    .robot-hand.left {
        left: 45%;
    }

    /* Sağ el - Hafif sağa */
    .robot-hand.right {
        left: 55%;
    }

    /* Robot Legs - Cute & Rounded */
    .robot-legs {
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 18px;
        z-index: 5;
    }

    .robot-leg {
        width: 32px;
        height: 50px;
        background: linear-gradient(180deg, #BBDEFB 0%, #90CAF9 100%);
        border-radius: 16px 16px 20px 20px;
        border: 3px solid #90CAF9;
        position: relative;
    }

    .robot-leg::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 20px;
        background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
        border-radius: 50% 50% 45% 45%;
        border: 3px solid #CE93D8;
    }

    /* Covering Eyes Animation - 180 derece çevir, eller gözlere gelir */
    .robot-arm {
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Sol kol covering - Normal pozisyondan 180 derece çevir */
    .robot-arm.left.covering {
        transform: rotate(195deg); /* 15deg + 180deg */
        z-index: 30;
    }

    /* Sağ kol covering - Normal pozisyondan 180 derece çevir */
    .robot-arm.right.covering {
        transform: rotate(165deg); /* -15deg + 180deg */
        z-index: 30;
    }

    /* Waving Animation - El yukarıda omuzdan sallanıyor */
    .robot-arm.right.waving {
        transform: rotate(-110deg); /* Başlangıç pozisyonu: yukarı kalkık */
        animation: robotWave 0.6s ease-in-out infinite alternate;
    }

    @keyframes robotWave {
        from { transform: rotate(-100deg); }
        to { transform: rotate(-120deg); }
    }

    /* Character Message */
    .char-message {
        background: linear-gradient(135deg, #1e293b, #334155);
        padding: 16px 24px;
        border-radius: 16px;
        margin-top: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        position: relative;
        text-align: center;
        max-width: 260px;
        border: 2px solid #475569;
    }

    .char-message::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #475569;
    }

    .char-message::after {
        content: "";
        position: absolute;
        top: -9px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #1e293b;
    }

    .char-message p {
        font-size: 14px;
        color: #e2e8f0;
        font-weight: 600;
        margin: 0;
    }

    .char-message span {
        color: #CE93D8;
    }

    /* Form Container - Compact */
    .form-container {
        background: white;
        border-radius: 20px;
        padding: 28px 32px;
        flex: 1;
        max-width: 560px;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    }

    .form-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .form-logo {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #8E24AA, #7B1FA2);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
    }

    .form-logo svg {
        width: 26px;
        height: 26px;
        color: white;
    }

    .form-header h1 {
        font-size: 20px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 4px;
    }

    .form-header p {
        font-size: 13px;
        color: var(--gray-500);
    }

    /* Steps indicator - Compact */
    .form-steps {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-bottom: 18px;
    }

    .step-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gray-200);
        transition: all 0.3s;
    }

    .step-dot.active {
        background: #8E24AA;
        width: 28px;
        border-radius: 4px;
    }

    .step-dot.completed {
        background: var(--success);
    }

    /* Form Sections */
    .form-section {
        display: none;
    }

    .form-section.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .section-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .section-title svg {
        width: 18px;
        height: 18px;
        color: #8E24AA;
    }

    .section-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
        margin: 16px 0;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 5px;
    }

    .form-group label .required {
        color: var(--danger);
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px 14px;
        border: 2px solid var(--gray-200);
        border-radius: 10px;
        font-size: 14px;
        font-family: inherit;
        transition: all 0.3s;
        background: var(--gray-50);
    }

    .form-group input::placeholder {
        color: var(--gray-400);
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #8E24AA;
        background: white;
        box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
    }

    .form-group input.error,
    .form-group select.error {
        border-color: var(--danger);
    }

    .error-message {
        font-size: 11px;
        color: var(--danger);
        margin-top: 4px;
        display: none;
    }

    .form-group.has-error .error-message {
        display: block;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Radio Group */
    .radio-group {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
    }

    .radio-option {
        flex: 1;
        position: relative;
    }

    .radio-option input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .radio-option label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 14px;
        background: var(--gray-50);
        border: 2px solid var(--gray-200);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }

    .radio-option input:checked + label {
        border-color: #8E24AA;
        background: rgba(156, 39, 176, 0.1);
        color: #8E24AA;
    }

    .radio-option label svg {
        width: 16px;
        height: 16px;
    }

    /* Checkbox Group */
    .checkbox-group {
        margin-bottom: 16px;
    }

    .checkbox-option {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    .checkbox-option input {
        width: 20px;
        height: 20px;
        margin-top: 2px;
        accent-color: #8E24AA;
        cursor: pointer;
    }

    .checkbox-option label {
        font-size: 13px;
        color: var(--gray-600);
        cursor: pointer;
        line-height: 1.5;
    }

    .checkbox-option label a {
        color: #8E24AA;
        text-decoration: underline;
    }

    /* Buttons */
    .btn-row {
        display: flex;
        gap: 12px;
        margin-top: 24px;
    }

    .btn-secondary {
        flex: 1;
        padding: 16px;
        background: var(--gray-100);
        color: var(--gray-600);
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-family: inherit;
    }

    .btn-secondary:hover {
        background: var(--gray-200);
    }

    .btn-primary {
        flex: 2;
        padding: 16px;
        background: linear-gradient(135deg, #9C27B0, #8E24AA);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: inherit;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
    }

    .btn-primary svg {
        width: 20px;
        height: 20px;
    }

    .submit-btn {
        flex: 1;
        padding: 16px;
        background: linear-gradient(135deg, var(--success), #34d399);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: inherit;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    }

    .submit-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Privacy Note */
    .privacy-note {
        text-align: center;
        margin-top: 20px;
        font-size: 12px;
        color: var(--gray-400);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .privacy-note svg {
        width: 14px;
        height: 14px;
    }

    /* Info Box */
    .info-box {
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(33, 150, 243, 0.1));
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 12px;
        padding: 14px 16px;
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .info-box svg {
        width: 20px;
        height: 20px;
        color: #8E24AA;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .info-box p {
        font-size: 13px;
        color: var(--gray-600);
        line-height: 1.5;
    }

    /* Extra Info Toggle (Detaylı Fiyat Bölümü) */
    .extra-info-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: var(--gray-50);
        border: 2px solid var(--gray-200);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 20px;
    }

    .extra-info-toggle:hover {
        border-color: #8E24AA;
        background: rgba(156, 39, 176, 0.05);
    }

    .extra-info-toggle.active {
        border-color: #8E24AA;
        background: rgba(156, 39, 176, 0.05);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }

    .toggle-left {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
    }

    .toggle-left svg {
        width: 18px;
        height: 18px;
        color: #8E24AA;
    }

    .toggle-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .toggle-badge {
        padding: 4px 10px;
        background: var(--gray-200);
        border-radius: 6px;
        font-size: 11px;
        font-weight: 600;
        color: var(--gray-500);
    }

    .toggle-arrow {
        width: 18px;
        height: 18px;
        color: var(--gray-400);
        transition: transform 0.3s;
    }

    .extra-info-toggle.active .toggle-arrow {
        transform: rotate(180deg);
    }

    .extra-info-content {
        display: none;
        padding: 20px 16px;
        background: rgba(156, 39, 176, 0.03);
        border: 2px solid #1976D2;
        border-top: none;
        border-radius: 0 0 12px 12px;
        animation: slideDown 0.3s ease;
    }

    .extra-info-content.show {
        display: block;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ==================== LOADING SCREEN ==================== */
    .loading-screen {
        display: none;
        min-height: calc(100vh - 77px);
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        padding: 40px 20px;
    }

    .loading-screen.show {
        display: block;
    }

    .loading-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .loading-header h1 {
        font-size: clamp(22px, 4vw, 32px);
        font-weight: 800;
        color: white;
        margin-bottom: 8px;
    }

    .loading-header p {
        font-size: 15px;
        color: var(--gray-400);
    }

    .timer-section {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .timer-box {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 24px 48px;
        text-align: center;
    }

    .timer-value {
        font-size: 56px;
        font-weight: 800;
        color: white;
        line-height: 1;
        font-variant-numeric: tabular-nums;
    }

    .timer-label {
        font-size: 14px;
        color: var(--gray-400);
        margin-top: 4px;
    }

    .ai-status-bar {
        max-width: 600px;
        margin: 0 auto 30px;
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .ai-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #1976D2, #1976D2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: aiPulse 2s infinite;
    }

    @keyframes aiPulse {
        0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.4); }
        50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.8); }
    }

    .ai-icon svg {
        width: 24px;
        height: 24px;
        color: white;
    }

    .ai-text {
        flex: 1;
    }

    .ai-title {
        font-size: 14px;
        font-weight: 700;
        color: white;
        margin-bottom: 2px;
    }

    .ai-task {
        font-size: 13px;
        color: var(--gray-400);
    }

    /* Workers Animation */
    .workers-container {
        position: relative;
        height: 140px;
        max-width: 700px;
        margin: 0 auto 30px;
        background: rgba(255,255,255,0.03);
        border-radius: 16px;
        overflow: hidden;
    }

    .floating-paper {
        position: absolute;
        width: 20px;
        height: 26px;
        background: white;
        border-radius: 2px;
        opacity: 0;
    }

    .floating-paper::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 3px;
        right: 3px;
        height: 2px;
        background: #e2e8f0;
        box-shadow: 0 4px 0 #e2e8f0, 0 8px 0 #e2e8f0;
    }

    .floating-paper-1 { animation: floatPaper1 3s linear infinite; }
    .floating-paper-2 { animation: floatPaper2 3.5s linear infinite 0.5s; }
    .floating-paper-3 { animation: floatPaper3 4s linear infinite 1s; }

    @keyframes floatPaper1 {
        0% { left: 10%; top: 100%; transform: rotate(0deg); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { left: 30%; top: -20%; transform: rotate(360deg); opacity: 0; }
    }

    @keyframes floatPaper2 {
        0% { left: 50%; top: 100%; transform: rotate(0deg); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { left: 60%; top: -20%; transform: rotate(-360deg); opacity: 0; }
    }

    @keyframes floatPaper3 {
        0% { left: 80%; top: 100%; transform: rotate(0deg); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { left: 70%; top: -20%; transform: rotate(180deg); opacity: 0; }
    }

    .worker {
        position: absolute;
        bottom: 20px;
        width: 50px;
        height: 80px;
    }

    .worker-head {
        width: 28px;
        height: 28px;
        background: #fcd5ce;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .worker-body {
        width: 32px;
        height: 35px;
        border-radius: 8px 8px 4px 4px;
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
    }

    .worker-arm {
        width: 8px;
        height: 25px;
        border-radius: 4px;
        position: absolute;
        top: 28px;
        transform-origin: top center;
    }

    .worker-arm.left { left: 6px; }
    .worker-arm.right { right: 6px; }

    .worker-legs {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 4px;
    }

    .worker-leg {
        width: 10px;
        height: 22px;
        background: #1e293b;
        border-radius: 4px;
        transform-origin: top center;
    }

    .worker-1 { animation: runRight 3s linear infinite; }
    .worker-1 .worker-body, .worker-1 .worker-arm { background: #6366f1; }
    .worker-1 .worker-arm.left { animation: armRun 0.3s infinite; }
    .worker-1 .worker-arm.right { animation: armRun 0.3s infinite reverse; }
    .worker-1 .worker-leg:first-child { animation: legRun 0.3s infinite; }
    .worker-1 .worker-leg:last-child { animation: legRun 0.3s infinite reverse; }

    @keyframes runRight {
        0% { left: -60px; }
        100% { left: 100%; }
    }

    .worker-2 { animation: runLeft 4s linear infinite; }
    .worker-2 .worker-body, .worker-2 .worker-arm { background: #10b981; }
    .worker-2 .worker-arm.left { animation: armRun 0.35s infinite; }
    .worker-2 .worker-arm.right { animation: armRun 0.35s infinite reverse; }
    .worker-2 .worker-leg:first-child { animation: legRun 0.35s infinite; }
    .worker-2 .worker-leg:last-child { animation: legRun 0.35s infinite reverse; }

    @keyframes runLeft {
        0% { right: -60px; left: auto; }
        100% { right: 100%; left: auto; }
    }

    .worker-3 {
        left: 50%;
        transform: translateX(-50%);
    }
    .worker-3 .worker-body, .worker-3 .worker-arm { background: #42A5F5; }
    .worker-3 .worker-arm.left { animation: typing 0.25s infinite; }
    .worker-3 .worker-arm.right { animation: typing 0.25s infinite 0.125s; }

    @keyframes armRun {
        0%, 100% { transform: rotate(-25deg); }
        50% { transform: rotate(25deg); }
    }

    @keyframes legRun {
        0%, 100% { transform: rotate(-20deg); }
        50% { transform: rotate(20deg); }
    }

    @keyframes typing {
        0%, 100% { transform: rotate(-15deg); }
        50% { transform: rotate(15deg); }
    }

    .worker-4 { animation: panic 2s linear infinite; }
    .worker-4 .worker-body, .worker-4 .worker-arm { background: #ef4444; }
    .worker-4 .worker-arm { animation: armPanic 0.15s infinite; }
    .worker-4 .worker-leg:first-child { animation: legRun 0.2s infinite; }
    .worker-4 .worker-leg:last-child { animation: legRun 0.2s infinite reverse; }

    .sweat-drop {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 6px;
        height: 10px;
        background: #38bdf8;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        animation: sweat 0.8s infinite;
    }

    @keyframes panic {
        0% { left: 80%; }
        25% { left: 20%; }
        50% { left: 20%; transform: translateX(-50%) scaleX(-1); }
        75% { left: 80%; transform: translateX(-50%) scaleX(-1); }
        100% { left: 80%; transform: translateX(-50%) scaleX(1); }
    }

    @keyframes armPanic {
        0%, 100% { transform: rotate(-40deg); }
        50% { transform: rotate(40deg); }
    }

    @keyframes sweat {
        0% { opacity: 0; transform: translateY(0); }
        50% { opacity: 1; }
        100% { opacity: 0; transform: translateY(20px); }
    }

    .desk-surface {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 25px;
        background: linear-gradient(180deg, #64748b, #475569);
        border-radius: 4px 4px 0 0;
    }

    /* Live Offers */
    .live-offers-section {
        max-width: 700px;
        margin: 0 auto;
    }

    .live-offers-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .live-offers-title {
        font-size: 16px;
        font-weight: 700;
        color: white;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .live-dot {
        width: 8px;
        height: 8px;
        background: #ef4444;
        border-radius: 50%;
        animation: liveBlink 1s infinite;
    }

    @keyframes liveBlink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
    }

    .offers-count {
        font-size: 13px;
        color: var(--gray-400);
    }

    .live-offers-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: 400px;
        overflow-y: auto;
    }

    .live-offer {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 14px;
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 14px;
        animation: offerSlideIn 0.5s ease;
    }

    .live-offer.best {
        border: 2px solid var(--success);
        background: rgba(16, 185, 129, 0.1);
    }

    @keyframes offerSlideIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .offer-logo {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 10px;
        color: white;
        flex-shrink: 0;
        background: rgba(255,255,255,0.1);
        overflow: hidden;
    }

    .offer-logo img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        border-radius: 8px;
    }

    .offer-logo .logo-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #6366f1, #2196F3);
        font-weight: 800;
        font-size: 14px;
        color: white;
    }

    .offer-info {
        flex: 1;
    }

    .offer-name {
        font-size: 15px;
        font-weight: 700;
        color: white;
        margin-bottom: 3px;
    }

    .offer-meta {
        font-size: 12px;
        color: var(--gray-400);
    }

    .offer-price {
        text-align: right;
    }

    .price-amount {
        font-size: 20px;
        font-weight: 800;
        color: white;
    }

    .live-offer.best .price-amount {
        color: var(--success);
    }

    .best-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 3px 8px;
        background: var(--success);
        border-radius: 6px;
        font-size: 10px;
        font-weight: 700;
        color: white;
        margin-top: 4px;
    }

    .price-tag {
        font-size: 11px;
        color: var(--gray-400);
    }

    .offer-placeholder {
        background: rgba(255,255,255,0.03);
        border: 1px dashed rgba(255,255,255,0.1);
        border-radius: 14px;
        padding: 20px;
        text-align: center;
        color: var(--gray-500);
        font-size: 14px;
    }

    .offer-placeholder .spinner {
        width: 24px;
        height: 24px;
        border: 3px solid rgba(255,255,255,0.1);
        border-top-color: #8E24AA;
        border-radius: 50%;
        margin: 0 auto 10px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* ==================== RESULTS SCREEN ==================== */
    .results-screen {
        display: none;
        min-height: calc(100vh - 77px);
        background: var(--gray-50);
    }

    .results-screen.show {
        display: block;
    }

    .success-hero {
        background: linear-gradient(135deg, #1976D2, #1976D2);
        padding: 40px 24px;
        text-align: center;
        color: white;
    }

    .success-icon {
        width: 56px;
        height: 56px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .success-icon svg {
        width: 28px;
        height: 28px;
    }

    .success-hero h2 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .success-hero p {
        font-size: 14px;
        opacity: 0.9;
    }

    .success-stats {
        display: flex;
        justify-content: center;
        gap: 32px;
        margin-top: 24px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-value {
        font-size: 24px;
        font-weight: 800;
    }

    .stat-label {
        font-size: 11px;
        opacity: 0.8;
    }

    /* Final Offers */
    .final-offers {
        max-width: 900px;
        margin: 0 auto;
        padding: 32px 24px;
    }

    .ai-summary {
        background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(142, 36, 170, 0.05));
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 24px;
        display: flex;
        gap: 16px;
    }

    .ai-summary-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1976D2, #1976D2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .ai-summary-icon svg {
        width: 22px;
        height: 22px;
        color: white;
    }

    .ai-summary-text {
        font-size: 14px;
        color: var(--gray-700);
        line-height: 1.6;
    }

    .ai-summary-text strong {
        color: #8E24AA;
    }

    .final-offer-card {
        background: white;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        padding: 20px;
        margin-bottom: 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 20px;
        transition: all 0.3s;
        position: relative;
    }

    .final-offer-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .final-offer-card.best {
        border: 2px solid var(--success);
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), transparent);
    }

    .final-company {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .final-logo {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 11px;
        color: white;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        overflow: hidden;
    }

    .final-logo img {
        width: 42px;
        height: 42px;
        object-fit: contain;
        border-radius: 8px;
    }

    .final-logo .logo-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #6366f1, #2196F3);
        font-weight: 800;
        font-size: 14px;
        color: white;
    }

    .final-details h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 4px;
    }

    .final-meta {
        font-size: 12px;
        color: var(--gray-500);
    }

    .final-tags {
        display: flex;
        gap: 6px;
        margin-top: 6px;
    }

    .final-tag {
        padding: 3px 8px;
        background: var(--gray-100);
        border-radius: 4px;
        font-size: 10px;
        font-weight: 600;
        color: var(--gray-600);
    }

    .final-price {
        text-align: right;
    }

    .final-price-value {
        font-size: 24px;
        font-weight: 800;
        color: var(--dark);
    }

    .final-offer-card.best .final-price-value {
        color: var(--success);
    }

    .final-price-diff {
        font-size: 11px;
        color: var(--gray-400);
    }

    .final-price-diff.saving {
        color: var(--success);
        font-weight: 600;
    }

    .final-actions {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .final-buy-btn {
        padding: 12px 20px;
        background: linear-gradient(135deg, #1976D2, #1976D2);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }

    .final-offer-card.best .final-buy-btn {
        background: linear-gradient(135deg, var(--success), #34d399);
    }

    .final-buy-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
    }

    .final-detail-btn {
        padding: 8px;
        background: transparent;
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        font-size: 12px;
        color: var(--gray-500);
        cursor: pointer;
        transition: all 0.2s;
    }

    .final-detail-btn:hover {
        border-color: #8E24AA;
        color: #8E24AA;
    }

    .ai-pick-tag {
        position: absolute;
        top: -10px;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 4px 10px;
        background: var(--success);
        border-radius: 6px;
        font-size: 10px;
        font-weight: 700;
        color: white;
    }

    /* Logo Colors */
    .logo-quick { background: linear-gradient(135deg, #1976D2, #1E88E5); }
    .logo-neova { background: linear-gradient(135deg, #10b981, #059669); }
    .logo-hdi { background: linear-gradient(135deg, #22c55e, #16a34a); }
    .logo-sompo { background: linear-gradient(135deg, #1976D2, #1565C0); }
    .logo-anadolu { background: linear-gradient(135deg, #3b82f6, #2563eb); }
    .logo-allianz { background: linear-gradient(135deg, #1d4ed8, #1e40af); }
    .logo-aksigorta { background: linear-gradient(135deg, #ef4444, #dc2626); }
    .logo-axa { background: linear-gradient(135deg, #1e3a8a, #1e40af); }
    .logo-mapfre { background: linear-gradient(135deg, #dc2626, #b91c1c); }
    .logo-zurich { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
    .logo-generali { background: linear-gradient(135deg, #b91c1c, #991b1b); }
    .logo-turknippon { background: linear-gradient(135deg, #e11d48, #be123c); }

    /* Responsive */
    @media (max-width: 1024px) {
        .form-layout {
            flex-direction: column;
            gap: 20px;
        }

        .character-section {
            flex: none;
            order: -1;
        }

        .character-container {
            width: 200px;
            height: 260px;
        }

        .robot-body {
            width: 120px;
            height: 140px;
        }

        .robot-head {
            width: 90px;
            height: 75px;
            top: -70px;
        }

        .robot-eye {
            width: 28px;
            height: 28px;
        }

        .robot-pupil {
            width: 14px;
            height: 14px;
        }

        .robot-arm {
            width: 22px;
            height: 90px;
        }

        .robot-hand {
            width: 28px;
            height: 28px;
        }

        .robot-chest {
            width: 45px;
            height: 45px;
        }

        .robot-leg {
            width: 28px;
            height: 45px;
        }

        .robot-leg::after {
            width: 35px;
            height: 18px;
        }

        .char-message {
            display: none;
        }

        .form-container {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .form-screen {
            padding: 15px;
        }

        .character-section {
            display: none;
        }

        .form-container {
            padding: 20px;
        }

        .form-header {
            margin-bottom: 16px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .radio-group {
            flex-direction: column;
        }

        .btn-row {
            flex-direction: column;
        }

        .btn-secondary, .btn-primary, .submit-btn {
            flex: none;
            width: 100%;
        }

        .timer-value {
            font-size: 42px;
        }

        .final-offer-card {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .final-company {
            flex-direction: column;
        }

        .final-price {
            text-align: center;
            padding: 12px 0;
            border-top: 1px solid var(--gray-100);
            border-bottom: 1px solid var(--gray-100);
        }

        .final-actions {
            flex-direction: row;
        }

        .final-buy-btn, .final-detail-btn {
            flex: 1;
        }

        .success-stats {
            gap: 20px;
        }
    }


    /* ==================== SYSTEM INFO CARDS ==================== */
    #systemInfoContainer {
        display: flex;
        flex-direction: column;
        gap: 8px;
        max-height: 200px;
        overflow-y: auto;
        margin-bottom: 16px;
        padding-right: 4px;
    }

    #systemInfoContainer::-webkit-scrollbar {
        width: 4px;
    }

    #systemInfoContainer::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        border-radius: 4px;
    }

    #systemInfoContainer::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 4px;
    }

    .system-info-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        border-radius: 10px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .system-info-card.tc {
        background: linear-gradient(135deg, rgba(34,197,94,0.3), rgba(22,163,74,0.3));
        border-left: 3px solid #22c55e;
    }

    .system-info-card.egm {
        background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(37,99,235,0.3));
        border-left: 3px solid #3b82f6;
    }

    .system-info-card.tramer {
        background: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(234,88,12,0.3));
        border-left: 3px solid #1976D2;
    }

    .system-info-card.query {
        background: linear-gradient(135deg, rgba(168,85,247,0.3), rgba(147,51,234,0.3));
        border-left: 3px solid #42A5F5;
    }

    .system-info-card.complete {
        background: linear-gradient(135deg, rgba(34,197,94,0.3), rgba(22,163,74,0.3));
        border-left: 3px solid #22c55e;
    }

    .system-info-card.info {
        background: rgba(255,255,255,0.1);
        border-left: 3px solid rgba(255,255,255,0.5);
    }

    .system-icon {
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .system-content {
        flex: 1;
        min-width: 0;
    }

    .system-title {
        display: block;
        font-weight: 600;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.9);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .system-message {
        display: block;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.8);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .system-status {
        font-size: 0.75rem;
        padding: 2px 8px;
        border-radius: 4px;
        background: rgba(255,255,255,0.2);
        color: rgba(255,255,255,0.9);
        flex-shrink: 0;
    }

    /* ==================== BUY BUTTON VARIANTS ==================== */
    .final-buy-btn.fast-buy {
        background: linear-gradient(135deg, #22c55e, #16a34a);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .final-buy-btn.fast-buy:hover {
        background: linear-gradient(135deg, #16a34a, #15803d);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(34,197,94,0.4);
    }

    .final-buy-btn.request-buy {
        background: linear-gradient(135deg, #8E24AA, #7B1FA2);
    }

    .final-buy-btn.request-buy:hover {
        background: linear-gradient(135deg, #1565C0, #c2410c);
    }

/* ============================================
   KARTLI SEÇİM TASARIMLARI (YENİ)
   ============================================ */

.card-select-group {
    margin-bottom: 20px;
}

.card-select-group .section-title {
    margin-bottom: 12px;
}

.section-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.card-options {
    display: grid;
    gap: 12px;
}

.card-options.two-cards {
    grid-template-columns: repeat(2, 1fr);
}

.card-options.three-cards {
    grid-template-columns: repeat(3, 1fr);
}

/* Radio input gizle */
.card-options input[type="radio"] {
    display: none;
}

/* Kart tasarımı */
.card-option {
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: block;
}

.card-option:hover {
    border-color: #2196F3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

/* Seçili kart */
.card-options input[type="radio"]:checked + .card-option {
    border-color: #2196F3;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    position: relative;
}

/* Seçili kart için checkmark */
.card-options input[type="radio"]:checked + .card-option::after {
    content: "✓";
    position: absolute;
    top: 6px;
    right: 6px;
    background: #2196F3;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Kart içeriği */
.card-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.card-desc {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .card-options.two-cards,
    .card-options.three-cards {
        grid-template-columns: 1fr;
    }

    .card-option {
        padding: 10px 14px;
    }

    .card-icon {
        font-size: 22px;
    }
}
