/* ==========================================================================
   CAC MMC - MASTER STYLESHEET (FINAL PRODUCTION V 2026.6)
   --------------------------------------------------------------------------
   Strategy: Corporate Engineering.
   Palette: 
     1. Navy Blue (#002B5C) - Dominant / Text / Primary Actions
     2. Premium Gold (#C5A059) - Accents / Hovers / CTA
     3. White/Light (#FFFFFF / #F8F9FA) - Backgrounds / Text on Dark
   
   NO OTHER COLORS ALLOWED. Bootstrap colors are overridden below.
   ========================================================================== */

/* 1. FONTS & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lindau:wght@600;700;800&display=swap');

:root {
    /* --- Brand Colors --- */
    --accent: #002B5C;       /* Navy Blue */
    --accent-hover: #001f42; 
    
    --gold: #C5A059;         /* Gold */
    --gold-hover: #B08D45;
    
    /* --- Neutrals --- */
    --bg-body: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #050505;
    
    --text-main: #1a1a1a;
    --text-muted: #6c757d;
    --text-inverse: #ffffff; 
    
    --border: #e9ecef;
    
    /* --- Layout Constants --- */
    --container-width: 1240px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 6px;
    
    /* --- Shadows --- */
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 30px rgba(0, 43, 92, 0.08);
}

/* 2. RESET & BASE */
html { scroll-behavior: smooth; box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Prevents horizontal scroll */
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.2s ease; }
ul { list-style: none; padding: 0; margin: 0; }

/* 3. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 { font-size: 48px; letter-spacing: -1px; font-weight: 800; }
h2 { font-size: 38px; font-weight: 700; }
h3 { font-size: 26px; font-weight: 700; }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

p { margin-bottom: 1.5rem; color: var(--text-muted); }

/* Text Utilities (Strict Enforcement) */
.text-accent { color: var(--accent) !important; }
.text-gold { color: var(--gold) !important; }
.text-white { color: #ffffff !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.fw-bold { font-weight: 700 !important; }

/* 4. HEADER & NAV (Fixed Structure) */
.site-header {
    background: #fff;
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    width: 100%;
}

.site-header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Исправление для логотипа в шапке */
.logo img, .site-header .navbar-brand img { 
    max-height: 45px !important; 
    width: auto !important; 
    object-fit: contain; /* Дополнительно гарантирует сохранение пропорций */
}

.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

.desktop-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-main);
    padding: 5px 0;
    position: relative;
}

.desktop-nav a:hover, .desktop-nav a.active { color: var(--accent); }
/* Gold Underline Effect */
.desktop-nav a:after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: 0.3s;
}
.desktop-nav a:hover:after, .desktop-nav a.active:after { width: 100%; }

/* Mobile Menu Button */
.mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--accent); }

/* 5. BUTTONS (Standardized) */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: 1px solid transparent;
}

/* Primary = Navy */
.btn-primary, .btn-success, .btn-info { 
    background: var(--accent) !important; 
    color: #fff !important; 
    border-color: var(--accent) !important; 
}
.btn-primary:hover { 
    background: var(--accent-hover) !important; 
    transform: translateY(-2px); 
}

/* Secondary/Action = Gold */
.btn-gold, .btn-warning { 
    background: var(--gold) !important; 
    color: #fff !important; 
    border-color: var(--gold) !important; 
}
.btn-gold:hover { 
    background: var(--gold-hover) !important; 
    transform: translateY(-2px); 
}

/* Outlines */
.btn-outline, .btn-outline-dark, .btn-outline-primary { 
    background: transparent !important; 
    border: 1px solid var(--accent) !important; 
    color: var(--accent) !important; 
}
.btn-outline:hover { 
    background: var(--accent) !important; 
    color: #fff !important; 
}

.btn-outline-light {
    border-color: #fff !important;
    color: #fff !important;
}
.btn-outline-light:hover {
    background: #fff !important;
    color: var(--accent) !important;
}

/* 6. LAYOUT & GRIDS (Restored) */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; }
.section-padding { padding: 100px 0; position: relative; z-index: 1; }
.bg-light { background: var(--bg-light) !important; }
.bg-dark { background: var(--bg-dark); color: #fff; }

/* Grid Systems */
.grid-3, .hub-grid, .pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.grid-2, .split-layout, .contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
}

