.why {
    padding: 72px;
    /* background: linear-gradient(135deg, #05060a 0%, #0a0d14 50%, #06080c 100%); */
    /* background: linear-gradient(135deg, #050a0e 50%, #422200 100%); */

    border-radius: 24px;
    /* margin: 0; */
    & a {
        max-width: max-content;
    }
}

/* intro */
.why__intro {
    text-align: center;
    margin-bottom: 48px;
}
.why__intro h2 {
    color: #e8f4ff;
    font-size: 40px;
    margin-bottom: 12px;
}
.why__intro p {
    color: var(--gray);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
}

/* timeline */
.why__timeline {
    margin-bottom: 52px;
    position: relative;
}
.why__timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(100, 174, 231, 0.2), transparent);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
}
.timeline-item:nth-child(odd) {
    flex-direction: row;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-marker {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #64aee7, #4a9dd9);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2px;
    border: 3px solid #05060a;
    box-shadow: 0 0 12px rgba(100, 174, 231, 0.3);
}
.timeline-content {
    width: calc(50% - 28px);
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(100, 174, 231, 0.08);
    border-radius: 10px;
}
.timeline-content h3 {
    color: #d0efff;
    font-size: 15px;
    margin: 0 0 6px;
}
.timeline-content p {
    color: var(--gray);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* trust grid */
.why__trust {
    margin-bottom: 52px;
    text-align: center;
}
.why__trust h3 {
    color: #dff7ff;
    font-size: 28px;
    margin-bottom: 28px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.trust-item {
    padding: 24px;
    background: linear-gradient(
        180deg,
        rgba(247, 182, 136, 0.1),
        rgb(255 64 7 / 10%)
    );
    border: 1px solid rgb(255 64 7 / 30%);
    border-radius: 12px;
}
.trust-stat {
    color: #ff6f2b;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
}
.trust-label {
    color: var(--gray);
    font-size: 13px;
    margin: 0;
}

/* comparison table */
.why__comparison {
    margin-bottom: 48px;
    overflow-x: auto;
}
.why__comparison h3 {
    color: #ff6f2b;
    font-size: 28px;
    margin-bottom: 24px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(100, 174, 231, 0.08);
    border-radius: 10px;
    overflow: hidden;
}
.comparison-table thead {
    background: rgba(100, 174, 231, 0.05);
}
.comparison-table th {
    color: #c0e6ff;
    padding: 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(100, 174, 231, 0.08);
}
.comparison-table td {
    padding: 14px 16px;
    color: var(--gray);
    font-size: 13px;
    border-bottom: 1px solid rgba(100, 174, 231, 0.03);
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.comparison-table td strong {
    color: #d0efff;
}
.check {
    color: #50d77a !important;
    font-weight: 700;
}
.cross {
    color: #e85d5d !important;
    font-weight: 700;
}
.partial {
    color: #f0ad4e !important;
    font-weight: 700;
}

/* badges */
.why__badges {
    text-align: center;
    margin-bottom: 44px;
}
.why__badges p {
    color: #ff7f2b;
    font-size: 14px;
    margin-bottom: 16px;
}
.badges-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.badge {
    padding: 8px 16px;
    background: #ff7f2b;
    /* border: 1px solid rgba(100, 174, 231, 0.15); */
    border-radius: 20px;
    color: white;
    font-size: 12px;
}

/* final cta */
.why__final {
    text-align: center;
}
.why__final h3 {
    color: #ff6f2b;
    font-size: 28px;
    margin-bottom: 8px;
}
.why__final p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 18px;
}

/* responsive */
@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why__timeline::before {
        display: none;
    }
    .timeline-item {
        flex-direction: column !important;
    }
    .timeline-marker {
        left: 0;
    }
    .timeline-content {
        width: 100%;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .why {
        padding: 48px 0;
    }
    .why__intro h2 {
        font-size: 32px;
    }
    .why__intro p {
        font-size: 15px;
    }
    .why__intro {
        margin-bottom: 36px;
    }

    .timeline-item {
        margin-bottom: 24px;
    }
    .timeline-content {
        padding: 16px;
    }
    .timeline-content h3 {
        font-size: 14px;
    }

    .why__trust h3 {
        font-size: 24px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .trust-item {
        padding: 18px;
    }
    .trust-stat {
        font-size: 20px;
    }

    .why__comparison h3 {
        font-size: 24px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .badges-container {
        gap: 8px;
    }
    .badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .why__final h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .why {
        padding: 36px 0;
    }
    .why__intro h2 {
        font-size: 24px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
    .comparison-table {
        font-size: 11px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }

    .badges-container {
        flex-direction: column;
    }
    .badge {
        width: 100%;
    }
}
