.why-choose-macos {
    background: transparent;
    padding: 80px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.why-choose-macos .header {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-macos h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.why-choose-macos p {
    font-size: 17px;
    color: #6b7280;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

/* Card */
.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.1);
}

/* Float animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Icon */
.icon-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    background: linear-gradient(145deg, #eef4ff, #d2e1ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.icon-circle img {
    width: 72px;
    height: 72px;
}

.icon-circle.glow::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

/* Titles */
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.feature-card {
    /* ... інші стилі залишаються ... */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.platform-activity {
    padding: 40px 0; /* Було наприклад 100px або більше */
}

.platform-activity {
    padding-top: 40px;
    padding-bottom: 40px;
}

.navbar .btn {
    max-width: 100%;
    white-space: nowrap;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    /* Зменшуємо шрифт і відступи в меню */
    #mainMenu .nav-link {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Трохи менші кнопки */
    .auth-buttons .btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    /* При потребі — трохи менший розмір іконки */
    .auth-buttons .btn i {
        font-size: 15px;
    }

    /* Вирівнюємо по центру */
    .auth-buttons {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1350px) {
    /* Менше відступів у меню */
    .navbar-nav > li {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    /* Менший шрифт меню */
    .navbar-nav > li > a {
        font-size: 14px !important;
    }

    /* Трохи зменшити шрифт кнопок */
    .auth-buttons .btn .text {
        font-size: 14px !important;
    }

    /* Менше padding у кнопках */
    .auth-buttons .btn {
        padding: 6px 12px !important;
    }

    /* Трохи стискаємо весь header */
    .navbar .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Уникнути переносу кнопок */
    .auth-buttons {
        flex-wrap: nowrap;
    }

    .auth-buttons .btn {
        white-space: nowrap;
    }
}