/* Competence Map Grid (4 cols) */
.comp-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    margin-top: 40px; 
}

/* 7. CARDS (Unified Style) */
.card, .service-card, .gov-card, .hub-card, .pricing-card {
    background: #fff;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.card:hover, .service-card:hover, .gov-card:hover, .hub-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    border-top: 3px solid var(--gold) !important; /* Gold top border on hover */
}

/* 8. HERO SECTIONS (Strict Navy Gradient) */
.home-hero, .page-hero, .gov-hero, .contact-hero, .school-hero, .hero-hr, .hero-agro, .page-hero-diag {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff !important;
    background-color: var(--accent) !important;
    background-image: linear-gradient(135deg, #002B5C 0%, #00152e 100%) !important;
}

/* Executive Exception (Black) */
.hero-exec { 
    background: #000 !important; 
    background-image: none !important; 
    text-align: left; 
}

/* 9. COLOR CORRECTION "FIREWALL" */
/* This forces all Bootstrap utility classes to use Brand Colors */
.text-success, .text-info, .text-primary, .text-danger { color: var(--accent) !important; }
.text-warning { color: var(--gold) !important; }

.bg-success, .bg-info, .bg-primary, .bg-danger { background-color: var(--accent) !important; color: #fff; }
.bg-warning { background-color: var(--gold) !important; color: #fff; }

/* Border overrides */
.border-success, .border-info, .border-primary, .border-danger { border-color: var(--accent) !important; }
.border-warning { border-color: var(--gold) !important; }

/* 10. DIAGNOSTICS & TOOLS (Extracted Styles) */
.page-hero-diag {
    background: linear-gradient(135deg, #001a38 0%, #002B5C 100%);
    padding: 100px 0;
}

.hub-offset {
    margin-top: -60px;
    padding-top: 0;
    position: relative;
    z-index: 10;
}

.rq-feature-card {
    background: #001a38;
    border-left: 5px solid var(--gold) !important;
}

/* Quiz UI */
.tool-interface { animation: fadeIn 0.5s ease-out; }
.quiz-option-btn {
    text-align: left;
    padding: 15px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-main);
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
}
.quiz-option-btn:hover {
    background: var(--bg-light);
    border-color: var(--accent);
    color: var(--accent);
}

/* Progress Bars */
.progress { background-color: #e9ecef; border-radius: 2px; }
.progress-bar { background-color: var(--gold) !important; }

/* 11. FOOTER & WIDGETS */
.footer { 
    background-color: var(--accent); 
    color: rgba(255, 255, 255, 0.6); 
    padding: 60px 0 30px; 
    font-size: 0.9rem; 
    margin-top: auto;
}
.footer h5 { color: #fff; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
.footer a:hover { color: #fff; }

/* Social Buttons */
.social-btn {
    width: 34px; height: 34px; 
    display: inline-flex; align-items: center; justify-content: center;
    background-color: rgba(255,255,255,0.1); 
    border: 1px solid transparent;
    color: #fff; 
    border-radius: 50%; 
    transition: all 0.3s ease;
}
.social-btn:hover { 
    background-color: var(--gold); 
    border-color: var(--gold); 
    transform: translateY(-3px); 
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed; bottom: 30px; right: 30px; 
    width: 60px; height: 60px;
    background-color: var(--gold); /* Gold Background */
    color: #fff; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4); 
    z-index: 9999;
    transition: all 0.3s ease; 
    animation: pulse-gold 2s infinite;
}
.whatsapp-widget:hover { 
    background-color: var(--accent); 
    color: #fff;
    transform: translateY(-5px); 
}
.whatsapp-widget svg { width: 30px; height: 30px; fill: currentColor; }

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 12. RESPONSIVE (Strict Rules) */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    /* Tablet: 2 columns */
    .grid-3, .hub-grid, .pricing-grid, .comp-grid, .swot-grid { 
        grid-template-columns: 1fr 1fr; gap: 30px; 
    }
    .hero-btns { flex-direction: column; }
    .odoo-banner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    /* Mobile: 1 column */
    .grid-3, .grid-2, .hub-grid, .pricing-grid, .comp-grid, .swot-grid, .contact-grid, .founder-grid { 
        grid-template-columns: 1fr !important; gap: 30px; 
    }
    
    .site-header { padding: 0 15px; }
    .desktop-nav, .lang-switcher { display: none; }
    .mobile-menu-btn { display: block; }
    
    .home-hero, .page-hero, .page-hero-diag { padding: 100px 0 60px; }
    
    /* Diagnostics Mobile Fixes */
    .rq-feature-card .row { flex-direction: column; }
    .rq-feature-card .col-lg-4 { height: 200px; }
}
/* --- FIX: Force White Text in Hero Sections --- */
.page-hero h1, 
.page-hero h2, 
.page-hero h3, 
.page-hero p.lead,
.home-hero h1,
.home-hero p {
    color: #ffffff !important;
}

/* Fix muted text visibility on dark backgrounds */
.page-hero .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}
/* ==========================================================================
   DIAGNOSTICS PAGE STYLES (Extracted from views/diagnostics.php)
   ========================================================================== */

/* Hero Diagnostics */
.page-hero-diag {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background-color: var(--accent);
    background-image: linear-gradient(135deg, #002B5C 0%, #00152e 100%);
}

/* Hub View Overlap */
.hub-offset {
    margin-top: -60px;
    padding-top: 0;
    position: relative;
    z-index: 10;
}

/* RiverQuest Feature Card */
.rq-feature-card {
    background: #001a38; /* Darker than Accent */
    border-left: 5px solid var(--gold) !important;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,43,92,0.1);
}

/* Tool Animations */
.tool-interface {
    animation: fadeIn 0.5s ease-out;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate__animated { animation-duration: 0.5s; }
.animate__fadeIn { animation-name: fadeIn; }

/* Custom Progress Bars */
.bg-gold { background-color: var(--gold) !important; }
.bg-accent { background-color: var(--accent) !important; }

/* Quiz & Test Buttons */
.quiz-option-btn {
    text-align: left;
    padding: 15px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-main);
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
}
.quiz-option-btn:hover {
    background: var(--bg-light);
    border-color: var(--accent);
    color: var(--accent);
}
/* Добавить в style.css, если нужен фон на главной */
.home-hero {
    background: linear-gradient(rgba(0,43,92,0.9), rgba(0,20,50,0.95)), url('/uploads/backfon.webp') !important;
    background-size: cover !important;
}
/* --- INFOCONTROL 6.0 SPECIFIC STYLES --- */

/* Переменные (если еще не определены глобально) */
:root {
    --navy-main: #002B5C;
    --navy-dark: #00152e;
    --gold: #C5A059;
    --gold-hover: #D4B06A;
}

/* Hero Section */
.hero-section {
    background-color: var(--navy-main);
    background-image: radial-gradient(circle at 80% 20%, #004080 0%, var(--navy-dark) 80%);
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* Badge */
.badge-hero {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-radius: 50px;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    font-weight: 600;
}
.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.bg-navy { background-color: var(--navy-main) !important; }
.text-navy { color: var(--navy-main) !important; }
.text-gold { color: var(--gold) !important; }

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-5px);
}
/* --- SERVICES HUB GRID --- */
.section-padding {
    padding: 80px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Сетка карточек */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .hub-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшете */
    }
}

@media (min-width: 1200px) {
    .hub-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 колонки на десктопе */
    }
}

/* Карточка Хаба */
.hub-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 43, 92, 0.1);
    border-color: var(--gold); /* Ваше золото */
}

