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

body {
    font-size: 1.1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    z-index: 1000;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}

nav a:hover {
    color: var(--text-primary);
}

.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.btn.primary {
    background: var(--accent);
    color: white;
}

.btn.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn.outline {
    border: 1.5px solid var(--accent);
    color: var(--accent);
}

.btn.telegram {
    background: #229ED9;
    color: white;
}

.hero {
    padding: 18vh 0 14vh;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 2.8rem;
}

.buttons {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust {
    padding: 100px 0;
    background: var(--bg-section);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.stats div {
    font-size: 1.8rem;
    font-weight: 700;
}

.stats span {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: .4rem;
}

.products {
    padding: 120px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 3.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.4rem;
}

.card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all .25s ease;
}

.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

.card h3 {
    margin-bottom: 1rem;
}

.meta {
    margin-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .95rem;
}

.price {
    background: rgba(59,130,246,.15);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 6px;
    font-weight: 600;
}

footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 70px 0 40px;
    text-align: center;
    color: var(--text-muted);
}

footer a {
    color: var(--text-primary);
    text-decoration: none;
}

/* ==================== Адаптив ==================== */

@media (max-width: 960px) {
    .hero { padding: 14vh 0 10vh; }
    h1 { font-size: 3.8rem !important; }
}
