/* ! body */
body {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ! Prezzi */
main {
    min-height: 100vh;
    width: 100%;
    padding: 150px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--black-premium);
    letter-spacing: -0.02em;
    margin-bottom: 0px;
}
.hero .p{
    text-align: center;
}

.hero .precisazione{
    color: var(--black-premium);
    font-size: 12px;
    max-width: 600px;
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
}

.brand-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.brand-card {
    user-select: none;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 20px 24px;
    border-radius: 20px;
    border-radius: clamp(16px, 5vw, 28px);
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-card:hover {
    transform: translateX(4px);
    opacity: 0.92;
}

.brand-card .arrow {
    margin-left: auto;
    flex-shrink: 0;
}

.brand-card span:not(.brand-text) {
    font-size: 16px;
    font-weight: 600;
}

.brand-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-apple   { background: #000000;gap: 2px; }
.brand-apple svg{transform: translateY(-3px);}

.brand-samsung { background: #1428A0; }
.brand-huawei  { background: #CF0A2C; }
.brand-xiaomi  { background: #FF6900; }
.brand-oppo    { background: #046A38;  }
.brand-honor   { background: #000000; }
.brand-google  { background: #f9f9f9;border: 1px solid rgb(0, 0, 0); color: var(--black-premium); gap: 8px;}
.brand-motorola { background: #1A1A1A; }

@media (max-width: 600px) {
    .hero h2 { font-size: 37px; }
    .brand-card { padding: 18px 20px; }
}

