/* ===================================
   LEAD MAGNET SECTION
   Gratis downloads voor email capture
   =================================== */

.lead-magnet {
    padding: var(--spacing-section) 0;
    background: var(--color-background);
}

.lead-magnet .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.lead-magnet .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--japandi-charcoal);
    margin-bottom: var(--spacing-sm);
}

.lead-magnet .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   LEAD MAGNETS GRID
   =================================== */

.lead-magnets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.lead-magnet-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.lead-magnet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.lead-magnet-card.audio-magnet {
    animation-delay: 0.1s;
}

.lead-magnet-card.checklist-magnet {
    animation-delay: 0.2s;
}

/* ===================================
   MAGNET BADGE (GRATIS)
   =================================== */

.magnet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-fuchsia) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.magnet-badge i {
    font-size: 1rem;
}

/* ===================================
   VISUAL ICONS
   =================================== */

.magnet-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    height: 120px;
}

.visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.25);
    position: relative;
    z-index: 2;
}

.visual-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Audio Waves Animation */
.audio-waves {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    right: 30%;
}

.audio-waves span {
    width: 4px;
    background: var(--primary-fuchsia);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.audio-waves span:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.audio-waves span:nth-child(2) {
    height: 35px;
    animation-delay: 0.15s;
}

.audio-waves span:nth-child(3) {
    height: 50px;
    animation-delay: 0.3s;
}

.audio-waves span:nth-child(4) {
    height: 35px;
    animation-delay: 0.45s;
}

.audio-waves span:nth-child(5) {
    height: 20px;
    animation-delay: 0.6s;
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Checklist Lines Animation */
.checklist-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    left: 30%;
}

.checklist-lines span {
    height: 3px;
    background: var(--primary-fuchsia);
    border-radius: 2px;
    animation: checklistGrow 1.5s ease-in-out infinite;
}

.checklist-lines span:nth-child(1) {
    width: 60px;
    animation-delay: 0s;
}

.checklist-lines span:nth-child(2) {
    width: 80px;
    animation-delay: 0.3s;
}

.checklist-lines span:nth-child(3) {
    width: 70px;
    animation-delay: 0.6s;
}

.checklist-lines span:nth-child(4) {
    width: 90px;
    animation-delay: 0.9s;
}

@keyframes checklistGrow {
    0%, 100% {
        transform: scaleX(0.7);
        opacity: 0.4;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* ===================================
   MAGNET CONTENT
   =================================== */

.magnet-content {
    margin-bottom: var(--spacing-lg);
}

.magnet-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #6B5D52;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.magnet-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

/* Benefits List */
.magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.magnet-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.magnet-benefits i {
    color: var(--primary-gold);
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Stats Row */
.magnet-stats {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(0, 71, 171, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 71, 171, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--japandi-charcoal);
}

.stat-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

/* ===================================
   DOWNLOAD FORM
   =================================== */

.magnet-form {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 71, 171, 0.1);
}

.form-intro {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--japandi-charcoal);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.download-form input[type="email"] {
    padding: 14px 18px;
    border: 2px solid var(--primary-fuchsia);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.download-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-fuchsia);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.download-form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-form .btn-primary {
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: white;
    border-radius: var(--radius-md);
}

.download-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.3);
}

.download-form .btn-primary:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.8125rem;
    color: #666;
    text-align: center;
    margin-top: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note i {
    color: var(--primary-gold);
}

/* ===================================
   VALUE PROPOSITION
   =================================== */

.lead-magnet-value {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-fuchsia) 0%, var(--primary-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--japandi-charcoal);
    margin-bottom: var(--spacing-sm);
}

.value-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

/* ===================================
   SUCCESS MESSAGE
   =================================== */

.download-success {
    background: white;
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

.download-success h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--japandi-charcoal);
    margin-bottom: var(--spacing-sm);
}

.download-success p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .lead-magnets-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lead-magnet .section-title {
        font-size: 2rem;
    }

    .lead-magnet .section-subtitle {
        font-size: 1rem;
    }

    .lead-magnet-card {
        padding: var(--spacing-lg);
    }

    .magnet-visual {
        height: 100px;
    }

    .visual-icon {
        width: 80px;
        height: 80px;
    }

    .visual-icon i {
        font-size: 2rem;
    }

    .audio-waves span {
        width: 3px;
    }

    .audio-waves span:nth-child(3) {
        height: 40px;
    }

    .magnet-content h3 {
        font-size: 1.5rem;
    }

    .magnet-stats {
        flex-direction: column;
        align-items: center;
    }

    .lead-magnet-value {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .lead-magnet {
        padding: var(--spacing-lg) 0;
    }

    .lead-magnets-grid {
        gap: var(--spacing-lg);
    }

    .magnet-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8125rem;
    }

    .download-form input[type="email"],
    .download-form .btn {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
