:root {
    --brand-primary: #067597;
    --brand-light: #e6f4f8;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
    --shadow-md: 0 12px 30px rgba(6, 117, 151, 0.08);
    --radius-lg: 20px;
}

.page-about {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow-x: hidden;
    padding-top: 65px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.about-hero {
    padding: 100px 0 80px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-light);
    color: var(--brand-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
}

.about-logo-wrapper {
    background: white;
    padding: 40px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Органическая форма */
    box-shadow: var(--shadow-md);
    display: inline-block;
}

.about-logo {
    max-width: 280px;
    height: auto;
}

/* =========================================================
   STATS CARDS
   ========================================================= */
.mb-100 { margin-bottom: 100px; }

.stat-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.stat-icon-box {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

/* =========================================================
   HISTORY & VISION
   ========================================================= */
.history-card {
    background: var(--brand-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.history-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brand-primary);
    margin-bottom: 0;
    font-weight: 500;
}

.vision-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 40px;
    width: 60px;
    height: 4px;
    background: var(--brand-primary);
    border-radius: 0 0 4px 4px;
}

.accent-alt { background: #10b981; }

.vision-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* =========================================================
   FEATURE BOXES
   ========================================================= */
.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-box:hover {
    background: var(--brand-primary);
}

.feature-box:hover h5, 
.feature-box:hover p {
    color: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-light);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 15px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.feature-box h5 { font-weight: 700; margin-bottom: 15px; }
.feature-box p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 991px) {
    .about-hero { padding: 60px 0; }
    .mb-100 { margin-bottom: 60px; }
    .about-logo-wrapper { margin-top: 40px; }
    .page-about{
        padding-top: 65px;
    }
}