/* Бейджи (Категории) */
.hub-badge-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hub-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f3f4f6; /* Дефолтный серый */
    color: #4b5563;
}

/* Специфичные цвета бейджей (вынесено из inline styles) */
.hub-badge.agro {
    background-color: #e8f5e9;
    color: #1b4d3e;
}

.hub-badge.gold {
    background-color: rgba(197, 160, 89, 0.15);
    color: #C5A059;
}

.badge-new {
    background-color: #C5A059; /* Gold */
    color: #fff;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Контент карточки */
.hub-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #002B5C; /* Navy */
}

.hub-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1; /* Чтобы кнопка всегда была внизу */
}

.hub-link {
    text-decoration: none;
    font-weight: 600;
    color: #C5A059; /* Gold */
    transition: color 0.2s;
}

.hub-link:hover {
    color: #002B5C; /* Navy */
}
/* Layout Specific Styles */
.text-gold {
    color: #C5A059 !important;
}

.bg-dark {
    background-color: #00152e !important; /* Brand Dark Navy */
}

.social-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background-color: #C5A059;
    border-color: #C5A059;
    color: #fff;
    transform: translateY(-2px);
}

.hover-white:hover {
    color: #fff !important;
}

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
}

.whatsapp-widget svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}
/* --- PARENTING PROGRAM STYLES --- */

