/* ===================================================
   About Page — /about/
   =================================================== */

#pagetitle {
    display: none !important;
}

.ab-page {
    padding-bottom: 80px;
}

/* ===== HERO ===== */
.ab-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #111 0%, #1e1e24 50%, #252530 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 50px 60px;
    min-height: 260px;
}

.ab-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 5% 50%, rgba(133,198,53,0.13) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(133,198,53,0.07) 0%, transparent 45%),
        radial-gradient(circle at 60% 90%, rgba(133,198,53,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.ab-hero__body {
    position: relative;
    z-index: 2;
}

.ab-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(133,198,53,0.15);
    border: 1px solid rgba(133,198,53,0.3);
    color: #85c635;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
}

.ab-hero__title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}

.ab-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
}

.ab-hero__stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.ab-hero__stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 28px;
    text-align: center;
    min-width: 170px;
}

.ab-hero__stat-val {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #85c635;
    line-height: 1;
    margin-bottom: 4px;
}

.ab-hero__stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ===== INTRO ===== */
.ab-intro {
    background: #f8f8f8;
    border-radius: 14px;
    padding: 28px 36px;
    margin-bottom: 40px;
    border-left: 4px solid #85c635;
}

.ab-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
}

.ab-intro p:last-child {
    margin-bottom: 0;
}

/* ===== BLOCKS ===== */
.ab-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

.ab-block {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: box-shadow 0.25s;
}

.ab-block:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.ab-block--accent {
    background: linear-gradient(135deg, #f6fff0 0%, #eefce0 100%);
    border-color: rgba(133,198,53,0.3);
}

.ab-block__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #f5f5f5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #85c635;
    transition: transform 0.2s;
}

.ab-block:hover .ab-block__icon {
    transform: scale(1.05);
}

.ab-block--accent .ab-block__icon {
    background: rgba(133,198,53,0.15);
}

.ab-block__body {
    flex: 1;
    min-width: 0;
}

.ab-block__title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.ab-block__text {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 16px;
}

.ab-block__text:last-child {
    margin-bottom: 0;
}

/* ===== NOTE ===== */
.ab-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-top: 4px;
}

.ab-note i {
    color: #aaa;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ab-note--green {
    background: rgba(133,198,53,0.1);
    color: #3a7010;
}

.ab-note--green i {
    color: #85c635;
}

/* ===== RATING ===== */
.ab-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fffbea;
    border: 1px solid #f5e88a;
    border-radius: 12px;
    padding: 10px 18px;
    margin-top: 4px;
}

.ab-rating__stars {
    display: flex;
    gap: 3px;
    color: #f5a623;
    font-size: 16px;
}

.ab-rating__val {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.ab-rating__label {
    font-size: 13px;
    color: #888;
}

/* ===== TAGS ===== */
.ab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.ab-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.2s;
}

.ab-tags span:hover {
    background: rgba(133,198,53,0.12);
    border-color: rgba(133,198,53,0.3);
    color: #3a7010;
}

.ab-tags span i {
    color: #85c635;
    font-size: 12px;
}

/* ===== CTA ===== */
.ab-cta {
    background: linear-gradient(135deg, #111 0%, #1e1e24 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.ab-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(133,198,53,0.1) 0%, transparent 55%);
    pointer-events: none;
}

.ab-cta__text {
    position: relative;
    z-index: 2;
    flex: 1;
}

.ab-cta__text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.ab-cta__text p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 8px;
}

.ab-cta__sign {
    margin-top: 16px !important;
    color: rgba(255,255,255,0.4) !important;
    font-size: 13px !important;
}

.ab-cta__sign strong {
    color: #85c635;
}

.ab-cta__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.ab-btn--primary {
    background: #85c635;
    color: #fff;
}

.ab-btn--primary:hover {
    background: #74b02a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(133,198,53,0.35);
}

.ab-btn--outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.ab-btn--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ab-hero {
        grid-template-columns: 1fr;
        padding: 40px 36px;
    }
    .ab-hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .ab-hero__title { font-size: 36px; }
    .ab-cta {
        flex-direction: column;
        padding: 40px 36px;
    }
    .ab-cta__actions { flex-direction: row; }
}

@media (max-width: 768px) {
    .ab-hero { padding: 30px 24px; }
    .ab-hero__title { font-size: 28px; }
    .ab-block {
        flex-direction: column;
        gap: 18px;
        padding: 28px 24px;
    }
    .ab-intro { padding: 22px 24px; }
    .ab-rating {
        flex-wrap: wrap;
        gap: 8px;
    }
    .ab-rating__label { display: none; }
    .ab-cta { padding: 30px 24px; }
    .ab-cta__text h2 { font-size: 22px; }
    .ab-cta__actions { flex-direction: column; }
}
