* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 50% -10%, #ffffff 0%, #f8fafc 40%, #edf2f7 100%);
    color: #132238;
}

.page {
    min-height: 100vh;
    padding: 54px 20px;
}

.hero {
    max-width: 1280px;
    margin: 0 auto;
}

.heading {
    text-align: center;
    margin-bottom: 36px;
}

.heading h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.heading p {
    margin: 12px 0 0;
    font-size: 19px;
    color: #5b6676;
}

.stores {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.store-card {
    display: flex;
    flex-direction: column;

    min-height: 650px;

    padding: 42px 34px 28px;

    border-radius: 22px;

    text-decoration: none;
    color: inherit;

    background: #fff;

    border: 1px solid #e1e7ef;

    box-shadow:
        0 18px 55px rgba(19, 34, 56, .10);

    overflow: hidden;

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 70px rgba(19, 34, 56, .16);
}

.store-top {
    text-align: center;
}

.toyox-logo,
.carzone-logo {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -4px;
}

.toyox-logo {
    color: #062e67;
}

.toyox-logo span {
    color: #1474e8;
}

.carzone-logo {
    color: #181c21;
}

.carzone-logo span {
    color: #e31d24;
}

.store-title {
    margin-top: 20px;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.35;
}

.store-title strong {
    display: block;
    margin-top: 3px;
}

.toyox-card .store-title strong {
    color: #1474e8;
}

.carzone-card .store-title strong {
    color: #e31d24;
}


/* декоративная зона */

.visual {
    position: relative;
    flex: 1;
    min-height: 265px;
    margin: 25px -10px 20px;
}


/* TOYOX */

.toyox-visual {
    background:
        radial-gradient(circle at 65% 50%, #ffffff 0%, #f3f7fb 55%, transparent 56%);
}

.part {
    position: absolute;
}

.part-disc {
    width: 175px;
    height: 175px;

    border-radius: 50%;

    left: 26%;
    top: 40px;

    background:
        radial-gradient(circle,
        #eef1f4 0 14%,
        #444 15% 17%,
        #d8dde3 18% 47%,
        #aeb6c0 48% 52%,
        #edf1f5 53% 69%,
        #aeb6c0 70% 72%,
        #fafafa 73%);

    box-shadow: 0 18px 30px rgba(0,0,0,.14);
}

.part-filter {
    left: 14%;
    bottom: 18px;

    width: 90px;
    height: 120px;

    border-radius: 15px;

    background:
        linear-gradient(90deg,#111,#333,#090909);

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 18px 30px rgba(0,0,0,.15);
}

.part-shock {
    right: 12%;
    top: 50px;

    width: 42px;
    height: 195px;

    border-radius: 20px;

    transform: rotate(26deg);

    background:
        linear-gradient(90deg,#111,#545454,#111);

    box-shadow: 0 18px 30px rgba(0,0,0,.18);
}


/* CARZONE */

.carzone-visual {
    background:
        radial-gradient(circle at 60% 50%, #ffffff 0%, #f5f5f5 55%, transparent 56%);
}

.car-shape {
    position: absolute;

    width: 72%;
    height: 145px;

    left: 13%;
    top: 30px;

    background:
        linear-gradient(135deg,#e5e5e5,#ffffff 45%,#bfc4ca);

    border-radius:
        80% 60% 35% 35% /
        80% 80% 35% 35%;

    box-shadow: 0 25px 35px rgba(0,0,0,.13);
}

.car-shape::before,
.car-shape::after {
    content: "";

    position: absolute;

    bottom: -25px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background:
        radial-gradient(circle,#7b7b7b 0 20%,#111 21% 60%,#333 61%);
}

.car-shape::before {
    left: 12%;
}

.car-shape::after {
    right: 12%;
}

.red-caliper {
    width: 70px;
    height: 110px;

    border-radius: 35px;

    left: 25%;
    bottom: 5px;

    transform: rotate(18deg);

    background: #df181e;

    box-shadow: 0 15px 25px rgba(0,0,0,.20);
}

.car-disc {
    right: 24%;
    bottom: 0;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
        #1f1f1f 0 17%,
        #d7d7d7 18% 48%,
        #999 49% 53%,
        #ededed 54% 72%,
        #aaa 73%);
}

.battery {
    right: 5%;
    bottom: 8px;

    width: 105px;
    height: 105px;

    background:
        linear-gradient(135deg,#252525,#050505);

    border-radius: 8px;

    box-shadow: 0 15px 25px rgba(0,0,0,.18);
}


/* преимущества */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin: 0 0 26px;
}

.features div {
    text-align: center;
    padding: 0 8px;
}

.features strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.features span {
    display: block;
    margin-top: 5px;

    font-size: 13px;
    line-height: 1.35;

    color: #768191;
}


/* кнопки */

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    height: 78px;

    border-radius: 13px;

    color: #fff;

    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;

    box-shadow: 0 10px 24px rgba(0,0,0,.15);
}

.store-button span {
    font-size: 38px;
    font-weight: 300;
}

.blue-button {
    background:
        linear-gradient(135deg,#1787ef,#065dcc);
}

.red-button {
    background:
        linear-gradient(135deg,#f2362e,#d60813);
}


/* контакты */

.contacts {
    margin-top: 43px;
}

.contacts-title {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contacts-title span {
    height: 1px;
    flex: 1;
    background: #d2d9e2;
}

.contacts-title h2 {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
}

.contacts-subtitle {
    text-align: center;
    margin: 10px 0 24px;
    color: #667384;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.contact {
    min-height: 90px;

    display: flex;
    align-items: center;
    gap: 17px;

    padding: 17px 22px;

    text-decoration: none;
    color: #172235;

    background: rgba(255,255,255,.85);

    border: 1px solid #dfe5ed;
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(24, 42, 67, .06);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.contact:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(24, 42, 67, .12);
}

.contact-icon {
    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 24px;
    font-weight: 700;
}

.phone .contact-icon {
    background: #1474e8;
}

.viber .contact-icon {
    background: #7360f2;
}

.telegram .contact-icon {
    background: #229ed9;
}

.contact strong {
    display: block;
    font-size: 16px;
}

.contact span {
    display: block;
    margin-top: 6px;
    color: #657386;
}


/* mobile */

@media (max-width: 900px) {

    .page {
        padding: 28px 14px;
    }

    .heading {
        margin-bottom: 24px;
    }

    .heading p {
        font-size: 16px;
    }

    .stores {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .store-card {
        min-height: auto;
        padding: 28px 20px 20px;
    }

    .visual {
        min-height: 230px;
    }

    .features {
        gap: 4px;
    }

    .features strong {
        font-size: 12px;
    }

    .features span {
        font-size: 11px;
    }

    .store-button {
        height: 66px;
        font-size: 17px;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
    }

    .contacts-title h2 {
        font-size: 19px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {

    .heading h1 {
        font-size: 29px;
    }

    .toyox-logo,
    .carzone-logo {
        font-size: 50px;
    }

    .store-title {
        font-size: 18px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .features div {
        padding: 7px 0;
        border-bottom: 1px solid #edf0f4;
    }

    .features div:last-child {
        border-bottom: none;
    }

    .visual {
        min-height: 215px;
    }

    .part-disc {
        width: 130px;
        height: 130px;
    }

    .part-shock {
        height: 150px;
    }

    .car-shape {
        width: 80%;
        left: 10%;
    }
}

/* TOYOX / CARZONE compact desktop layout */

@media (min-width: 901px) {

    .page {
        padding: 24px 20px 18px;
    }

    .heading {
        margin-bottom: 18px;
    }

    .heading h1 {
        font-size: clamp(28px, 3.2vw, 42px);
    }

    .heading p {
        margin-top: 7px;
        font-size: 17px;
    }

    .stores {
        gap: 24px;
    }

    .store-card {
        min-height: 510px;
        padding: 26px 28px 20px;
    }

    .toyox-logo,
    .carzone-logo {
        font-size: clamp(38px, 4vw, 58px);
    }

    .store-title {
        margin-top: 10px;
        font-size: 18px;
    }

    .visual {
        min-height: 185px;
        margin: 12px -10px 8px;
    }

    .features {
        gap: 6px;
        margin-bottom: 14px;
    }

    .features strong {
        font-size: 13px;
    }

    .features span {
        font-size: 12px;
    }

    .store-button {
        height: 60px;
        font-size: 18px;
    }

    .store-button span {
        font-size: 30px;
    }

    .contacts {
        margin-top: 20px;
    }

    .contacts-title h2 {
        font-size: 20px;
    }

    .contacts-subtitle {
        margin: 6px 0 14px;
    }

    .contact {
        min-height: 72px;
        padding: 12px 18px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }
}
