* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #08111f 0%, #0d1b2e 50%, #132846 100%);
    color: #ffffff;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.header {
    background: rgba(8, 14, 24, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #8bc2ff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav a {
    padding: 10px 16px;
    border-radius: 12px;
    color: #dcecff;
    transition: 0.2s ease;
    background: transparent;
}

.nav a:hover,
.nav a.active {
    background: rgba(111, 181, 255, 0.18);
    color: #ffffff;
}

.page {
    padding-bottom: 60px;
}

.hero {
    padding: 90px 0 70px;
    text-align: center;
}

.small-hero {
    padding: 70px 0 40px;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 16px;
}

.hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #c8d9ef;
}

.main-button {
    display: inline-block;
    margin-top: 28px;
    padding: 16px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2f8cff, #66b2ff);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(58, 140, 255, 0.35);
}

.main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(58, 140, 255, 0.45);
}

.content-section {
    padding: 20px 0 40px;
}

.info-card,
.offer-box,
.contact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.info-card,
.offer-box {
    padding: 28px;
}

.info-card h2,
.offer-box h2 {
    margin-bottom: 16px;
    color: #9fd0ff;
}

.info-card p,
.offer-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #d7e6f8;
    margin-bottom: 14px;
}

.offer-box p:last-child {
    margin-bottom: 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.contact-card {
    display: block;
    padding: 24px;
    transition: 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(122, 186, 255, 0.45);
    background: rgba(255, 255, 255, 0.09);
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #9fd0ff;
}

.contact-card p {
    color: #d7e6f8;
    line-height: 1.6;
    word-break: break-word;
}

.contact-card--accent {
    background: linear-gradient(135deg, rgba(47, 140, 255, 0.22), rgba(0, 204, 255, 0.18));
    border-color: rgba(111, 181, 255, 0.35);
}

.footer {
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 10, 18, 0.88);
    text-align: center;
    color: #b4c7dd;
}

@media (max-width: 800px) {
    .header-inner {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
    }

    .nav {
        justify-content: center;
    }

    .hero {
        padding-top: 60px;
    }
}

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

.shop-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(122, 186, 255, 0.35);
}

.shop-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 900px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}