/* Typography & Helpers */
.font-serif { font-family: 'Playfair Display', serif; }
.tracking-wide { letter-spacing: 0.05em; }

/* Hero */
.par-hero {
    background-color: #002B5C;
    background-image: radial-gradient(circle at 70% 20%, #004080 0%, #001A38 80%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}
.par-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: #C5A059;
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Philosophy Cards */
.par-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.par-card:hover {
    transform: translateY(-5px);
    border-color: #C5A059;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.par-icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-block; }

/* Modules */
.module-card-par {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}
.module-card-par:hover { transform: translateY(-5px); }

.module-header {
    background: #002B5C;
    color: #fff;
    padding: 25px;
    border-bottom: 3px solid #C5A059;
}
.module-num {
    color: #C5A059;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.module-body { padding: 25px; background: #fff; }

.par-list { list-style: none; padding: 0; margin: 0; }
.par-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f7f7f7;
}
.par-list li:last-child {
    border-bottom: none; margin-bottom: 0; padding-bottom: 0;
}

/* Format */
.platform-card {
    background: #002B5C;
    background-image: linear-gradient(135deg, #002B5C 0%, #00152e 100%);
}

/* Pricing */
.par-price-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s ease;
}
.par-price-card.featured {
    background: #002B5C;
    color: #fff;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 43, 92, 0.15);
    transform: scale(1.02);
    z-index: 2;
}
.par-price-card.featured:hover { transform: scale(1.02) translateY(-5px); }

.featured-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: #C5A059;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}
.price-val {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
}

.par-check-list { list-style: none; padding: 0; text-align: left; }
.par-check-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
}
.par-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: #C5A059;
    font-weight: bold;
    font-size: 1.1rem;
}
.par-check-list.light li::before { color: #C5A059; }

/* Buttons */
.btn-gold {
    background-color: #C5A059;
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-gold:hover { background-color: #d4b06a; color: #fff; transform: translateY(-2px); }

.btn-outline-navy {
    border: 2px solid #002B5C;
    color: #002B5C;
    font-weight: 600;
}
.btn-outline-navy:hover { background: #002B5C; color: #fff; 
    
/* --- DATA BOOST STYLES --- */
.data-hero {
    background: linear-gradient(135deg, #0b1c3c 0%, #1a2a4e 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.data-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.data-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #4da3ff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.data-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
    border-color: #cfe2ff;
}

.data-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: #f0f7ff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.module-card-data {
    background: #fff;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.module-card-data:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left-color: #0b1c3c;
}

.tag-badge {
    font-size: 11px;
    background: #eef2f6;
    color: #555;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
}

.price-card-data {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card-data.vip {
    border: 2px solid #0b1c3c;
    background: #f8faff;
}

.price-card-data .cost {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b1c3c;
    margin: 15px 0;
}

.price-card-data .old-cost {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.data-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}
.data-list li i {
    color: #0d6efd;
    margin-right: 8px;
/* --- SERVICES PAGE GRID SYSTEMS --- */

/* Hub Grid (4 columns on desktop) */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.hub-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--accent, #b8860b);
}

.hub-badge-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hub-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f0f4f8;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.hub-badge.gold {
    background: #fff8e1;
    color: #b8860b;
}

.hub-badge.agro {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-new {
    font-size: 11px;
    background: #ff5252;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.hub-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002B5C;
    margin-bottom: 15px;
}

.hub-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.hub-link {
    text-decoration: none;
    color: var(--accent, #b8860b);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.hub-link:hover {
    color: #002B5C;
    letter-spacing: 0.5px;
}

/* Competencies Grid */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.comp-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: 0.3s;
}

.comp-item:hover {
    border-left-color: var(--accent, #b8860b);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comp-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #002B5C;
    margin-bottom: 10px;
}

.comp-item p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid var(--accent, #b8860b);
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.1);
    transform: scale(1.02);
    z-index: 2;
}

.pc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent, #b8860b);
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.pc-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.pc-desc {
    color: #666;
    margin-top: 15px;
    font-size: 0.95rem;
}
/* --- SERVICES LAYOUT --- */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.hub-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hub-badge-wrapper { margin-bottom: 20px; display: flex; gap: 10px; }
.hub-badge { font-size: 11px; text-transform: uppercase; background: #f8f9fa; color: #666; padding: 5px 10px; border-radius: 4px; font-weight: bold; }
.hub-badge.gold { background: #fff8e1; color: #b8860b; }
.hub-badge.agro { background: #e8f5e9; color: #2e7d32; }
.badge-new { font-size: 11px; background: #dc3545; color: #fff; padding: 5px 10px; border-radius: 4px; font-weight: bold; }

.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.comp-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: 0.3s;
}

.comp-item:hover {
    border-left-color: #b8860b;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comp-item h4 { color: #002B5C; margin-bottom: 10px; font-weight: bold; }
.comp-item p { color: #666; font-size: 0.9rem; margin: 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #b8860b;
    transform: scale(1.02);
    z-index: 2;
}

.pc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #b8860b;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
/* --- DATA BOOST STYLES --- */
.data-hero {
    background: linear-gradient(135deg, #0b1c3c 0%, #1a2a4e 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.data-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #4da3ff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.data-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
}

.data-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    background: #f0f7ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.module-card-data {
    background: #fff;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.tag-badge {
    font-size: 11px;
    background: #eef2f6;
    color: #555;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-weight: 600;
}

.price-card-data {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

.price-card-data.vip {
    border: 2px solid #0b1c3c;
    background: #f8faff;
}

.price-card-data .cost {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b1c3c;
    margin: 15px 0;
}

.data-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}
.data-list li i {
    color: #0d6efd;
    margin-right: 8px;
}
/* --- DATA BOOST STYLES --- */
.data-hero {
    background: linear-gradient(135deg, #0b1c3c 0%, #1a2a4e 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.data-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #4da3ff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.data-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
}

.data-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    background: #f0f7ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.module-card-data {
    background: #fff;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.tag-badge {
    font-size: 11px;
    background: #eef2f6;
    color: #555;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-weight: 600;
}

.price-card-data {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

.price-card-data.vip {
    border: 2px solid #0b1c3c;
    background: #f8faff;
}

.price-card-data .cost {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b1c3c;
    margin: 15px 0;
}

.data-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}
.data-list li i {
    color: #0d6efd;
    margin-right: 8px;
}
/* --- DATA BOOST STYLES --- */
.data-hero {
    background: linear-gradient(135deg, #0b1c3c 0%, #1a2a4e 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.data-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #4da3ff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.data-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
}

.data-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    background: #f0f7ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.module-card-data {
    background: #fff;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.tag-badge {
    font-size: 11px;
    background: #eef2f6;
    color: #555;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-weight: 600;
}

.price-card-data {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

.price-card-data.vip {
    border: 2px solid #0b1c3c;
    background: #f8faff;
}

.price-card-data .cost {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b1c3c;
    margin: 15px 0;
}

.data-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}
.data-list li i {
    color: #0d6efd;
    margin-right: 8px;
}
/* --- DATA BOOST STYLES --- */
.data-hero {
    background: linear-gradient(135deg, #0b1c3c 0%, #1a2a4e 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.data-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #4da3ff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.data-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
}

.data-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    background: #f0f7ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.module-card-data {
    background: #fff;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.tag-badge {
    font-size: 11px;
    background: #eef2f6;
    color: #555;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-weight: 600;
}

.price-card-data {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

.price-card-data.vip {
    border: 2px solid #0b1c3c;
    background: #f8faff;
}

.price-card-data .cost {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b1c3c;
    margin: 15px 0;
}

.data-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}
.data-list li i {
    color: #0d6efd;
    margin-right: 8px;
}
/* --- CORPORATE STYLE UPDATES --- */

/* Переменные (если их еще нет) */
:root {
    --navy: #002B5C;
    --gold: #C5A059;
    --gold-hover: #b08d4a;
}

/* Кнопки в стиле CAC */
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* Акцентный текст */
.text-accent {
    color: var(--gold) !important;
}
.text-navy {
    color: var(--navy) !important;
}
.bg-navy {
    background-color: var(--navy) !important;
}
.bg-accent {
    background-color: var(--gold) !important;
}
.border-accent {
    border-color: var(--gold) !important;
}

/* Карточки с эффектом наведения */
.hover-shadow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
    border-color: var(--gold) !important;
}

/* Мелкие детали */
.ls-2 {
    letter-spacing: 2px;
}
.text-xs {
    font-size: 0.75rem;
}
/* --- FIXES: Layout Stability --- */
.tab-content-wrapper {
    /* Важно: задаем минимальную высоту, чтобы футер не прыгал при переключении */
    min-height: 600px;
    transition: all 0.3s ease;
}

.test-block {
    width: 100%;
    /* Анимация появления */
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- DECOR --- */
.hero-circle-1 {
    position: absolute;
    right: -10%; top: -10%;
    width: 50vw; height: 50vw;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hero-circle-2 {
    position: absolute;
    right: -5%; top: -5%;
    width: 35vw; height: 35vw;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

/* --- ANIMATIONS --- */
.float-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* --- ACCORDION --- */
.accordion-button:not(.collapsed) {
    background-color: #f0f4ff;
    color: #002B5C;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}
/* Global Colors */
:root {
    --color-navy: #001f3f;
    --color-gold: #C5A059;
    --color-gold-hover: #b08d4a;
}

/* Typography & Utils */
.text-navy { color: var(--color-navy); }
.text-gold { color: var(--color-gold); }
.text-accent { color: var(--color-gold); }
.bg-navy { background-color: var(--color-navy) !important; }
.bg-gold { background-color: var(--color-gold) !important; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }

/* Buttons */
.btn-gold {
    background-color: var(--color-gold);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--color-gold-hover);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-light:hover {
    color: var(--color-navy);
}

/* Hero Tech Tags */
.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Hero Visual Animation */
.hero-visual-circle {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 31, 63, 0.8);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    box-shadow: 0 0 15px rgba(197,160,89,0.3);
}
.item-1 { top: 10%; left: 20%; }
.item-2 { bottom: 20%; right: 10%; }
.item-3 { top: 40%; right: -5%; }

/* Problem Cards */
.problem-card {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 12px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--color-gold);
}
.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Program Module Cards */
.program-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--color-gold);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.week-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 1px;
}

/* Pricing */
.pricing-card {
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}
.transform-scale {
    transform: scale(1.05);
    z-index: 2;
}
@media (max-width: 768px) {
    .transform-scale { transform: none; }
}
.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 0.95rem;
}
.pricing-list li {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 10px;
}
.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-gold);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}
.hover-gold:hover {
    background-color: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: #fff !important;
}

/* Avatar Placeholder */
.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-gold);
}
/* CAC Corporate Colors */
:root {
    --accent: #0b1c3c; /* Navy Blue */
    --gold: #c5a059;   /* Corporate Gold */
    --bg-dark: #050a14;
}

/* Typography & Utilities */
.text-gold { color: var(--gold) !important; }
.bg-navy { background-color: var(--accent) !important; }
.bg-gold { background-color: var(--gold) !important; color: #fff; }
.ls-1 { letter-spacing: 1px; }

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #b08d45;
    transform: translateY(-2px);
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.grayscale-hover {
    transition: filter 0.3s;
}
.grayscale-hover > div {
    opacity: 0.6;
    transition: opacity 0.3s;
}
.grayscale-hover > div:hover {
    opacity: 1;
    cursor: default;
}

/* Accordion Custom */
.custom-accordion .accordion-button {
    background: none;
    color: white;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    box-shadow: none;
}
.custom-accordion .accordion-button::after {
    filter: invert(1); /* Make arrows white */
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: sepia(100%) hue-rotate(5deg) saturate(500%); /* Gold-ish filter */
}

/* Cards */
.pain-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1)!important;
}
/* sales_landing.css */

/* --- Глобальные отступы --- */
:root {
    --accent: #0b1c3c; /* Navy Blue */
    --gold: #c5a059;   /* Corporate Gold */
    --bg-dark: #050a14;
    --section-spacing: 100px; /* Увеличили базовый отступ */
}

/* Класс для секций, чтобы они не наезжали друг на друга */
.section-spacious {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    position: relative;
    z-index: 1; /* Гарантируем корректное наложение слоев */
}

/* --- Типографика и цвета --- */
.text-gold { color: var(--gold) !important; }
.bg-navy { background-color: var(--accent) !important; }
.bg-gold { background-color: var(--gold) !important; color: #fff; }

/* --- Улучшенный Аккордеон (чтобы не слипался) --- */
.custom-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px; /* Отступ между пунктами */
}

.custom-accordion .accordion-button {
    background: rgba(255, 255, 255, 0.02); /* Легкая подложка */
    color: white;
    font-size: 1.1rem;
    padding: 25px 30px; /* Больше кликабельная область */
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(197, 160, 89, 0.1); /* Подсветка активного */
    color: var(--gold);
    box-shadow: none;
    transform: translateX(10px); /* Эффект сдвига при открытии */
}

.custom-accordion .accordion-body {
    padding: 20px 30px 30px 30px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
    transform: scale(0.8);
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: sepia(100%) hue-rotate(5deg) saturate(500%);
}

/* --- Карточки ROI и Аудитории --- */
.target-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

.roi-box {
    box-shadow: 0 20px 40px rgba(11, 28, 60, 0.15);
}

/* --- Кнопки и анимации --- */
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #b08d45;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
/* Trust Bar Styles */
.trust-bar {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.section-padding-sm {
    padding: 40px 0;
}
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* History List Update */
.history-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    border-left: 2px solid #e0e0e0;
}
.history-item:last-child {
    border-left-color: transparent;
}
.history-item .year {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
}
.history-item .year::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--color-gold); /* Или #c5a065 */
    border-radius: 50%;
}
/* Custom Accordion for Expertise */
.custom-accordion .accordion-button {
    background-color: #fff;
    color: #002B5B; /* Navy */
    font-size: 1.1rem;
    padding: 20px;
    box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #c5a065; /* Gold */
}
.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}
.custom-accordion .accordion-body {
    padding: 30px;
    background: #fff;
}
.badge.bg-light {
    background-color: #f8f9fa !important;
    color: #555 !important;
    font-weight: 500;
    padding: 8px 12px;
}
@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #dee2e6;
    }
}
/* --- About Page Refinements --- */

