* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: whitesmoke;
    color: #222;
    text-align: center;
}

header {
    user-select: none;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.8;
}

header .Logo {
    font-size: 32px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    color: #222;
}

nav a:hover {
    opacity: 1;
}

.hero {
    margin-top: 20px;
    margin-bottom: 25px;
}

.info {
    margin-top: 70px;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 12px;
    letter-spacing: .5px;
    word-spacing: 3px;
}

.hero h2 {
    font-size: 30px;
    margin: 10px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 15px;
    color: #787878;
}

.button {
    color: #222;
    font-size: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgb(100, 100, 100);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.button:hover {
    opacity: .8;
}

.cards {
    margin: 0 auto;
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 20px 40px;
    background: #f5f5f5;
    color: #333;
}

.cards.v2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hidden {
    display: none;
}

.more {
    display: none;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    opacity: 0;
}

.more.show {
    display: block;
}

.show.active {
    transform: translateY(0px);
    opacity: 1;
}

.Apps {
    max-width: 800px;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.card p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.btn {
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    background: #3e8fdb;
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

footer {
    color: #787878;
    text-align: center;
    padding: 50px;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 760px) {
    header {
        display: block; 
    }
    header h2 {
        display: none;
    }
    nav {
        text-align: center;
    }
    .cards.v2 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}