/* --- ДИЗАЙН-СИСТЕМА СВІТЛОЇ ТЕМИ --- */
        :root {
            --bg-base: #ffffff;
            --bg-muted: #f1f5f9;
            --bg-hover: #f8fafc;
            --border-light: #e2e8f0;
            --border-hover: #cbd5e1;
            
            --text-main: #0f172a;
            --text-muted: #64748b;
            
            --accent-black: #000000;
            --accent-white: #ffffff;
            
            /* Градієнт та колір хвилі */
            --gradient-accent: linear-gradient(90deg, #d900c4, #8b18ff);
            --wave-color: rgba(217, 0, 196, 0.5); 
            
            --ticker-accent-blue: #2A61FF; /* Фірмовий синій */
            
            --radius-md: 12px;
            --radius-pill: 999px;
            
            --shadow-tab: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
            --shadow-dropdown: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            
            --transition-fast: 0.15s ease-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.6;
            padding-top: var(--header-height, 140px);
        }

        :focus-visible {
            outline: 2px solid var(--accent-black);
            outline-offset: 2px;
        }

        /* --- ХЕДЕР --- */
        .header-custom {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1030;
            width: 100%;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--border-light);
            box-shadow: none;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            color: var(--text-main);
            padding-bottom: 0;
            line-height: 1.6;
        }

        .header-container {
            max-width: 1440px;
            margin: 0 auto;
        }

        .top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
            border-bottom: 1px solid var(--border-light);
        }

        .top-left {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-main);
            text-decoration: none;
            letter-spacing: 0;
        }

        .logo {
            width: 24px;
            height: 24px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .logo-wordmark {
            color: var(--text-main);
            font-size: 20px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: 0;
        }

        .role-switcher {
            display: flex;
            background-color: var(--bg-muted);
            border-radius: var(--radius-pill);
            padding: 4px;
        }

        @media (min-width: 992px) {
            .header-custom .role-switcher.d-lg-flex {
                display: flex !important;
            }
        }

	        .role-btn {
	            display: inline-flex;
	            align-items: center;
	            padding: 6px 16px;
	            border-radius: var(--radius-pill);
	            font-size: 14px;
	            font-weight: 600;
	            color: var(--text-muted);
	            text-decoration: none;
	            background: transparent;
	            border: none;
	            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .role-btn:hover {
            color: var(--text-main);
        }

        .role-btn.active {
            background-color: var(--bg-base);
            color: var(--text-main);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .top-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .lang-dropdown-wrapper {
            position: relative;
        }

        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-main);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background-color var(--transition-fast);
        }

        .lang-toggle:hover,
        .lang-toggle:focus {
            background-color: var(--bg-hover);
            color: var(--text-main);
            text-decoration: none;
        }

        .lang-toggle svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
            transition: transform var(--transition-fast);
        }

        .lang-dropdown-wrapper.active .lang-toggle svg {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 4px);
            right: 0;
            background-color: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 6px;
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            box-shadow: var(--shadow-dropdown);
            transition: all var(--transition-fast);
        }

        .lang-dropdown-wrapper.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header-custom .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .dropdown-item {
            display: block;
            padding: 8px 12px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 6px;
            transition: all var(--transition-fast);
        }

	        .dropdown-item:hover {
	            background-color: var(--bg-hover);
	            color: var(--text-main);
	        }

	        .dashboard-profile {
	            position: relative;
	            --workspace-border: rgba(18, 18, 18, 0.08);
	            --workspace-text: #161616;
	            --workspace-muted: #6d6d6d;
	            --workspace-accent: #8a2be2;
	            --workspace-accent-dark: #61149c;
	            --workspace-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
	            --workspace-shadow-soft: 0 16px 32px rgba(17, 17, 17, 0.05);
	        }

	        .dashboard-profile__trigger {
	            display: inline-flex;
	            align-items: center;
	            gap: 0.8rem;
	            padding: 0.35rem 0.5rem 0.35rem 0.35rem;
	            border-radius: 999px;
	            color: var(--workspace-text);
	            font-size: 14px;
	            background: #ffffff;
	            border: 1px solid var(--workspace-border);
	            box-shadow: var(--workspace-shadow-soft);
	            cursor: pointer;
	        }

	        .dashboard-profile__avatar {
	            display: inline-flex;
	            align-items: center;
	            justify-content: center;
	            width: 2.6rem;
	            height: 2.6rem;
	            border-radius: 50%;
	            color: #ffffff;
	            background: linear-gradient(135deg, var(--workspace-accent), var(--workspace-accent-dark));
	            font-size: inherit;
	            font-weight: 700;
	            letter-spacing: 0.08em;
	        }

	        .dashboard-profile__copy {
	            display: flex;
	            flex-direction: column;
	            align-items: flex-start;
	            line-height: 1.1;
	        }

	        .dashboard-profile__eyebrow {
	            color: var(--workspace-muted);
	            font-size: 0.76rem;
	            font-weight: 700;
	            letter-spacing: normal;
	            text-transform: none;
	        }

	        .dashboard-profile__name {
	            color: var(--workspace-text);
	            font-size: 0.95rem;
	            font-weight: 700;
	        }

	        .dashboard-profile__menu {
	            min-width: 270px;
	            border: 1px solid var(--workspace-border);
	            border-radius: 1.25rem;
	            box-shadow: var(--workspace-shadow);
	            padding: 0.75rem;
	        }

	        .dashboard-profile__menu-head {
	            display: flex;
	            flex-direction: column;
	            gap: 0.2rem;
	            padding: 0.4rem 0.75rem 0.85rem;
	            border-bottom: 1px solid var(--workspace-border);
	            margin-bottom: 0.5rem;
	        }

	        .dashboard-profile__menu-eyebrow {
	            color: var(--workspace-muted);
	            font-size: 0.76rem;
	            font-weight: 700;
	            letter-spacing: 0.12em;
	            text-transform: uppercase;
	        }

	        .dropdown-item.dashboard-profile__item {
	            display: flex;
	            align-items: center;
	            gap: 0.5rem;
	            border-radius: 0.85rem;
	            padding: 0.75rem 0.85rem;
	            font-weight: 600;
	        }

	        .dropdown-item.dashboard-profile__item i {
	            flex: 0 0 auto;
	            font-size: 1rem;
	            line-height: 1;
	        }

	        .dropdown-item.dashboard-profile__item span {
	            min-width: 0;
	        }

	        .dropdown-item.dashboard-profile__item:hover,
	        .dropdown-item.dashboard-profile__item.active {
	            background: rgba(138, 43, 226, 0.08);
	            color: var(--workspace-text);
	        }

	        .dashboard-profile.active .dropdown-menu {
	            opacity: 1;
	            visibility: visible;
	            transform: translateY(0);
	        }

	        .auth-buttons {
	            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-login {
            color: var(--text-main);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: color var(--transition-fast);
        }

        .btn-login:hover {
            color: var(--text-muted);
        }

        .btn-signup {
            background-color: var(--accent-black);
            color: var(--accent-white);
            text-decoration: none;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            font-size: 14px;
            font-weight: 600;
            transition: opacity var(--transition-fast);
        }

        .btn-signup:hover {
            opacity: 0.8;
        }

        /* Нижній рядок */
        .bottom-row {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 12px 24px;
            gap: 28px;
            min-height: 56px;
        }

	        .bottom-row.hidden {
	            display: none;
	        }

	        .d-none {
	            display: none !important;
	        }

	        .workspace-topnav__panels {
	            flex: 1 1 auto;
	            min-width: 0;
	        }

	        .workspace-topnav__panel {
	            width: 100%;
	        }

	        .workspace-topnav__list {
	            overflow: visible;
	            scrollbar-width: auto;
	            padding-bottom: 0;
	            flex: 1 1 auto;
	        }

	        .menu-list {
	            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .menu-item {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .menu-item:hover {
            color: var(--text-main);
        }

        /* --- АНІМАЦІЯ ХВИЛЬ --- */
        @keyframes calm-ripple {
            0% {
                box-shadow: 0 0 0 0 var(--wave-color);
            }
            100% {
                box-shadow: 0 0 0 8px rgba(217, 0, 196, 0);
            }
        }

	        .dashboard-top-link {
	            gap: 0;
	        }

	        .dashboard-top-link__icon {
	            display: none;
	        }

	        .dashboard-top-link:not(.btn-animated):hover,
	        .dashboard-top-link:not(.btn-animated).active {
	            color: var(--text-main);
	        }

	        .btn-animated {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-accent);
            color: var(--accent-white);
            padding: 8px 24px;
            border-radius: var(--radius-pill);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            z-index: 1;
            transition: filter 0.2s ease;
        }

        .btn-animated::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-pill);
            z-index: -1;
            will-change: box-shadow;
            animation: calm-ripple 2.5s infinite ease-out;
        }

        .btn-animated:hover {
            filter: brightness(1.1);
        }

        /* --- АДАПТИВНІСТЬ --- */
        @media (max-width: 767.98px) {
            .top-row,
            .bottom-row {
                padding-inline: 16px;
            }
            .bottom-row {
                overflow-x: auto;
            }
            .top-row {
                flex-wrap: wrap;
                gap: 16px;
            }
            .top-left,
            .top-right {
                flex-wrap: wrap;
                gap: 16px;
            }
            .menu-list {
                flex-wrap: nowrap;
                gap: 24px;
            }
        }

        .hero {
            position: relative;
            width: 100%;
            padding: 80px 24px; /* Зменшена висота */
            overflow: hidden;
            background-color: var(--bg-base);
            background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        /* М'яке світіння на фоні */
        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 87, 183, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
            filter: blur(120px);
            z-index: 1;
            pointer-events: none;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px; /* Трохи менший розрив для компактності */
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* --- ЛІВА ЧАСТИНА --- */
        .hero-content {
            max-width: 620px;
        }

        .hero-title {
            font-size: 56px; /* Трохи менший шрифт для балансу з висотою */
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: 0;
            color: var(--text-main);
            margin-bottom: 24px;
        }

        .text-ua-flag {
            background: linear-gradient(135deg, #0057B7 0%, #007FFF 40%, #FFD700 60%, #FFD700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            display: inline-block;
            filter: drop-shadow(0 0 10px rgba(0, 87, 183, 0.1));
        }

        .hero-subtitle {
            font-size: 19px;
            color: var(--text-muted);
            line-height: 1.6;
            font-weight: 450;
            max-width: 520px;
        }

        /* --- ПРАВА ЧАСТИНА: Картки однієї висоти --- */
        .hero-actions-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .action-card {
            position: relative;
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 24px 32px;
            min-height: 110px; /* ФІКСОВАНА МІНІМАЛЬНА ВИСОТА ДЛЯ ОБОХ КНОПОК */
            background-color: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
        }

        .action-card:hover {
            border-color: var(--text-main);
            transform: translateY(-4px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
        }

        .card-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background-color: var(--bg-muted);
            color: var(--text-main);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .action-card:hover .card-icon-wrapper {
            background-color: var(--text-main);
            color: var(--bg-base);
        }

        .card-text {
            flex: 1;
        }

        .card-title {
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 2px;
        }

        .card-desc {
            display: block;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .card-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-muted);
            color: var(--text-main);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .action-card:hover .card-arrow {
            background-color: var(--accent-black);
            color: var(--accent-white);
            transform: translateX(6px);
        }

        /* Адаптивність */
        @media (max-width: 1024px) {
            .hero-title { font-size: 46px; }
        }

        @media (max-width: 900px) {
            .hero { padding: 60px 24px; }
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-content { max-width: 100%; margin-bottom: 40px; display: flex; flex-direction: column; align-items: center; }
            .action-card { text-align: left; min-height: auto; } /* На мобільних висота може бути авто */
        }
        .leaders {
            padding: 60px 0;
            background-color: var(--bg-base);
            border-bottom: 1px solid var(--border-light);
            overflow: hidden;
        }

        .leaders-title {
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        /* Контейнер для стрічки з ефектом затухання по боках */
        .marquee-container {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
        }

        /* Маски для плавного зникнення логотипів */
        .marquee-container::before,
        .marquee-container::after {
            content: "";
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-base), transparent);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-base), transparent);
        }

        /* Сама стрічка */
        .marquee-track {
            display: flex;
            align-items: center;
            gap: 80px; /* Велика відстань між лого для чистоти */
            animation: marquee-scroll 30s linear infinite;
        }

        .marquee-container:hover .marquee-track {
            animation-play-state: paused;
        }

        .leader-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 32px; /* Фіксована висота для всіх логотипів */
            width: auto;
            filter: grayscale(1) opacity(0.5);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .leader-logo img {
            display: block;
            height: 100%;
            max-width: 180px;
            object-fit: contain;
        }

        .leader-logo:hover {
            filter: grayscale(0) opacity(1);
            transform: scale(1.05);
        }

        @keyframes marquee-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Зсув на половину дубльованого списку */
        }

        /* Адаптивність */
        @media (max-width: 768px) {
            .leaders-title { font-size: 12px; }
            .marquee-track { gap: 50px; }
            .leader-logo { height: 26px; }
        }
        .testing-section {
            padding: 80px 24px;
            background-color: var(--bg-base);
            border-bottom: 1px solid var(--border-light);
            /* Додаємо таку ж сітку, як у Hero, але ледь помітну, для цілісності */
            background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        .section-header {
            max-width: 1280px;
            margin: 0 auto 48px;
        }

        .section-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--ticker-accent-blue);
            text-transform: uppercase;
            letter-spacing: 0;
            margin-bottom: 8px;
            display: block;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: 0;
        }

        .testing-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .test-card {
            position: relative;
            padding: 32px 24px;
            background-color: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            /* Точна синхронізація з Hero картками */
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04);
        }

        /* ПОВНИЙ ЗБІГ З HERO: Чорний бордер + глибока тінь + підйом */
        .test-card:hover {
            border-color: var(--text-main); 
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
        }

        .test-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background-color: var(--bg-muted);
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .test-card:hover .test-icon {
            background-color: var(--text-main);
            color: var(--bg-base);
        }

        .test-name {
            font-size: 19px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .test-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ПЛАШКА NEW */
        .badge-new {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--gradient-accent);
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            padding: 4px 8px;
            border-radius: 6px;
            letter-spacing: 0;
        }

        /* Адаптивність */
        @media (max-width: 1100px) {
            .testing-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 900px) {
            .testing-grid { grid-template-columns: repeat(2, 1fr); }
            .section-title { font-size: 34px; }
        }

        @media (max-width: 600px) {
            .testing-grid { grid-template-columns: 1fr; }
            .test-card { padding: 24px; }
        }

        .priorities-section {
            padding: 100px 24px;
            background-color: var(--bg-base);
            border-bottom: 1px solid var(--border-light);
            background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        .priorities-header {
            max-width: 1280px;
            margin: 0 auto 60px;
            text-align: left; /* Заголовок залишаємо зліва для системності з What We Test */
        }

        .priorities-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--ticker-accent-blue);
            text-transform: uppercase;
            letter-spacing: 0;
            margin-bottom: 12px;
            display: block;
        }

        .priorities-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: 0;
        }

        .priorities-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .priority-card {
            padding: 48px 32px;
            background-color: var(--bg-base);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center; /* Центрування іконки та тексту */
            text-align: center;   /* Центрування тексту */
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04);
            will-change: transform, box-shadow;
        }

        .priority-card:hover {
            border-color: var(--text-main);
            transform: translateY(-6px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
        }

        /* Іконка в м'якому квадраті (Squircle) */
        .priority-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px; 
            background-color: var(--bg-muted);
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            transition: all 0.3s ease;
        }

        .priority-card:hover .priority-icon {
            background-color: var(--text-main);
            color: var(--bg-base);
            transform: scale(1.05);
        }

        .priority-icon svg {
            width: 28px;
            height: 28px;
        }

        .priority-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .priority-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 300px; /* Обмежуємо ширину для кращого вигляду при центруванні */
        }

        @media (max-width: 1024px) {
            .priorities-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .priorities-grid { grid-template-columns: 1fr; }
            .priority-card { padding: 40px 24px; }
            .priorities-title { font-size: 34px; }
        }

        .feedback-section {
            padding: 100px 24px;
            background-color: var(--bg-base);
            border-bottom: 1px solid var(--border-light);
            background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        .feedback-main-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
        }

        /* Заголовок притиснутий в нуль до лівого краю */
        .feedback-header {
            text-align: left;
            margin-bottom: 80px;
            padding-left: 0; 
        }

        .feedback-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--ticker-accent-blue);
            text-transform: uppercase;
            letter-spacing: 0;
            margin-bottom: 12px;
            display: block;
        }

        .feedback-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: 0;
        }

        .timeline-wrapper {
            position: relative;
            padding-left: 0;
        }

        /* Вертикальна лінія синхронізована з центром фото (30px від лівого краю) */
        .timeline-wrapper::before {
            content: '';
            position: absolute;
            left: 30px; 
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--border-light) 10%, var(--border-light) 90%, transparent);
        }

        .timeline-item {
            position: relative;
            /* Відступ від лінії до тексту */
            padding-left: 90px; 
            margin-bottom: 100px;
            max-width: 1100px;
        }

        /* Фото автора стоїть на лінії */
        .timeline-node {
            position: absolute;
            left: 0;
            top: 5px;
            width: 60px;
            height: 60px;
            background-color: var(--bg-muted);
            border: 1px solid var(--border-light);
            border-radius: 50%;
            overflow: hidden;
            z-index: 2;
        }

        .timeline-node img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .timeline-content {
            position: relative;
        }

        /* Велика лапка */
        .timeline-content::before {
            content: '“';
            position: absolute;
            top: -40px;
            left: -20px;
            font-size: 100px;
            font-family: 'Inter', serif;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.15;
            pointer-events: none;
        }

        .timeline-quote {
            font-size: 22px;
            line-height: 1.6;
            color: var(--text-main);
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0;
        }

        .timeline-meta {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .meta-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
        }

        .meta-pos {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            max-width: 800px;
        }

        @media (max-width: 768px) {
            .timeline-wrapper::before { left: 25px; }
            .timeline-node { width: 50px; height: 50px; }
            .timeline-item { padding-left: 70px; margin-bottom: 80px; }
            .timeline-quote { font-size: 18px; }
            .feedback-title { font-size: 32px; }
        }
        
        .blog-section {
            padding: 100px 24px;
            background-color: var(--bg-base);
            border-bottom: 1px solid var(--border-light);
            background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        .blog-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Header з кнопкою справа */
        .blog-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .blog-header-text {
            text-align: left;
        }

        .blog-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--ticker-accent-blue);
            text-transform: uppercase;
            letter-spacing: 0;
            margin-bottom: 12px;
            display: block;
        }

        .blog-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: 0;
            margin: 0;
        }

        .btn-all-posts {
            padding: 12px 24px;
            border: 1px solid var(--border-light);
            border-radius: 99px;
            color: var(--text-main);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-all-posts:hover {
            border-color: var(--text-main);
            background-color: var(--bg-muted);
        }

        /* Сітка карток */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .blog-card {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            group;
        }

        .blog-card-image {
            width: 100%;
            aspect-ratio: 16/10;
            background-color: var(--bg-muted);
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 24px;
            border: 1px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .blog-card-image {
            border-color: var(--text-main);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }

        .blog-card-date {
            font-family: monospace;
            font-size: 12px;
            font-weight: 700;
            color: var(--ticker-accent-blue);
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .blog-card-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.3;
            margin-bottom: 16px;
            letter-spacing: 0;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-card-title {
            color: var(--ticker-accent-blue);
        }

        .blog-card-excerpt {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-card-link {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .blog-card-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-card-link svg {
            transform: translateX(4px);
        }

        /* Адаптивність */
        @media (max-width: 1024px) {
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .blog-top { flex-direction: column; align-items: flex-start; gap: 24px; }
            .blog-grid { grid-template-columns: 1fr; }
            .blog-title { font-size: 32px; }
        }
        
        :root {
            /* ОНОВЛЕНО: Додано фіолетовий для кнопки як на фото */
            --accent-pink: #ff3b8f; 
            --accent-purple: #9900ff; 
            --footer-bg: #0a0b0d;
            --footer-border: rgba(255, 255, 255, 0.05); /* Дуже м'який бордер */
            --footer-text: #ffffff;
            --footer-muted: rgba(255, 255, 255, 0.6);
        }

        .site-footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 100px 24px 60px;
            border-top: 1px solid var(--footer-border);
            position: relative;
            overflow: hidden;
            
            /* ФОН: Кібер-сканер */
            background-image: repeating-linear-gradient(
                -45deg,
                rgba(255, 255, 255, 0.015) 0px,
                rgba(255, 255, 255, 0.015) 1px,
                transparent 1px,
                transparent 8px
            );
        }

        /* М'яке кібер-світіння (у кутах) */
        .site-footer::before {
            content: '';
            position: absolute;
            top: -10%;
            right: 10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 59, 143, 0.1) 0%, transparent 60%);
            filter: blur(90px);
            z-index: 0;
            pointer-events: none;
        }

        .site-footer::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 120, 255, 0.05) 0%, transparent 60%);
            filter: blur(90px);
            z-index: 0;
            pointer-events: none;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Головна сітка: 4 рівні колонки */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .footer-col-title {
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0;
            margin-bottom: 28px;
        }

        .footer-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-menu a {
            font-size: 15px;
            color: var(--footer-muted);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            display: inline-block;
        }

        .footer-menu a:hover {
            color: #ffffff;
            transform: translateX(6px);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        /* Нижня частина: Відцентрована */
        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: 60px;
            border-top: 1px solid var(--footer-border);
            gap: 36px;
        }

        /* Соціальні іконки по центру */
        .footer-socials {
            display: flex;
            gap: 20px; /* Більше повітря між іконками */
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .social-link:hover {
            background-color: #ff3b8f; /* Акцентний колір при наведенні */
            border-color: #ff3b8f;
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 59, 143, 0.4);
        }

        /* Текст копірайту по центру */
        .footer-copyright {
            text-align: center;
            font-size: 14px;
            color: var(--footer-muted);
            line-height: 1.8;
        }

        .footer-copyright strong {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            display: block;
            margin-bottom: 12px;
            font-size: 15px;
        }

        /* Адаптивність */
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
        }

        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .footer-bottom { padding-top: 40px; gap: 28px; }
        }

        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-socials { gap: 12px; flex-wrap: wrap; justify-content: center; }
        }