/* Trust Bar Utilities */
.tracking-wide {
    letter-spacing: 1.5px;
}
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.15) !important;
}
.text-gold {
    color: #c5a065 !important;
}

/* Timeline Professional Styling */
.timeline-wrapper {
    position: relative;
    padding-left: 20px;
    margin-top: 30px;
}
/* Вертикальная линия */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 7px; /* Центрируем относительно маркера */
    top: 5px;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-left: 35px;
    padding-bottom: 35px; /* Отступ между элементами */
}
.timeline-item:last-child {
    padding-bottom: 0;
}

/* Точка на линии */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #c5a065; /* Gold border */
    z-index: 2;
}

.timeline-content {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Легкая тень для объема */
    border: 1px solid rgba(0,0,0,0.03);
}

/* Медиа-запрос для разделителей в Trust Bar */
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
}
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.2; }
    100% { transform: scale(0.95); opacity: 0.5; }
}
/* Feedback Form Specifics */
.feedback-form {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9; /* Light background for contrast */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feedback-form .section-title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.question-group {
    margin-bottom: 20px;
}

.question-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.4;
    color: #444;
}

.question-group select,
.question-group input[type="text"],
.question-group input[type="date"],
.question-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.question-group textarea {
    min-height: 100px;
    resize: vertical;
}

