/* Guarantee Section */
.guarantee-section {
    background: #fafbfc;
    padding: 60px 40px;
}

.split-container {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.left-side h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.left-side h3 .second-line {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.left-side h3 .second-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent-gradient);
    border-radius: 2px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-badge-bg);
    color: var(--color-badge-text);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(55, 100, 229, 0.18);
}

.guarantee-badge .gradient-text {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.left-side p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.right-side {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.right-side h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.right-side .step {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #6b7280;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
}

.right-side .step:last-of-type {
    margin-bottom: 12px;
}

.right-side .step strong {
    color: #6b7280;
    font-weight: 400;
    min-width: 16px;
    flex-shrink: 0;
}

.right-side .disclaimer {
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
    line-height: 1.3;
}

/* Mobile */
@media (max-width: 768px) {
    .guarantee-section {
        padding: 60px 20px;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .left-side h3 {
        font-size: 1.875rem;
    }

    .right-side {
        padding: 32px 24px;
    }
}