@media (max-width: 768px) {



    /* Header & Mobile Menu */
    .header .container {
        position: relative;
    }

    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
        padding: 5px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 1.1rem;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    /* Hero */

    .hero {
        padding: 100px 0 50px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-visual {
        display: none;
    }

    /* Ranking Table to Cards */

    .ranking {
        padding: 30px 0 0 0;
        background: linear-gradient(180deg, var(--bg-dark) 0%, #151525 100%);
    }


    .ranking-table-wrapper {
        border: none;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        margin-top: 30px;
    }

    .ranking-table thead {
        display: none;
    }

    .ranking-table,
    .ranking-table tbody,
    .ranking-table tr,
    .ranking-table td {
        display: block;
        width: 100%;
    }

    .ranking-table tr {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 20px;
        position: relative;
    }

    .ranking-table tr:nth-child(2) {
        margin-bottom: 50px;
    }

    .ranking-table td {
        border: none !important;
        padding: 10px 0 !important;
        height: auto !important;
        text-align: center;
    }

    .ranking-table tr.rank-description {
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .ranking-table tr:not(.rank-description) {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .position {
        display: block !important;
        margin-bottom: 20px !important;
        font-size: 5rem;
    }

    .position .rank-number {
        position: absolute;
        top: -25px;
        left: -15px;
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .service-name img {
        height: 50px;
    }

    .rating {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .status .link-btn,
    .status .btn-primary {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
    }

    .btn-desktop {
        display: none !important;
    }

    .btn-mobile {
        display: block !important;
        margin-top: 20px;
    }

    .content-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .payment-mobile {
        display: block;
        width: 100%;
    }

    .content-wrapper svg {
        vertical-align: middle;
        margin-top: -2px;
        /* Fine-tuning */
    }

    /* About & Contact */
    section.about {
        padding: 40px 20px;
    }

    section.about h1 {
        font-size: 2.2rem;
    }

    .contact-container {
        padding: 24px;
    }

    .whatis-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatis-card {
        padding: 5px 20px;
    }

    section.disclaimer {
        padding: 0 5%;
        margin: 0 5%;
    }

}

@media (max-width: 480px) {
    .header .logo img {
        height: 45px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .ranking h2 {
        font-size: 1.8rem;
    }

    .position {
        font-size: 1.1rem;
    }
}