/* О НАС PAGE — только уникальные стили.
   Общие стили (body, header, nav, cart, modals, footer) из style.css */

.page-wrap {
  display: flex;
  padding: 80px;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--header-h, 62px));
}

.left { flex: 1; }
.right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    perspective: 1000px;
}

/* Page badge */
.badge {
    display: inline-block;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeIn 0.8s ease;
}

.page-heading {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    animation: slideUp 0.9s ease;
}

.page-heading span {
    color: #00ff88;
    text-shadow: 0 0 20px #00ff88;
}

.about-text {
    color: #888;
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 15px;
}

/* Features */
.features { margin-top: 32px; }

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}

.feature:hover {
    background: rgba(0,255,136,0.04);
    border-color: rgba(0,255,136,0.15);
}

.icon {
    width: 38px;
    height: 38px;
    border: 1px solid #00ff88;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
    font-size: 16px;
    flex-shrink: 0;
}


.stat-card {
    background: linear-gradient(135deg, #0c1f16, #071209);
    color: #00ff88;
    font-size: 34px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 20px rgba(0,255,136,0.6);
    border: 1px solid rgba(0,255,136,0.18);
    border-radius: 20px;
    height: 160px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    border-color: rgba(0,255,136,0.4);
    box-shadow: 0 0 24px rgba(0,255,136,0.12);
}

.stat-card span {
    font-size: 12px;
    color: #777;
    margin-top: 8px;
    font-weight: 600;
    text-shadow: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1000px) {
    .page-wrap { flex-direction: column; gap: 48px; padding: 60px 40px; }
    .page-heading { font-size: 46px; }
    .right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .page-wrap { padding: 40px 24px; gap: 36px; }
    .page-heading { font-size: 38px; }
    .stat-card { height: 140px; font-size: 28px; }
}

@media (max-width: 600px) {
    .page-wrap { padding: 28px 16px; gap: 28px; min-height: unset; }
    .page-heading { font-size: 30px; }
    .about-text { font-size: 13px; }
    .badge { font-size: 11px; padding: 5px 12px; }
    .right { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { height: 120px; font-size: 22px; border-radius: 14px; }
    .stat-card span { font-size: 10px; }
    .feature { padding: 8px 10px; }
}

@media (max-width: 380px) {
    .page-heading { font-size: 26px; }
    .right { gap: 8px; }
    .stat-card { height: 100px; font-size: 18px; }
}
