/* ABOUT / АКЦИИ PAGE — только уникальные стили.
   Общие стили (body, header, nav, cart, modals, footer) из style.css */

.page-wrap {
    padding: 60px 80px;
}

/* Page header */
.badge-about {
    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-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 40px;
    animation: slideUp 0.9s ease;
    text-shadow: 0 0 25px #00ff88;
}

.page-title span {
    color: #00ff88;
    text-shadow: 0 0 25px #00ff88;
}

/* Promo cards */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.promo-card {
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.4s;
    filter: blur(40px);
}

.promo-card:hover { transform: translateY(-6px); }
.promo-card:hover::before { opacity: 1; }

.promo-card.green  { background: linear-gradient(135deg, #0f3d2b, #071a14); }
.promo-card.green::before  { background: rgba(0,255,136,0.2); }

.promo-card.blue   { background: linear-gradient(135deg, #1d2f5c, #0a1124); }
.promo-card.blue::before   { background: rgba(59,130,246,0.2); }

.promo-card.purple { background: linear-gradient(135deg, #3a1c5c, #140824); }
.promo-card.purple::before { background: rgba(168,85,247,0.2); }

.promo-card h3 {
    color: #00ff88;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.promo-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    border: 1px solid #333;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    color: #aaa;
    transition: 0.3s;
}

.tag:hover {
    box-shadow: 0 0 15px rgba(0,255,136,0.4);
    border-color: rgba(0,255,136,0.5);
    color: #00ff88;
}

/* Subscribe block */
.subscribe {
    border: 1px solid rgba(0,255,136,0.2);
    padding: 48px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #071a14, #050505);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.subscribe:hover {
    border-color: rgba(0,255,136,0.4);
    box-shadow: 0 0 40px rgba(0,255,136,0.08);
}

.subscribe h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.subscribe h2 span {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.subscribe p {
    color: #777;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.subscribe-form input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    min-width: 220px;
    outline: none;
    transition: 0.3s;
}

.subscribe-form input:focus {
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0,255,136,0.12);
}

.subscribe-form input::placeholder { color: #555; }

.subscribe-form .btn-subscribe {
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: #00ff88;
    color: #000;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0,255,136,0.3);
    white-space: nowrap;
}

.subscribe-form .btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0,255,136,0.6);
}

/* Responsive */
@media (max-width: 1000px) {
    .cards { grid-template-columns: 1fr 1fr; }
    .subscribe { flex-direction: column; gap: 24px; align-items: flex-start; }
    .page-wrap { padding: 40px 30px; }
    .page-title { font-size: 44px; }
}

@media (max-width: 768px) {
    .page-wrap { padding: 30px 24px; }
    .page-title { font-size: 36px; }
    .cards { grid-template-columns: 1fr; gap: 16px; }
    .subscribe { padding: 28px 24px; }
    .subscribe h2 { font-size: 24px; }
    .subscribe-form { flex-direction: column; gap: 10px; width: 100%; }
    .subscribe-form input { min-width: unset; width: 100%; }
    .subscribe-form .btn-subscribe { width: 100%; }
}

@media (max-width: 600px) {
    .page-wrap { padding: 24px 16px; }
    .page-title { font-size: 30px; margin-bottom: 24px; }
    .promo-card { padding: 22px 18px; }
    .promo-card h3 { font-size: 18px; }
    .subscribe { padding: 22px 18px; border-radius: 18px; }
    .subscribe h2 { font-size: 20px; }
}

@media (max-width: 380px) {
    .page-title { font-size: 26px; }
    .promo-card h3 { font-size: 16px; }
    .subscribe h2 { font-size: 17px; }
}