.question-group select:focus,
.question-group input:focus,
.question-group textarea:focus {
    border-color: #0056b3; /* CAC Corporate Blue */
    outline: none;
    box-shadow: 0 0 5px rgba(0,86,179,0.2);
}

.event-btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.event-btn:hover {
    background-color: #004494;
}

#responseMessage {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}
.expertise-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
}

.exp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 101, 0.2);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.exp-card:hover {
    background: rgba(197, 160, 101, 0.1);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.exp-card i {
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}

.exp-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.exp-card .links {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}
/* Увеличиваем вертикальный разрыв между карточками на мобильных */
@media (max-width: 991px) {
    .expertise-visual-grid {
        margin-top: 3rem;
        grid-template-columns: 1fr 1fr; /* По две в ряд на планшетах */
    }
}

/* На больших экранах делаем карточки более квадратными и аккуратными */
.expertise-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 в ряд сверху */
    gap: 20px;
}

/* Делаем так, чтобы последние две карточки центрировались, если их 5 */
.exp-card:nth-child(4) { grid-column: 1 / 2; margin-left: 50%; }
.exp-card:nth-child(5) { grid-column: 2 / 3; margin-left: 50%; }

/* Если не хочешь сложной сетки, просто используй это для равномерности: */
.expertise-visual-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.exp-card {
    flex: 1 1 200px;
    max-width: 250px;
}
/* Выравнивание сетки на главной */
.expertise-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.exp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 101, 0.15);
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px; /* Фиксированная высота для пропорций */
}

