/* === Why section — .why-section, .why-* === */
        .why-section {
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .why-visual {
            position: relative;
        }

        .why-image {
            width: 100%;
            border-radius: var(--radius-xl);
            border: 1px solid var(--dark-border);
            box-shadow: 0 25px 80px rgba(0,0,0,0.5);
        }

        .why-features-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .why-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .why-check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--success);
            font-size: 0.75rem;
        }

        .why-item-text h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .why-item-text p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

