@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Rubik:wght@500;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #FF9800;
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-main: #f8fafc;
    --bg-alt: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-main); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth;}
h1, h2, h3, .logo-text, .btn { font-family: 'Rubik', sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.light-bg { background-color: var(--bg-alt); }
.text-white { color: #fff !important; }
.z-10 { position: relative; z-index: 10; }

/* АНІМАЦІЇ */
.glow-effect { box-shadow: 0 0 15px rgba(37, 99, 235, 0.3); }
.glow-effect:hover { box-shadow: 0 0 25px rgba(37, 99, 235, 0.6); }
.hover-glow:hover { box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15); transform: translateY(-8px); }

/* =========================================
   ОНОВЛЕНА ШАПКА (HEADER) - КОМПАКТНА
   ========================================= */
.glass-nav { 
    position: fixed; width: 100%; top: 0; z-index: 1000; 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 10px 2%; /* Максимально зменшено відступи по боках */
    transition: var(--transition); 
    border-bottom: 1px solid transparent;
    flex-wrap: nowrap; 
}

.transparent-header { 
    background: rgba(15, 23, 42, 0.75); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}
.transparent-header nav a { color: #fff; }
.transparent-header nav a:hover { color: var(--primary); }
.transparent-header .logo-text { color: #fff; }
.transparent-header .logo-wrapper svg { stroke: #fff; }
.transparent-header .hamburger svg { stroke: #fff; }

.logo-wrapper { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--primary-dark); letter-spacing: 0.5px; white-space: nowrap; } /* Трохи зменшено лого */
.fw-light { font-weight: 500; color: var(--primary); }

.hamburger { display: none; background: transparent; border: none; cursor: pointer; color: var(--text-dark); }

/* Контейнер навігації */
.nav-content { 
    display: flex; align-items: center; justify-content: flex-end; 
    flex-grow: 1; margin-left: 10px;
    white-space: nowrap; 
}

/* Компактне меню */
nav { display: flex; align-items: center; }
nav a { margin: 0 7px; text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 0.85rem; transition: var(--transition); white-space: nowrap;}
nav a:hover { color: var(--primary); }

.header-contacts { display: flex; align-items: center; gap: 10px; margin-left: 10px; white-space: nowrap;}

/* Компактні телефони */
.header-phones { 
    display: flex; 
    flex-direction: row; 
    gap: 8px; 
    font-size: 0.75rem; 
    color: #fff; 
    align-items: center;
    white-space: nowrap;
}
.header-phones span { display: inline-block; font-weight: 600; letter-spacing: 0.5px; white-space: nowrap;}

/* КНОПКИ */
.btn { padding: 14px 28px; border-radius: 8px; font-size: 15px; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-block; border: none; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; white-space: nowrap; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-accent { background: var(--primary); color: #fff; border-radius: 4px;}
.btn-accent:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);}
.btn-outline-white { background: transparent; color: #fff; border: none; text-decoration: underline; font-weight: 500;}
.btn-outline-white:hover { color: var(--primary); text-decoration: underline;}

/* Компактна кнопка в шапці */
.transparent-header .btn-primary-header { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 8px 12px; font-size: 0.8rem; white-space: nowrap; }
.transparent-header .btn-primary-header:hover { background: rgba(255,255,255,0.25); }

.btn-edit { background: #ffc107; color: #000; }
.btn-edit:hover { background: #e0a800; transform: translateY(-2px); }
.btn-delete { background: #dc3545; color: #fff; }
.btn-delete:hover { background: #c82333; transform: translateY(-2px); }
.w-100 { width: 100%; }

/* =========================================
   НОВИЙ ГЕРОЙ ЕКРАН (HERO)
   ========================================= */
.hero-fullscreen { 
    position: relative; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    background-attachment: fixed; 
    padding-top: 100px; 
    padding-bottom: 0; 
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 1;
}

.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 10;}
.hero-content.text-center { text-align: center; max-width: 900px; padding: 0 20px; }
.hero-content h1 { font-size: 4rem; color: #fff; margin-bottom: 20px; text-transform: none; line-height: 1.1; font-weight: 800; }
.hero-content p { color: #e2e8f0; font-size: 1.25rem; margin-bottom: 40px; font-weight: 500; max-width: 700px; margin-left: auto; margin-right: auto;}

.hero-buttons { display: flex; gap: 20px; margin-bottom: 60px;}
.justify-center { justify-content: center; }

.hero-stats {
    width: 100%; 
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(5px); 
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 5%;
    position: relative;
    z-index: 10;
}
.hero-stats .stat-item { text-align: center; }
.hero-stats .stat-item h3 { color: #fff; font-size: 2.2rem; margin-bottom: 5px; font-weight: 700;}
.hero-stats .stat-item p { color: #cbd5e1; font-size: 0.95rem;}

.hero-social-sidebar {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 15;
}
.icon-side { width: 24px; height: 24px; filter: invert(1); opacity: 0.7; transition: var(--transition); }
.icon-side:hover { opacity: 1; transform: scale(1.2) translateY(-2px); filter: invert(36%) sepia(91%) saturate(1022%) hue-rotate(184deg) brightness(98%) contrast(97%); } 

/* =========================================
   ДОПОМІЖНІ КЛАСИ ДЛЯ ІНШИХ СЕКЦІЙ
   ========================================= */
.window-shape img { width: 100%; height: 100%; object-fit: cover; display: block; }

section { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.8rem; margin-bottom: 50px; color: var(--text-dark); }
.section-title.text-left { text-align: left; }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 20px; box-shadow: var(--shadow); }
.glass-card-dark { background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }

/* ПРО КОМПАНІЮ ТА ПОСЛУГИ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.stat-item h3 { font-size: 2.5rem; color: var(--primary); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-card { padding: 40px 30px; text-align: center; transition: var(--transition); }
.feature-icon { width: 48px; height: 48px; color: var(--primary); margin-bottom: 15px; }

/* ПРОДУКЦІЯ */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.product-img-wrapper { padding: 15px; background: #fff; border-bottom: 1px solid #f1f5f9;}
.product-img-wrapper img { width: 100%; height: 250px; object-fit: contain; border-radius: 10px; }
.product-info { padding: 25px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.product-price { display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-top: 15px; margin-bottom: 15px;}

/* МОНТАЖ */
.split-layout { display: flex; align-items: center; gap: 50px; }
.align-center { align-items: center; }
.info-text, .info-image { flex: 1; }
.custom-list { list-style: none; margin: 20px 0; }
.custom-list li { position: relative; padding-left: 35px; margin-bottom: 15px; font-weight: 500; }
.list-icon { position: absolute; left: 0; top: 2px; width: 20px; height: 20px; }
.notice-box { padding: 25px; border-left: 5px solid var(--accent); margin-top: 30px; }

/* ================= ГАЛЕРЕЯ РОБІТ (Masonry) ================= */
.gallery-masonry { column-count: 3; column-gap: 20px; }
.gallery-item { break-inside: avoid; margin-bottom: 20px; border-radius: 15px; overflow: hidden; position: relative; box-shadow: var(--shadow); transition: var(--transition); }
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(37, 99, 235, 0.2); opacity: 0; transition: var(--transition); z-index: 1; pointer-events: none; }
.gallery-item:hover::before { opacity: 1; }

/* КОНТАКТИ */
.parallax-section { position: relative; background: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed; background-size: cover; padding: 120px 0; }
.parallax-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.8) 100%); }
.contact-wrapper { display: flex; padding: 50px; gap: 60px; }
.contact-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between;}
#contact-form { flex: 1; background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
.contact-details { margin-bottom: 30px; }
.contact-item { font-size: 1.2rem; margin-bottom: 15px; font-weight: 600; display: flex; align-items: center;}
.contact-icon { width: 24px; height: 24px; margin-right: 15px; flex-shrink: 0; }
.contact-extra-info { background: rgba(0,0,0,0.2); padding: 25px; border-radius: 15px; margin-bottom: 30px; border: 1px solid rgba(255,255,255,0.05); }
.extra-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.extra-item:last-child { margin-bottom: 0; }
.extra-item svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.extra-item span { display: block; font-size: 0.85rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }
.extra-item strong { font-size: 1.1rem; color: #fff; }

.social-btn-group { display: flex; gap: 15px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; color: #fff; transition: var(--transition); }
.social-btn .icon { width: 16px; height: 16px; }
.social-btn.tg { background: #0088cc; }
.social-btn.viber { background: #665CAC; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

.custom-radio-group { display: flex; gap: 15px; margin-top: 10px; margin-bottom: 20px; }
.custom-radio { flex: 1; cursor: pointer; }
.custom-radio input[type="radio"] { display: none; }
.radio-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px; border: 2px solid rgba(255, 255, 255, 0.15); border-radius: 10px; background: rgba(255, 255, 255, 0.05); color: #cbd5e1; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; }
.radio-btn svg { width: 20px; height: 20px; }
.custom-radio:hover .radio-btn { background: rgba(255, 255, 255, 0.1); color: #fff; }
.custom-radio input[type="radio"]:checked + .radio-btn { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); transform: translateY(-2px); }
.glass-input { background: rgba(0,0,0,0.2) !important; color: #fff !important; border: 1px solid rgba(255,255,255,0.2) !important; padding: 18px 20px !important; }
.glass-input::placeholder { color: #94a3b8 !important; }
.glass-input:focus { border-color: var(--primary) !important; background: rgba(0,0,0,0.4) !important; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2) !important; }
input[type="text"], input[type="password"], textarea { width: 100%; padding: 15px 20px; margin-bottom: 20px; border-radius: 8px; font-family: inherit; font-size: 1rem; transition: var(--transition); border: 1px solid #cbd5e1; }
textarea { height: 120px; resize: vertical; }

/* АДМІН ПАНЕЛЬ */
.admin-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #f4f7fa; z-index: 2000; display: flex; }
.sidebar { width: 250px; background: #0f172a; color: #fff; display: flex; flex-direction: column; }
.sidebar-header { padding: 30px 20px; font-size: 24px; font-family: 'Rubik', sans-serif; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-menu { list-style: none; padding: 20px 0; flex-grow: 1; }
.sidebar-menu li { padding: 15px 25px; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 15px; font-weight: 500; opacity: 0.7; }
.sidebar-menu li svg { width: 20px; height: 20px; }
.sidebar-menu li:hover, .sidebar-menu li.active { background: rgba(255,255,255,0.1); opacity: 1; border-left: 4px solid var(--primary); }
.sidebar-menu li.logout { margin-top: auto; color: #ef4444; border-left: none; }
.main-content { flex: 1; padding: 40px; overflow-y: auto; }
.main-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.admin-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.admin-product-card { background: #fff; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); padding: 15px; text-align: center; display: flex; flex-direction: column; }
.admin-product-card img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.admin-product-card h3 { font-size: 1.1rem; color: #0f172a; }
.admin-product-card .price { color: var(--primary); font-weight: 700; margin: 10px 0 15px; font-size: 1.2rem; }
.admin-actions { display: flex; gap: 10px; margin-top: auto; }
.admin-actions .btn { padding: 10px; flex: 1; font-size: 0.9rem; border-radius: 6px; }
.admin-form-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; color: #475569; }

/* МОДАЛКИ (Логін та Редагування) */
.fullscreen-modal { position: fixed; z-index: 2500; left: 0; top: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; }
.login-box { width: 100%; max-width: 400px; padding: 40px; text-align: center; background: #fff; border-radius: 20px; }
.modal-content { background: #fff; padding: 40px; width: 90%; max-height: 90vh; overflow-y: auto; border-radius: 20px; position: relative; margin: auto;}
.close-btn { position: absolute; right: 25px; top: 20px; font-size: 35px; cursor: pointer; color: #94a3b8; transition: 0.3s; }
.close-btn:hover { color: #ef4444; }

/* АНІМАЦІЇ ПОЯВИ */
.reveal { opacity: 0; transform: translateY(25px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }

/* =========================================
   АДАПТАЦІЯ ДЛЯ ТЕЛЕФОНІВ І ПЛАНШЕТІВ
   ========================================= */

/* ОНОВЛЕНО: Брейкпоінт 1200px. Якщо екран менший - з'являється бургер-меню, щоб нічого не обрізалось! */
@media (max-width: 1200px) {
    .glass-nav { 
        background: #0f172a !important; 
        padding: 15px 20px; 
        border-bottom: none; 
        flex-wrap: wrap !important; /* Дозволяємо меню падати вниз */
    }
    .transparent-header { background: #0f172a !important; }
    
    .logo-wrapper { flex: 1; }
    .hamburger { display: block; order: 1; margin-left: auto; }
    
    /* ОНОВЛЕНО: Мобільне меню по центру і красиво в стовпчик */
    .nav-content { 
        display: none; width: 100%; flex-direction: column; order: 2; 
        margin: 15px 0 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); 
        gap: 25px; text-align: center; 
        white-space: normal; /* Знімаємо заборону переносу */
    }
    .nav-content.show { display: flex; }
    
    nav { display: flex; flex-direction: column; align-items: center; gap: 20px; }
    nav a { margin: 0; font-size: 1.1rem; white-space: normal;}
    
    .header-contacts { flex-direction: column; align-items: center; gap: 20px; margin-left: 0;}
    
    /* ОНОВЛЕНО: Номери телефонів на телефоні в стовпчик великим текстом */
    .header-phones { flex-direction: column; align-items: center; margin-right: 0; gap: 12px; margin-bottom: 10px; white-space: normal; }
    .header-phones span { font-size: 1rem; white-space: normal; }
    
    .transparent-header .btn-primary-header { padding: 12px 25px; font-size: 1rem; white-space: normal; }

    /* Герой екран (Мобільна) */
    .hero-fullscreen { padding-top: 100px; }
    .hero-content h1 { font-size: 2.6rem; }
    
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; gap: 15px; margin-bottom: 40px;}
    .hero-buttons .btn { width: 100%; max-width: 300px; }
    
    .hero-stats { 
        flex-direction: row; 
        flex-wrap: wrap;
        gap: 15px; 
        margin-top: 0; 
        border-top: none; 
        padding: 30px 5%;
        background: rgba(10, 14, 23, 0.9);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stats .stat-item { flex: 1; min-width: 90px; }
    .hero-stats .stat-item h3 { font-size: 1.8rem; }
    .hero-stats .stat-item p { font-size: 0.8rem; line-height: 1.2; }

    .hero-social-sidebar { display: none; } 

    section { padding: 60px 0; }
    .section-title { font-size: 2.2rem; margin-bottom: 30px; }
    .split-layout { flex-direction: column; text-align: center; gap: 30px; }
    .section-title.text-left { text-align: center; }
    .custom-list li { text-align: left; }
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    
    .parallax-section { padding: 60px 0; }
    .contact-wrapper { flex-direction: column; padding: 30px; gap: 30px; }
    .contact-info { text-align: center; justify-content: center;}
    .contact-item { justify-content: center; text-align: left; }
    .extra-item { flex-direction: column; text-align: center; }
    .social-btn-group { justify-content: center; }
    #contact-form { padding: 20px; }
    
    .admin-wrapper { flex-direction: column; }
    .sidebar { width: 100%; flex-direction: row; align-items: center; justify-content: space-between; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .sidebar-header { padding: 15px 0; font-size: 1.2rem; border-bottom: none; }
    .sidebar-menu { display: flex; overflow-x: auto; padding: 0; margin: 0; white-space: nowrap; gap: 5px; }
    .sidebar-menu li { padding: 10px 15px; font-size: 0.9rem; }
    .sidebar-menu li svg { display: none; } 
    .main-content { padding: 20px; }
    .main-header { flex-direction: column; gap: 15px; text-align: center; }
    .settings-grid { grid-template-columns: 1fr; }
    .admin-products-grid { grid-template-columns: 1fr; } 

    .gallery-masonry { column-count: 2; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .btn { width: 100%; text-align: center; }
    .custom-radio-group { flex-direction: column; gap: 10px; }
    .window-shape { border-width: 4px; }
    .gallery-masonry { column-count: 1; }

    .hero-stats { padding: 20px 10px; gap: 5px; flex-wrap: nowrap;}
    .hero-stats .stat-item h3 { font-size: 1.4rem; margin-bottom: 2px;}
    .hero-stats .stat-item p { font-size: 0.65rem; }
}

/* ================= ПЕРЕВАГИ В КУБІ ================= */
.cube-card { 
    position: relative; 
    overflow: hidden; 
    text-align: left; /* Забираємо центрування, ліворуч виглядає дорожче */
    padding: 35px 30px; 
    display: flex;
    flex-direction: column;
}

/* Велика прозора трійка на фоні */
.cube-watermark { 
    position: absolute; 
    right: 10px; 
    bottom: -30px; 
    font-size: 10rem; 
    color: rgba(37, 99, 235, 0.04); /* Дуже слабкий синій колір */
    font-weight: 900; 
    line-height: 1; 
    font-family: 'Rubik', sans-serif; 
    z-index: 0; 
    pointer-events: none;
    transition: var(--transition);
}

.cube-card:hover .cube-watermark {
    color: rgba(255, 152, 0, 0.08); /* При наведенні стає злегка помаранчевою */
    transform: scale(1.05);
}

.cube-card-content { 
    position: relative; 
    z-index: 1; 
}

.cube-header { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 20px;
}

.cube-icon-wrapper { 
    width: 45px; 
    height: 45px; 
    background: rgba(37, 99, 235, 0.1); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--accent); /* Помаранчеві іконки */
    flex-shrink: 0;
}

.cube-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.cube-title { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--primary); 
    margin: 0;
}

.cube-title sup { 
    color: var(--accent); 
    font-size: 1.2rem; 
    top: -0.5em; 
}

.cube-desc { 
    color: var(--text-light); 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin: 0;
}

.cube-desc strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}