.exp-card:hover {
    background: rgba(197, 160, 101, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.exp-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.exp-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.exp-card .links {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 576px) {
    .expertise-visual-grid {
        grid-template-columns: 1fr 1fr; /* По две в ряд на мобилках */
    }
}
/* Contact Page Refinement */
.form-control:focus, .form-select:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 101, 0.15);
    border-color: var(--gold) !important;
}

.icon-box {
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: scale(1.1);
}

.hover-gold:hover {
    color: var(--gold) !important;
    opacity: 1 !important;
}

/* Форма */
.card.shadow-lg {
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #b08d55;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 101, 0.3) !important;
}
//* --- Utilities for Hero Badges (Glass effect) --- */
.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.border-opacity-10 {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Опционально: легкий эффект при наведении на расписание */
.d-inline-flex.bg-opacity-10:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    cursor: default;
    transition: background-color 0.3s ease;
}
/* --- PARENTING 8-MODULE GRID --- */
.par-hero {
    background: linear-gradient(135deg, #002B5C 0%, #00152e 100%);
    position: relative;
}

.border-white-50 {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Карточки модулей */
.module-card-par {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.module-card-par:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.08);
    border-color: #C5A059;
}

/* Блок статистики */
.stats-box {
    background: #fff;
    border-left: 4px solid #C5A059;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* Анимация пульсации для диагностики */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.2; }
    100% { transform: scale(0.95); opacity: 0.5; }
}
.animate-pulse {
    animation: pulse 3s infinite ease-in-out;
}
/* management_landing.css */
/* Можно добавить в основной файл стилей или подключить отдельным */

/* Специфичные цвета для этого лендинга (совместимые с корп. стилем) */
.bg-navy { background-color: #0b1c3c !important; }
.bg-gold { background-color: #c5a059 !important; }
.text-gold { color: #c5a059 !important; }

/* Эффект Glassmorphism для карточек на темном фоне */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Карточки болей с легким hover-эффектом */
.hptm-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.hptm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 28, 60, 0.08) !important;
}

/* Кастомный Аккордеон для программы HPTM */
.custom-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2); /* Золотой бордер */
    margin-bottom: 10px;
}

.custom-accordion .accordion-button {
    background: rgba(255, 255, 255, 0.02);
    color: white;
    font-size: 1.15rem;
    padding: 25px;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(197, 160, 89, 0.1); /* Активный фон золотой */
    color: #c5a059;
    box-shadow: none;
}

.custom-accordion .accordion-body {
    padding: 20px 25px 30px 25px;
    line-height: 1.6;
}

/* Управление иконками аккордеона */
.custom-accordion .accordion-button::after {
    filter: invert(1);
    transform: scale(0.8);
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: sepia(100%) hue-rotate(5deg) saturate(500%);
}

/* Кнопки */
.btn-gold {
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #b08d45 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3) !important;
}
