* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background: #f8fafc; }
        .hero-gradient {
            background: linear-gradient(135deg, #0a1a3a 0%, #1e3a8a 50%, #2563eb 100%);
        }
        .gold-gradient {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);         
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.3);
        }
        .section-title {
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            border-radius: 2px;
        }
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .fear-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 40px 0;
        }

        .fear-card {
            background: white;
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .fear-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .fear-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.3);
        }

        .fear-card:hover:before {
            opacity: 1;
        }

        .fear-icon {
            font-size: 32px;
            color: #fbbf24 ;
            margin-bottom: 20px;
        }

        .fear-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .fear-card p {
            color: #5f6b7a;
            font-size: 16px;
        }

        /* 预约卡片自定义样式 - 融入蓝色主色调 */
        .booking-card {
            background: white;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(37, 99, 235, 0.1);
            max-width: 900px;
            margin: 0 auto;
        }

        .booking-title {
            font-size: 32px;
            font-weight: 700;
            color: #0a1a3a;
            margin-bottom: 12px;
        }

        .booking-title span {
            color: #2563eb;
        }

        .booking-sub {
            color: #5f6b7a;
            margin-bottom: 28px;
            font-size: 16px;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

        .benefit-item {
            background: #f8fafc;
            border-radius: 20px;
            padding: 20px 16px;
            border: 1px solid #e2e8f0;
        }

        .benefit-icon {
            width: 44px;
            height: 44px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .benefit-icon i {
            font-size: 22px;
            color: #2563eb;
        }

        .benefit-title {
            font-size: 16px;
            font-weight: 600;
            color: #0a1a3a;
            margin-bottom: 4px;
        }

        .benefit-desc {
            font-size: 13px;
            color: #64748b;
            line-height: 1.4;
        }

        .input-field {
            width: 100%;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 16px 20px;
            font-size: 15px;
            color: #0a1a3a;
            outline: none;
            transition: all 0.2s;
        }

        .input-field:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        .input-field::placeholder {
            color: #94a3b8;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #2563eb, #1e3a8a);
            border: none;
            border-radius: 20px;
            padding: 18px 24px;
            font-size: 18px;
            font-weight: 600;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.2s;
            margin: 24px 0 20px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.4);
        }

        .trust-badge {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: #f8fafc;
            border-radius: 40px;
            border: 1px solid #e2e8f0;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #475569;
            font-size: 14px;
            font-weight: 500;
        }

        .badge-item i {
            color: #2563eb;
            font-size: 16px;
        }

        .badge-divider {
            width: 1px;
            height: 20px;
            background: #e2e8f0;
        }

        #toastMessage {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: #0a1a3a;
            color: white;
            padding: 16px 32px;
            border-radius: 60px;
            font-weight: 500;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            display: none;
            align-items: center;
            gap: 12px;
            z-index: 1000;
            border: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 640px) {
            .booking-card {
                padding: 30px 20px;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                display:none;
            }
            
            .trust-badge {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
                display:none;
            }
            
            .badge-divider {
                display: none;
            }
            
            .fear-cards {
                grid-template-columns: 1fr;
            }
        }