
/* ========================================
   css/base/reset.css
   ======================================== */

/* ========================================
   БАЗОВІ СТИЛІ ТА СКИДАННЯ
   ======================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #cff3f3;
    color: #333;
    overflow-x: hidden;
}

/* Загальні стилі для секцій */
section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    background-color: transparent !important;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s ease-in-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Прибираємо фон у секціях FAQ та Blog */
#faq,
#blog {
    background: none !important;
}

/* ========================================
   css/base/typography.css
   ======================================== */

/* ========================================
   ТИПОГРАФІКА
   ======================================== */

h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.logo-header {
    color: #ff5050;
}

.logo-footer {
    color: #a70404;
}

.highlight {
    color: #ff4e00;
    font-weight: 700;
}

.highlight-start {
    color: red;
    font-weight: 700;
}

/* Centered text */
.centered {
    text-align: center;
}

.centered-header,
.centered-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

/* Прихований заголовок (для доступності) */
.hidden-heading {
    display: none;
}

/* Адаптивна типографіка */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    #portfolio h2,
    #testimonials h2,
    .extras-section h2,
    .info-section h2,
    section h2 {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 38px !important;
        margin-bottom: 8px !important;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 20px;
    }
}

/* ========================================
   css/layout/header.css
   ======================================== */

/* ========================================
   ШАПКА САЙТУ
   ======================================== */

header {
    background-image: url('branding/header-photo.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 20px;
    position: relative;
    text-align: center;
    /* overflow: hidden; */
}

header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

header h1,
header nav {
    position: relative;
    z-index: 2;
}

/* Прапор України */
.flag-ua {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 40px;
    background: linear-gradient(to bottom, #0057b7 50%, gold 50%);
    border: 1px solid #000;
    border-radius: 4px;
    animation: 2s ease-in-out infinite flag-wave;
    transform-origin: left center;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    z-index: 10;
}

@keyframes flag-wave {

    0%,
    50%,
    100% {
        transform: rotate(0) skewY(0);
    }

    25% {
        transform: rotate(2deg) skewY(2deg);
    }

    75% {
        transform: rotate(-2deg) skewY(-2deg);
    }
}

/* YouTube бейдж */
#side-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
}

.video-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.yt-wrapper {
    background: #979494;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yt-wrapper img {
    display: block;
    width: 100px;
    transition: transform 0.3s;
}

.badge-text {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #222;
    text-align: center;
}

/* Темна тема переключення */
.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 14px;
    z-index: 10;
}

.theme-toggle input {
    margin-right: 5px;
}

.theme-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3498db, 0 0 0 6px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease;
}


@media (min-width: 768px) {
    .yt-wrapper {
        flex-direction: row;
        align-items: center;
        padding: 5px 10px;
    }

    .yt-wrapper img {
        transform: scale(1);
        margin-right: 10px;
    }

    .video-link:hover .yt-wrapper img {
        transform: scale(1.1);
    }

    .badge-text {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 60px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        background-size: cover;
    }

    h1 {
        font-size: 24px;
        margin: 10px 0 0;
        order: 3;
        width: 100%;
        text-align: center;
    }

    .theme-toggle {
        margin-top: 15px;
        padding-left: 0;
        order: 2;
    }
}

@media (max-width: 420px) {
    #side-badge .badge-text {
        display: none !important;
    }

    #side-badge .yt-wrapper img {
        width: 70px;
    }

    h1 {
        font-size: 38px !important;
        margin-bottom: 8px !important;
    }

    header {
        padding: 50px 10px;
        width: 100%;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .theme-toggle {
        margin-top: 12px;
        padding-left: 0;
        order: 2;
    }
}

/* Альбомна орієнтація для всіх екранів */

@media (orientation: landscape) {
    header {
        min-height: clamp(260px, 50vh, 420px);
        background-size: cover;
    }
}


/* ====== НОВОРІЧНІ СТИЛІ ДЛЯ HEADER ====== */

/* Контейнер для падаючого снігу */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

/* Сніжинки */
.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* Стилі для логотипу в header */
.logo-header-main {
    position: relative;
    display: inline-block;
}

/* Літера W з шапкою */
.letter-w-christmas {
    position: relative;
    display: inline-block;
}

/* Червона новорічна шапка на W */
.santa-hat {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(calc(-50% - 45px));
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 22px solid #dc143c;
    border-radius: 2px;
    z-index: 10;
}

.santa-hat::before {
    content: '';
    position: absolute;
    top: 22px;
    left: -15px;
    width: 30px;
    height: 8px;
    background: white;
    border-radius: 0 0 8px 8px;
}

.santa-hat::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Ялинка в header */
.christmas-tree-header {
    position: relative;
    display: inline-block;
    margin-left: -10px;
    width: 25px;
    height: 50px;
    vertical-align: middle;
    transform: translateY(-8px);
}

.tree-top {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid #228b22;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.tree-middle {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 20px solid #2d8b2d;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.tree-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #196619;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.tree-trunk {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: #8b4513;
    border-radius: 1px;
}

.tree-star {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    animation: twinkle 1.5s ease-in-out infinite;
    z-index: 10;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        filter: brightness(1);
    }

    50% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1.15);
        filter: brightness(1.3);
    }
}

.snow-on-tree {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0.4);
}

/* Сніг на логотипі */
.logo-snow-effect {
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 50% 50% 0 0 / 12px 12px 0 0;
    pointer-events: none;
    z-index: 1;
}

/* Адаптивність для мобільних */
@media (max-width: 768px) {
    .santa-hat {
        top: -14px;
        left: 50%;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 18px solid #dc143c;
        transform: translateX(calc(-50% - 35px));
    }

    .santa-hat::before {
        top: 18px;
        left: -12px;
        width: 24px;
        height: 6px;
    }

    .santa-hat::after {
        width: 10px;
        height: 10px;
    }

    .christmas-tree-header {
        height: 40px;
        width: 20px;
        margin-left: 8px;
    }

    .tree-star {
        font-size: 12px;
        top: -12px;
    }

    .tree-top {
        bottom: 24px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 14px solid #228b22;
    }

    .tree-middle {
        bottom: 12px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 16px solid #2d8b2d;
    }

    .tree-bottom {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 16px solid #196619;
    }

    .snow-on-tree {
        top: 40px;
        width: 24px;
        height: 7px;
    }
}

/* Для дуже маленьких екранів */
@media (max-width: 480px) {
    .santa-hat {
        top: -10px;
        left: 50%;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 14px solid #dc143c;
        transform: translateX(calc(-50% - 38px));
    }

    .santa-hat::before {
        top: 14px;
        left: -8px;
        width: 16px;
        height: 5px;
    }

    .santa-hat::after {
        width: 8px;
        height: 8px;
        top: -5px;
        left: -4px;
    }

    .christmas-tree-header {
        height: 32px;
        width: 16px;
        margin-left: 6px;
    }

    .tree-star {
        font-size: 10px;
        top: -10px;
    }

    .snow-on-tree {
        top: 30px;
        width: 20px;
        height: 6px;
    }
}

@media (max-width: 420px) {
    .santa-hat {
        top: -18px;
        left: 50%;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 18px solid #dc143c;
        transform: translateX(calc(-50% - 35px));
    }

    .santa-hat::before {
        top: 18px;
        left: -10px;
        width: 20px;
        height: 6px;
    }

    .santa-hat::after {
        width: 8px;
        height: 8px;
        top: -5px;
        left: -4px;
    }

    .christmas-tree-header {
        height: 30px;
        width: 15px;
        margin-left: 2px;
        transform: translate(-5px, -8px);
    }

    .tree-star {
        font-size: 9px;
        top: -16px;
    }

    .logo-snow-effect {
        width: 85%;
        left: 6%;
    }

    .snow-on-tree {
        top: 35px;
        width: 18px;
        height: 5px;
    }
}

/* ========================================
   css/layout/navigation.css
   ======================================== */

/* ========================================
   НАВІГАЦІЯ
   ======================================== */

nav {
    margin-top: 20px;
    line-height: 1.8;
    text-align: center;
}

nav a {
    color: #ffffff;
    /* Було #fff — зміни на повний білий */
    margin: 0 15px;
    text-decoration: none;
    font-weight: 700;
    transition: color .3s;
}

nav a:hover {
    color: red;
}

/* Бургер-меню */
.burger {
    order: 1;
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    justify-content: center;
    margin-left: auto;
    z-index: 1100;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

/* Прибираємо квадрат при звичайному кліку */
.burger:focus {
    outline: none;
}

/* Показуємо рамку ТІЛЬКИ при клавіатурній навігації (Tab) */
.burger:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 3px;
    border-radius: 4px;
}

.burger span {
    height: 3px;
    width: 80%;
    display: block;
    transition: .3s;
    background-color: #e4e2e2;
}

.burger.active {
    justify-content: center;
    align-items: center;
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Адаптивне меню */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    #navMenu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        top: 40px;
        right: 0;
        background-color: #888686;
        z-index: 1000;
        padding: 20px;
    }

    #navMenu.active {
        display: flex !important;
        z-index: 1100;
        position: fixed;
        top: 120px;
        right: 10px;
        background-color: #8fd6e7;
        padding: 7px;
        height: 74%;
        width: 35%;
        max-width: none;
        border-radius: 5px;
    }

    #navMenu a {
        color: #161616;
        padding: 4px 15px;
        text-decoration: none;
        font-size: 16px;
        margin-bottom: -15px;
        display: block;
    }
}

@media (max-width: 420px) {
    .burger {
        display: flex;
    }

    #navMenu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        top: 40px;
        right: 0;
        background-color: #888686;
        z-index: 1000;
        padding: 20px;
    }

    #navMenu.active {
        display: flex !important;
        z-index: 1100;
        position: fixed;
        top: 100px;
        right: 5px;
        background-color: #8fd6e7;
        padding: 7px 10px;
        padding-bottom: 25px;
        height: auto;
        max-height: 90vh;
        width: clamp(180px, 45%, 260px);
        border-radius: 5px;
        flex-direction: column;
        align-items: flex-start;
        overflow-y: auto;
    }

    #navMenu a {
        color: #161616;
        padding: 5px 15px;
        text-decoration: none;
        font-size: 15px;
        margin-bottom: -15px;
        display: block;
    }
}

@media (max-width: 270px) {
    .burger {
        width: 18px;
        height: 15px;
    }

    .burger span {
        height: 2px;
    }

    #navMenu {
        padding: 8px;
    }

    #navMenu.active {
        height: 30%;
        width: 55%;
    }

    #navMenu a {
        font-size: 10px;
        padding: 6px 10px;
    }
}

/* ========================================
   css/layout/footer.css
   ======================================== */

/* ========================================
   ФУТЕР
   ======================================== */

footer {
    background: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color .3s;
}

.footer-link:hover {
    color: #ff5050;
    text-decoration: underline;
}

.footer-link.highlighted {
    font-weight: 700;
    color: #007bff;
    text-decoration: none;
}

.footer-link.highlighted:hover {
    text-decoration: underline;
}

.highlighted-icon {
    font-size: 1.2em;
    margin-left: 5px;
}

/* Слоган з емоджі та світінням */
.footer-brand {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
}

.footer-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: underline;
    position: relative;
}

.footer-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff;
    border-radius: 2px;
    z-index: -1;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff;
    }

    50% {
        box-shadow: 0 0 12px #ffffff, 0 0 24px #ffffff, 0 0 36px #ffffff;
    }

    100% {
        box-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff, 0 0 24px #ffffff;
    }
}

/* Футерна навігація з неоновим світінням */
.footer-nav {
    margin-top: 20px;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding: 12px 15px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    border-radius: 12px;
    border: 1.5px solid #00ffff;
    box-shadow: 0 0 6px #00ffff, 0 0 12px #00ffff, 0 0 18px #00ffff;
    transition: box-shadow 0.3s ease-in-out;
    max-width: fit-content;
}

.footer-nav ul:hover {
    box-shadow: 0 0 12px #00ffff, 0 0 18px #00ffff, 0 0 24px #00ffff;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #9be8ff;
}

/* Юридична навігація */
.legal-nav {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-nav li {
    margin: 0;
}

.legal-nav a {
    text-decoration: none;
    color: #66CCFF;
    font-weight: 500;
    padding: .3rem .6rem;
    border-radius: 6px;
    transition: background-color .3s, color .3s;
    font-size: 16px;
}

.legal-nav a:hover {
    background-color: #0077CC;
    color: #fff;
}

/* Статистика (для десктопу) */
.stats-box {
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px;
    background: #1e1e1e;
    color: #fff;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.stats-box div {
    margin: 6px 0;
}

/* Адаптив */
@media (max-width: 768px) {
    .stats-box div:nth-child(4) {
        display: none;
    }
}

@media (max-width: 420px) {
    .footer-text {
        font-size: 14px;
    }

    .footer-text::after {
        box-shadow: 0 0 4px #ffffff, 0 0 8px #ffffff, 0 0 12px #ffffff;
    }

    .footer-nav ul {
        flex-wrap: nowrap;
        gap: 4px;
    }

    .footer-nav a {
        font-size: 10px;
        white-space: nowrap;
        padding: 1px 3px;
        flex-shrink: 1;
    }

    .legal-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .legal-nav a {
        display: block;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
        text-align: center;
        font-size: 14.5px;
    }

    .stats-box {
        max-width: 95%;
        padding: 10px;
    }

    .stats-box div {
        font-size: .9rem;
    }
}

/* ========================================
   css/components/buttons.css
   ======================================== */

/* ========================================
   КНОПКИ
   ======================================== */

.btn {
    display: inline-block;
    margin: 4px 0;
    padding: 10px 15px;
    background-color: #ff5050;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: background-color .3s;
    text-align: center;
    font-weight: 600;
}

.btn:hover {
    background-color: #c00;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3498db, 0 0 0 6px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease;
}

/* Кнопка CTA */
a.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: .3s;
    text-transform: uppercase;
    cursor: pointer;
}

a.cta-button:hover {
    background-color: #3498db;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

a.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3498db, 0 0 0 6px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease;
}

/* Кнопка калькулятор */
.calc-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .3s;
    background-color: #ff5050;
    border-radius: 8px;
}

.calc-button:hover {
    background-color: #e04444;
}

.calc-button-1 {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .3s;
    background-color: #148a04;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.calc-button-1:hover {
    background-color: #3cb118;
}

/* Viber кнопка */
.viber-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .3s;
    background-color: #7360f2;
    border: none;
    border-radius: 5px;
}

.viber-button:hover {
    background-color: #5a48d1;
}

/* Прайс кнопки */
.price-btn,
.price-btn-1 {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color .3s;
}

.price-btn {
    background-color: #07c;
}

.price-btn:hover {
    background-color: #005fa3;
}

.price-btn-1 {
    background-color: #47a805;
}

.price-btn-1:hover {
    background-color: #119905;
}

/* Діагностика ПК */
.diag-button {
    display: block;
    text-align: center;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #38bdf8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.diag-button:hover {
    background-color: #0ea5e9;
}

/* Primary кнопка */
.btn-primary {
    background-color: #289fa7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    display: inline-block;
    transition: background-color .3s;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #218838;
}

/* Кнопки навичок */
.btn-open-skills {
    background: #18b190;
}

.btn-open-skills:hover {
    background: #159276;
}

.btn-achievement {
    background: #0c6e8b;
}

.btn-achievement:hover {
    background: #0a5a6c;
}

/* UTM посилання */
.utm-link-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
    margin: 20px 0;
}

.utm-link-btn:hover {
    background: #0056b3;
}

/* Кнопка міні-курсів */
.mini-course-button,
.mini-course-canva-button,
.mini-course-pit-button {
    display: inline-block;
    color: #fff;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 14px;
    transition: transform .2s, box-shadow .2s;
    margin-top: 12px;
    font-weight: 700;
    text-decoration: none;
}

.mini-course-button {
    background: linear-gradient(90deg, #6a5acd, #00bfff);
    box-shadow: 0 3px 10px rgba(0, 191, 255, .4);
}

.mini-course-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, .5);
}

.mini-course-canva-button {
    background: linear-gradient(90deg, coral, #ff69b4);
    box-shadow: 0 3px 10px rgba(255, 105, 180, .4);
}

.mini-course-canva-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, .5);
}

.mini-course-pit-button {
    background: linear-gradient(90deg, #20b2aa, #008b8b);
    box-shadow: 0 3px 10px rgba(0, 139, 139, .4);
}

.mini-course-pit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 139, 139, .5);
}

/* Service кнопка */
.service-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #e63946;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.service-btn:hover {
    background: #d62839;
}

/* Адаптив */
@media (max-width: 768px) {

    .btn,
    .extra-card p,
    .project-card p,
    .testimonial p {
        font-size: 14px;
    }

    .btn {
        padding: 8px 12px;
    }
}

@media (max-width: 420px) {
    a.cta-button {
        padding: 10px 24px;
        font-size: 14px;
        border-radius: 25px;
        width: 70%;
    }

    a.cta-button:hover {
        transform: scale(1.03);
    }

    .btn-primary,
    .gift-block {
        width: 100%;
        box-sizing: border-box;
    }

    .btn-primary {
        display: block;
        font-size: .95rem;
        padding: 10px;
        text-align: center;
    }

    .utm-link-btn {
        width: auto;
        display: inline-block;
        font-size: 14px;
        padding: 10px 18px;
        text-align: center;
        margin: 10px auto;
    }

    .text-center {
        padding: 0;
        text-align: center;
    }

    .btn {
        display: inline-block;
        width: auto !important;
        max-width: none;
        padding: 0.5rem 1rem;
        box-sizing: border-box;
        white-space: nowrap;
    }
}

@media (max-width: 375px) {
    .btn {
        font-size: 13px;
        padding: 7px 10px;
    }
}

/* ========================================
   css/components/cards.css
   ======================================== */

/* ========================================
   КАРТКИ
   ======================================== */

/* Проектні картки */
.project-card {
    background-color: #f5f5f5;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    transition: transform .3s;
    text-align: left;
    padding: 25px 20px;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.project-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.project-card p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Extra картки (додаткові можливості) */
.extra-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    max-width: 300px;
    transition: transform .3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    text-align: center;
    flex: 1 1 32%;
    box-sizing: border-box;
}

.extra-card:hover {
    transform: translateY(-5px);
}

.extra-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.extra-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.extra-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

/* Service картки */
.service-card {
    flex: 1 1 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon {
    font-size: 2rem;
}

.service-card-large {
    flex: 1 1 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-icon-large {
    font-size: 2.5rem;
}

/* Lang картка (інтернаціональний розділ) */
.lang-card {
    min-width: 45%;
    max-width: 250px;
    background: rgb(230, 225, 225);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    scroll-snap-align: start;
    flex-shrink: 0;
    text-align: center;
    transition: transform 0.3s;
    text-decoration: none;
    color: #000;
    display: block;
}

.lang-card:hover {
    transform: translateY(-5px);
}

.lang-card img {
    display: block;
    margin: 0 auto 10px;
}

/* Адаптив */
@media (max-width: 768px) {

    .extras-container,
    .portfolio-container,
    .testimonials-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .extra-card,
    .project-card {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }
}

@media (max-width: 700px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
    }
}

@media (max-width: 420px) {
    .lang-card {
        min-width: 80%;
        max-width: 100%;
        font-size: 14px;
        padding: 12px;
    }

    .lang-card img {
        width: 50px;
    }

    .services-grid,
    .services-grid-large {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card,
    .service-card-large {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }
}

@media (max-width: 375px) {

    .extra-card,
    .project-card {
        padding: 20px 15px;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .extra-card h3,
    .project-card h3 {
        font-size: 18px;
    }

    .extra-card p,
    .project-card p {
        font-size: 13px;
    }
}

/* ========================================
   css/components/modals.css
   ======================================== */

/* ========================================
   МОДАЛЬНІ ВІКНА
   ======================================== */

/* Привітальне вікно */
#welcome-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: transparent;
    z-index: 1000;
    padding: 5px 0;
}

.modal-content {
    background-color: rgba(255, 255, 255, .9);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: .9em;
    width: auto;
    max-width: 480px;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    display: inline-block;
    line-height: 1.2em;
}

.modal-content h2 {
    margin: 0;
    font-size: 1.2em;
}

.modal-content p {
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    font-size: 10px;
    color: #888;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}

@media (max-width: 420px) {
    .modal-content {
        font-size: 0.85em;
        padding: 6px 8px;
        max-width: 90%;
    }

    .modal-content h2 {
        font-size: 1em;
    }

    .close-btn {
        font-size: 9px;
        top: 3px;
        right: 3px;
    }
}

/* Вікно допомоги */
.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    display: none;
    z-index: 1000;
    width: 250px;
    max-width: 90vw;
    max-height: 300px;
    background: #fff;
    color: #000;
    overflow: auto;
    box-sizing: border-box;
}

.popup a {
    color: #007bff;
}

.popup a:hover {
    text-decoration: underline;
}

.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(1, 50, 116), rgb(50, 120, 200));
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}


@media (max-width: 480px) {
    .popup {
        width: 90%;
        max-width: 240px;
        padding: 12px 12px;
        bottom: 1.5cm;
        right: 10px;
        left: auto;
        max-height: 220px;
        font-size: 13px;
        overflow-y: hidden;
    }
}

@media (max-width: 420px) {
    .popup {
        width: 75%;
        max-width: 180px;
        max-height: 200px;
        padding: 10px 10px;
        font-size: 12px;
        bottom: 1.2cm;
        right: 8px;
        overflow-y: hidden;
    }

    .help-button {
        width: 35px;
        height: 35px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}


/* ========================================
   css/components/forms.css
   ======================================== */

/* ========================================
   ФОРМИ
   ======================================== */

/* Форма пошуку */
.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
    padding: 0 10px;
    gap: 8px;
    max-width: 350px;
}

.search-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.search-btn {
    padding: 10px 16px;
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.search-btn:hover {
    transform: scale(1.1);
}

.search-feedback {
    text-align: center;
    color: #ff5733;
    font-size: 0.95em;
    margin-top: 5px;
    min-height: 18px;
    transition: opacity 0.3s ease;
}

.highlight-search {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0% {
        background-color: #fffa90;
    }

    100% {
        background-color: transparent;
    }
}

/* Exit Intent форма */
.exit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

#exit-email {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.2s;
}

#exit-email:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.exit-btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.exit-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Приховані лейбли для accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   css/components/tables.css
   ======================================== */

/* ========================================
   ТАБЛИЦІ
   ======================================== */

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    font-size: 14px;
}

td,
th {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f8f9fa;
    font-weight: 700;
}

/* Порівняльна таблиця */
.comparison-table {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #0d1b2a;
    box-sizing: border-box;
    padding: 0 10px;
    border-collapse: collapse;
}

.comparison-table td,
.comparison-table th {
    border: 1px solid #3a6186;
    padding: 12px 15px;
    text-align: left;
    box-sizing: border-box;
}

.comparison-table th {
    background-color: #1e3a8a;
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:nth-child(2n) {
    background-color: #e0e7ff;
}

.comparison-table tr:hover {
    background-color: #bdd7ff;
}

/* Таблиця цін */
#pricingTable {
    display: none;
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
}

#pricingTable td,
#pricingTable th {
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    text-align: left;
}

#pricingTable th {
    background-color: #f8f9fa;
    font-weight: 700;
}

/* Адаптив */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 12px;
        padding: 0 10px;
    }

    .comparison-table td,
    .comparison-table th {
        padding: 8px 10px;
    }

    table {
        font-size: 14px;
    }

    td,
    th {
        padding: 8px;
    }
}

@media (max-width: 420px) {
    .comparison-table {
        font-size: 10px;
        padding: 0 10px;
        width: 100%;
    }

    .comparison-table td,
    .comparison-table th {
        padding: 6px 8px;
        white-space: normal;
    }
}

@media (max-width: 375px) {

    td,
    th {
        padding: 6px;
    }

    table {
        font-size: 13px;
    }
}

/* ========================================
   css/sections/webstart_lab.css
   ======================================== */

/* ========================================
   WEBSTART LAB
   ======================================== */

.lab-strip {
    background-color: #07c;
    padding: 6px 0;
    font-size: .95em;
    text-align: center;
    overflow: hidden;
}

.lab-strip a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.lab-strip a:hover {
    text-decoration: underline;
}

/* ========================================
   css/sections/marquee.css
   ======================================== */

/* ========================================
   РУХОМИЙ РЯДОК (MARQUEE)
   ======================================== */

.marquee-container {
    background: #fff;
    color: #333;
    padding: 10px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: 35s linear infinite scroll-left;
    font-size: 16px;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Виділення елементів */
.highlight-propose {
    color: #000;
    font-weight: 700;
    display: inline-block;
    animation: 2s ease-in-out infinite run;
}

.highlight-additional {
    color: #000;
    font-weight: 700;
    display: inline-block;
    animation: 1.5s infinite alternate highlight-text;
    margin-left: 45px;
}

.highlight-landing {
    color: #034b5e;
    font-weight: 600;
}

.highlight-resume {
    margin-right: 5px;
    color: #09c;
    font-weight: 600;
}

.highlight-banners {
    color: #e6007a;
    font-weight: 600;
}

.highlight-target {
    color: #066606;
    font-weight: 600;
}

.highlight-tax {
    color: #380568;
    font-weight: 600;
}

.highlight-portfolio {
    color: #6d2e03;
    font-weight: 600;
}

@keyframes run {
    /* Визначте анімацію за потреби */
}

@keyframes highlight-text {
    /* Визначте анімацію за потреби */
}

/* ========================================
   css/sections/gallery.css
   ======================================== */

/* Галерея */
.gallery-marquee-wrapper {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.gallery-marquee-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    height: 64px;
    padding: 4px;
    gap: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    box-sizing: border-box;
}

.gallery-marquee-container::-webkit-scrollbar {
    display: none;
}

.gallery-marquee-image {
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.gallery-marquee-image:hover {
    transform: scale(1.5);
    z-index: 2;
}

/* Модальне вікно */
.gallery-marquee-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: auto;
}

.gallery-marquee-modal.hidden {
    display: none;
}

.gallery-marquee-modal-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.gallery-marquee-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.gallery-marquee-slider {
    display: none;
}

/* Блокування скролу при відкритій галереї */
body.modal-open {
    overflow: hidden;
    pointer-events: none;
}

body.modal-open .gallery-marquee-modal {
    pointer-events: auto;
}

body.modal-open .burger-menu,
body.modal-open .youtube-button,
body.modal-open .help-window {
    display: none !important;
}

/* Адаптив */
@media (max-width: 420px) {
    .gallery-marquee-wrapper {
        max-width: 420px;
        overflow: hidden;
    }

    .gallery-marquee-container {
        max-width: 100%;
        overflow-x: auto;
    }

    .gallery-marquee-image {
        max-width: 64px;
        height: 64px;
    }
}

@media (min-width: 768px) {
    .gallery-marquee-wrapper {
        max-width: 620px;
    }

    .gallery-marquee-slider {
        display: block;
        width: 100%;
        margin-top: 8px;
        appearance: none;
        height: 6px;
        background: #ccc;
        border-radius: 3px;
        outline: none;
    }

    .gallery-marquee-slider::-webkit-slider-thumb {
        appearance: none;
        width: 16px;
        height: 16px;
        background: #666;
        border-radius: 50%;
        cursor: pointer;
    }

    .gallery-marquee-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        background: #666;
        border-radius: 50%;
        cursor: pointer;
    }
}

/* ========================================
   css/sections/search.css
   ======================================== */

/* ========================================
   ПОШУК ПО СЕКЦІЯМ
   ======================================== */

/* Форма пошуку описана в components/forms.css */

/* Feedback повідомлення */
.search-feedback {
    text-align: center;
    color: #ff5733;
    font-size: 0.95em;
    margin-top: 5px;
    min-height: 18px;
    transition: opacity 0.3s ease;
}

/* Виділення знайденої секції */
.highlight-search {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0% {
        background-color: #fffa90;
    }

    100% {
        background-color: transparent;
    }
}

/* ========================================
   css/sections/about_us.css
   ======================================== */

/* Про нас */
.centered {
    text-align: center;
}

/* Кнопка показу історії */
.history-toggle-container {
    text-align: center;
    margin: 0;
}

.history-toggle-btn {
    padding: 0.5rem 1.2rem;
    background: #12ad46;
    color: white;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1.0rem;
    font-weight: normal;
    margin-bottom: 1.0rem;
}

.history-section {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Команда */
.team-toggle-container {
    text-align: center;
    margin: 0;
    margin-bottom: 9px;
}

.team-toggle-btn {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    background-color: #1877f2;
    color: white;
    margin-top: 0;
}

.team-section {
    display: none;
    margin-top: 1rem;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 1rem;
}

.team-member {
    width: 200px;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.team-member img {
    width: 100%;
    border-radius: 12px;
}

.team-member h3 {
    margin: 10px 0 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: #555;
}

.team-member a {
    color: #1877f2;
    text-decoration: none;
    font-weight: 500;
}

/* Кнопки навичок та досягнень */
.text-center {
    text-align: center;
}

.text-center.mt-1_5+.text-center.mt-1_5 {
    margin-top: 8px;
}

.btn-open-skills {
    background: #18b190;
}

.btn-open-skills:hover {
    background: #159276;
}

.btn-achievement {
    background: #0c6e8b;
}

.btn-achievement:hover {
    background: #0a5a6c;
}


@media (max-width: 420px) {
    .history-toggle-btn {
        margin-bottom: 0.8rem;
    }

    .team-toggle-btn {
        margin-top: 0;
    }

    .text-center {
        padding: 0;
        text-align: center;
    }

    .btn {
        display: inline-block;
        width: auto !important;
        max-width: none;
        padding: 0.5rem 1rem;
        box-sizing: border-box;
        white-space: nowrap;
    }
}

/* ========================================
   css/sections/services.css
   ======================================== */

/* ========================================
   НАШІ ПОСЛУГИ
   ======================================== */

#services {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
}

#services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Services grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.services-note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    border: 2px dashed #f4a261;
    border-radius: 12px;
    background-color: #fffaf3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    text-align: center;
}

/* Full services блок */
.services-full {
    flex: 1 1 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 1.5rem 0 2rem;
}

.services-full h2 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #333;
}

.services-full h2 span {
    font-size: 1.8rem;
    margin-right: 10px;
}

.services-full p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.services-grid-large {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

#what-we-create {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #db9358, #e43804);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#what-we-create::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f4a261, #e76f51);
    margin: 10px auto 0;
    border-radius: 2px;
}

#what-we-create:hover {
    transform: scale(1.03);
    text-shadow: 0 3px 15px rgba(240, 64, 20, 0.5);
}

/* Адаптив */
@media (max-width: 420px) {

    .services-grid,
    .services-grid-large {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    #services {
        padding: 1rem;
        box-sizing: border-box;
    }

    .services-full {
        padding: 1rem;
        margin: 1rem 0;
        box-sizing: border-box;
    }

    .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* ========================================
   css/sections/portfolio.css
   ======================================== */

/* ========================================
   ПОРТФОЛІО
   ======================================== */

#portfolio {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

#portfolio h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Details для розкриття інформації */
details {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

summary {
    list-style: none;
    padding: 15px 30px 15px 15px;
    background-color: #aff0df;
    position: relative;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

summary:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3498db, 0 0 0 6px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '▶';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s;
}

details[open] summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.content {
    padding: 15px;
    background-color: #fafafa;
    border-top: 1px solid #ccc;
}

#portfolio-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    position: relative;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#portfolio-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 10px auto 0;
    border-radius: 2px;
}

#portfolio-title:hover {
    transform: scale(1.03);
    text-shadow: 0 3px 15px rgba(46, 204, 113, 0.5);
}

/* Адаптив */
@media (max-width: 768px) {
    #portfolio {
        padding: 30px 15px;
    }

    .portfolio-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
}

/* ========================================
   css/sections/technical.css
   ======================================== */

/* ========================================
   ТЕХНІЧНІ МОЖЛИВОСТІ
   ======================================== */

#technical-features {
    background-color: #f0f7ff;
    border: 1px solid #a3c0ff;
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #004080;
    box-shadow: 0 2px 8px rgba(0, 64, 128, .2);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 25px 20px;
    text-align: center;
}

#technical-features h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
}

#technical-features p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #036;
    max-width: 90%;
    text-align: center;
}

#technical-features .btn {
    background-color: #0056b3;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 86, 179, .4);
    text-align: center;
    white-space: nowrap;
    min-width: 140px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: background-color .3s;
}

#technical-features .btn:focus,
#technical-features .btn:hover {
    background-color: #003f80;
    box-shadow: 0 4px 8px rgba(0, 63, 128, .6);
    outline: 0;
}

#technical-features::before {
    content: "🛠️";
    font-size: 3.5rem;
    position: absolute;
    top: -40px;
    width: 100%;
    text-align: center;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Адаптив */
@media (max-width: 420px) {
    #technical-features {
        max-width: 95%;
        padding: 20px 15px;
    }

    #technical-features h2 {
        font-size: 1.5rem;
    }

    #technical-features p {
        font-size: 1rem;
        max-width: 100%;
    }

    #technical-features .btn {
        font-size: 1rem;
        padding: 10px 25px;
        min-width: auto;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ========================================
   css/sections/advantages.css
   ======================================== */

/* ========================================
   ЧОМУ WEBSTART STUDIO
   ======================================== */

.advantages {
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    text-align: center;
}

.advantages h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.advantages-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.adv-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 16px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
    transition: transform .3s;
}

.adv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.emoji {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.adv-item h3 {
    font-size: 1.1rem;
    color: #ff4e00;
    margin-bottom: 8px;
}

.adv-item p {
    font-size: .95rem;
    color: #555;
    line-height: 1.4;
}

/* ========================================
   css/sections/comparison.css
   ======================================== */

/* ========================================
   ПОРІВНЯЛЬНА ТАБЛИЦЯ ПЛАТФОРМ
   ======================================== */

#platform-comparison {
    padding: 40px 20px;
}

/* Стилі таблиці вже описані в components/tables.css */

/* Додаткові стилі для виділення */
.highlight-start {
    color: red;
    font-weight: 700;
}

.centered-header,
.centered-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

/* ========================================
   css/sections/pricing.css
   ======================================== */

/* ========================================
   ВАРТІСТЬ (ПАКЕТИ)
   ======================================== */

#pricing {
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    padding: 60px 20px;
    text-align: center;
    background: #cff3f3;
    border: 2px solid rgba(68, 67, 67, 0.3);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

#pricing h2 {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 20px;
    position: relative;
}

#pricing h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #007BFF;
    margin: 10px auto 0;
    border-radius: 2px;
}

#pricing p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

#togglePricing {
    display: block;
    font-weight: 700;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin: 25px auto 0;
    width: 80%;
    max-width: 300px;
    text-align: center;
    text-decoration: underline;
}

#togglePricing:hover {
    background-color: #0056b3;
    color: #fff;
    transform: translateY(-2px);
}

.pricing-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 1.5s infinite;
}

#linkWrapper {
    display: none;
    margin-top: 15px;
}

.btn-link {
    text-decoration: underline;
    color: #007BFF;
}

/* Адаптив */
@media (max-width: 420px) {
    #pricing {
        padding: 40px 15px;
    }

    #pricing h2 {
        font-size: 2rem;
    }

    #pricing p {
        font-size: 1rem;
    }

    #togglePricing {
        width: 90%;
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .pricing-emoji {
        font-size: 2.5rem;
    }
}

/* ========================================
   css/sections/promo.css
   ======================================== */

/* ========================================
   АКЦІЇ
   ======================================== */

.promo {
    background: linear-gradient(135deg, #6bf37d, #026d1d);
    color: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(185, 1, 1, .2);
    text-align: center;
}

.promo-container h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.promo-container p {
    font-size: 1.2em;
}

.countdown {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 700;
    color: #063ef3;
}

.promo-btn {
    background: #fff;
    color: #100113;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
    transition: background .3s;
}

.promo-btn:hover {
    background: #fc0303b0;
}

/* ========================================
   css/sections/quiz-section.css
   ======================================== */

/* ========================================
   ВІКТОРИНА
   ======================================== */
.cta-section {
    padding: 60px 30px;
    background-color: #fff;
    border-radius: 15px;
    margin: 40px auto;
    width: 90%;
    max-width: 600px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    border: 2px solid #e0e0e0
}

.cta-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1)
}

.cta-section h2 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #333;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color .3s
}

.cta-section h2:hover {
    color: #3498db
}

.cta-section p {
    margin-bottom: 25px;
    color: #777;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: .85
}

a.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: .3s
}

a.cta-button:hover {
    background-color: #3498db;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2)
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:420px) {

    .btn-primary,
    .gift-block {
        width: 100%;
        box-sizing: border-box
    }

    .gift-block {
        max-width: 100%;
        padding: 16px;
        margin: 0
    }

    .gift-block h3 {
        font-size: 1rem
    }

    .gift-block p {
        font-size: .9rem
    }

    .btn-primary {
        display: block;
        font-size: .95rem;
        padding: 10px;
        text-align: center
    }

    .share-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px
    }

    .share-btn {
        width: 90px;
        height: 75px
    }

    #scrollTopBtn {
        width: 30px;
        height: 30px;
        font-size: 16px;
        padding: 0;
        bottom: 12px;
        left: 12px;
        line-height: 30px;
        text-align: center
    }

    .faq-section {
        padding: 1.5rem 1rem;
        margin: 2rem 1rem
    }

    .faq-section h2 {
        font-size: 1.4rem;
        margin-bottom: 2rem
    }

    .faq-section details {
        padding: .8rem 1rem;
        margin-bottom: 1rem
    }

    .faq-section summary {
        font-size: 1rem;
        padding-left: 2.4rem
    }

    .faq-section summary::before {
        font-size: 1.3rem;
        left: .3rem
    }

    .faq-section p {
        font-size: .9rem;
        line-height: 1.4
    }

    .cta-section {
        width: 90%;
        padding: 30px 15px;
        margin: 20px auto;
        border-radius: 12px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
        box-sizing: border-box
    }

    .cta-section h2 {
        font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 15px
    }

    .cta-section p {
        font-size: 14px;
        line-height: 1.5;
        opacity: 1;
        margin-bottom: 20px;
        max-width: 100%
    }

    a.cta-button {
        padding: 10px 24px;
        font-size: 14px;
        border-radius: 25px;
        width: 70%
    }

    a.cta-button:hover {
        transform: scale(1.03)
    }
}

/* ========================================
   css/sections/briefs.css
   ======================================== */

/* ========================================
   ЗАМОВИТИ (БРИФИ)
   ======================================== */

.briefs {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.briefs-container {
    max-width: 800px;
    margin: 0 auto;
}

.briefs h2,
.briefs-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.briefs-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.briefs-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.brief-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color .3s;
}

.brief-resume {
    background-color: #007bff;
    color: #fff;
}

.brief-resume:hover {
    background-color: #0056b3;
}

.brief-portfolio {
    background-color: #28a745;
    color: #fff;
}

.brief-portfolio:hover {
    background-color: #1e7e34;
}

.brief-site {
    background-color: #ffc107;
    color: #212529;
}

.brief-site:hover {
    background-color: #e0a800;
}

/* ========================================
   css/sections/mini_services.css
   ======================================== */

/* ========================================
   МІНІ-СЕРВІСИ
   ======================================== */

#mini-services {
    padding: 40px;
    background: #f5f5f5;
    text-align: center;
}

#mini-services h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

#mini-services p {
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

#mini-services-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #ff9a76, #ff6a88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#mini-services-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a76, #ff6a88);
    margin: 8px auto 0;
    border-radius: 2px;
}

#mini-services-title:hover {
    transform: scale(1.03);
    text-shadow: 0 3px 15px rgba(255, 106, 136, 0.5);
}

/* service-card описаний в components/cards.css */
/* service-btn описаний в components/buttons.css */

/* Адаптив */
@media (max-width: 700px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
    }
}

/* ========================================
   css/sections/ai_services.css
   ======================================== */

/* ========================================
   AI ПРОМПТИНГ ТА AI СЕРВІСИ
   ======================================== */

#ai-prompting-dynamic {
    padding: 40px 20px;
    background-color: #f7f9fc;
}

.ai-prompting-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ai-dynamic-card {
    flex: 1;
    max-width: 500px;
    background: #e5faf5;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-dynamic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ai-prompting-image {
    max-width: 180px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 0 0 4px #e6f0ff, 0 0 10px rgba(74, 144, 226, 0.5);
    transition: all 0.3s;
}

.ai-dynamic-card:hover .ai-prompting-image {
    box-shadow: 0 0 0 6px #f5e6ff, 0 0 20px rgba(144, 19, 254, 0.7);
}

.ai-prompting-title {
    font-size: 1.8rem;
    color: #4a90e2;
    margin: 0 0 10px;
}

.ai-prompting-text {
    font-size: 1rem;
    color: #141414;
    margin-bottom: 25px;
    padding: 0 20px;
    max-width: 700px;
}

.ai-prompting-btn.ai-dynamic-btn {
    padding: 12px 30px;
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    background: linear-gradient(90deg, #4a90e2, #9013fe);
    box-shadow: 0 4px 15px rgba(144, 19, 254, 0.4);
    transition: all 0.3s ease;
}

.ai-prompting-btn.ai-dynamic-btn:hover {
    background: linear-gradient(90deg, #3a7bd5, #7d0fd9);
    box-shadow: 0 6px 20px rgba(144, 19, 254, 0.6);
    transform: scale(1.03);
}

#ai-services-title {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4a90e2, #9013fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 50px;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#ai-services-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #9013fe);
    margin: 12px auto 0;
    border-radius: 2px;
}

#ai-services-title:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(144, 19, 254, 0.5);
}

/* Адаптив */
@media (max-width: 420px) {
    .ai-prompting-row {
        flex-direction: column;
        align-items: center;
    }

    .ai-dynamic-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .ai-prompting-image {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .ai-prompting-title {
        font-size: 1.5rem;
    }

    .ai-prompting-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0;
    }

    .ai-prompting-btn.ai-dynamic-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
}

/* ========================================
   css/sections/extras.css
   ======================================== */

/* ========================================
   ДОДАТКОВІ МОЖЛИВОСТІ
   ======================================== */

.extras-section {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.extras-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.extras-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
}

.result-section {
    margin-top: 20px;
}

.result-section .show-results {
    display: inline-flex;
    align-items: center;
    background: #075b66;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.result-section .show-results .arrow {
    margin-left: 8px;
    transition: transform 0.3s;
}

.results-slider {
    display: none;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-top: 10px;
}

.slider-wrapper {
    display: flex;
    gap: 15px;
}

.slider-item {
    min-width: 45%;
    max-width: 250px;
    scroll-snap-align: start;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    display: block;
}

#extras-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #2ebf91, #1abc9c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    position: relative;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#extras-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2ebf91, #1abc9c);
    margin: 10px auto 0;
    border-radius: 2px;
}

#extras-title:hover {
    transform: scale(1.03);
    text-shadow: 0 3px 15px rgba(106, 90, 249, 0.5);
}

/* Адаптив */
@media (max-width: 768px) {
    .extras-section {
        padding: 30px 15px;
    }
}

@media (max-width: 420px) {
    .slider-item {
        min-width: 80%;
        max-width: 100%;
    }
}


/* Кнопки для Google Ads секції */
.google-ads-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    margin: 10px 0;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.google-ads-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Різні кольори для кожної кнопки */
.calc-btn {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.comparison-btn {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc04 100%);
}

.glossary-btn {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 100%);
}

.generator-btn {
    background: linear-gradient(135deg, #4285f4 0%, #ea4335 100%);
}

.keywords-btn {
    background: linear-gradient(135deg, #34a853 0%, #0f9d58 100%);
}

/* Бейдж "Вивчаємо" */
.badge-learning {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0 15px 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.learning-icon {
    font-size: 16px;
}

.learning-text {
    letter-spacing: 0.3px;
}

/* Інформаційна нотатка */
.info-note {
    background-color: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 12px 16px;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
}

.info-note em {
    font-style: normal;
    color: #6c757d;
}

/* Responsive для кнопок */
@media (max-width: 768px) {
    .google-ads-btn {
        padding: 12px 16px;
        font-size: 15px;
    }
}


/* ========================================
   css/sections/certificate.css
   ======================================== */

/* ========================================
   СЕРТИФІКАТ-СУВЕНІР
   ======================================== */

.certificate-gift-section {
    padding: 40px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.certificate-gift-section::before {
    content: '🎓';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.certificate-gift-section::after {
    content: '✨';
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.certificate-gift-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.certificate-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow:
        0 10px 40px rgba(0, 123, 255, 0.15),
        0 0 0 8px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.certificate-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow:
        0 15px 50px rgba(0, 123, 255, 0.25),
        0 0 0 8px rgba(0, 123, 255, 0.1);
}

.certificate-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff5050, #e04444);
    color: white;
    padding: 6px 14px;
    border-radius: 18px;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(255, 80, 80, 0.4);
    transform: rotate(10deg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: rotate(10deg) scale(1);
    }

    50% {
        transform: rotate(10deg) scale(1.05);
    }
}

.certificate-content {
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.certificate-title {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.certificate-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.certificate-description strong {
    color: #07c;
    font-weight: 600;
}

.certificate-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0 15px;
}

.certificate-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.certificate-btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.certificate-btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
}

.certificate-btn-secondary {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.certificate-btn-secondary:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
}

.certificate-note {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin-top: 12px;
}

/* Адаптив */
@media (max-width: 420px) {
    .certificate-gift-section {
        padding: 30px 15px;
    }

    .certificate-gift-section::before,
    .certificate-gift-section::after {
        font-size: 2rem;
    }

    .certificate-image-wrapper {
        margin-bottom: 25px;
    }

    .certificate-image {
        max-width: 100%;
        border-radius: 12px;
        box-shadow:
            0 8px 25px rgba(0, 123, 255, 0.12),
            0 0 0 5px rgba(255, 255, 255, 0.8);
    }

    .certificate-image:hover {
        transform: scale(1.01);
    }

    .certificate-badge {
        top: 8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 15px;
    }

    .certificate-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    .certificate-description {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 5px;
        margin-bottom: 10px;
    }

    .certificate-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 10px;
        margin: 20px 0 12px;
    }

    .certificate-btn {
        width: 100%;
        max-width: 280px;
        padding: 11px 18px;
        font-size: 14px;
        box-sizing: border-box;
        text-align: center;
        margin: 0 auto;
    }

    .certificate-note {
        font-size: 12px;
        padding: 0 15px;
        margin-top: 10px;
    }
}

@media (max-width: 360px) {
    .certificate-gift-section {
        padding: 25px 10px;
    }

    .certificate-title {
        font-size: 1.25rem;
    }

    .certificate-description {
        font-size: 0.9rem;
    }

    .certificate-btn {
        font-size: 13px;
        padding: 10px 16px;
        max-width: 260px;
    }

    .certificate-note {
        font-size: 11px;
    }
}

/* ========================================
   css/sections/testimonials.css
   ======================================== */

/* ========================================
   ВІДГУКИ - СТИЛЬ МЕСЕНДЖЕРІВ
   ======================================== */

#testimonials {
    background: #f5f7fa;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

#testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2d3748;
    font-weight: 700;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Контейнер як скриншот месенджера */
.testimonial {
    background: #ffffff;
    padding: 0;
    max-width: 340px;
    width: 100%;
    border-radius: 12px;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08),
        0 1px 3px rgba(0, 0, 0, .06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

/* Хедер месенджера */
.testimonial::before {
    content: '';
    display: block;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

/* Wrapper для контенту */
.testimonial-wrapper {
    padding: 20px;
    background: #f8f9fa;
    min-height: 180px;
}

/* Бульбашка повідомлення */
.testimonial-message {
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    margin-bottom: 12px;
    position: relative;
    text-align: left;
}

/* Хвостик бульбашки */
.testimonial-message::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent #ffffff transparent;
}

.testimonial p {
    font-style: normal;
    margin: 0 0 8px 0;
    color: #2d3748;
    font-size: 14px;
    line-height: 1.5;
}

/* Мета-інфо (час, статус прочитання) */
.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #64748b;
    margin-top: 8px;
    padding: 0 5px;
}

.testimonial-time::before {
    content: '✓✓ ';
    color: #0088cc;
    margin-right: 3px;
}

.testimonial cite {
    color: #667eea;
    font-weight: 600;
    font-style: normal;
    font-size: 13px;
}

/* Фото як аватар в месенджері */
.testimonial-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 5px;
    left: 15px;
    border: 2px solid rgba(255, 255, 255, .9);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: scale(.8);
    transition: all .5s ease;
    z-index: 10;
}

.testimonial-photo.visible {
    opacity: 1;
    transform: scale(1);
}

/* Ім'я в хедері */
.testimonial-header-name {
    position: absolute;
    top: 15px;
    left: 65px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.testimonial-content {
    width: 100%;
    text-align: left;
}

#testimonials-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

#testimonials-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 10px auto 0;
    border-radius: 2px;
}

#testimonials-title:hover {
    transform: scale(1.03);
}

/* Адаптив */
@media (max-width: 768px) {
    #testimonials {
        padding: 40px 15px;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .testimonial {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    #testimonials {
        padding: 30px 10px;
    }

    .testimonial {
        max-width: 100%;
        border-radius: 10px;
    }

    .testimonial::before {
        height: 45px;
    }

    .testimonial-photo {
        width: 36px;
        height: 36px;
        top: 5px;
        left: 12px;
        opacity: 1;
        transform: scale(1);
    }

    .testimonial-header-name {
        top: 12px;
        left: 58px;
        font-size: 14px;
    }

    .testimonial-wrapper {
        padding: 15px;
    }

    .testimonial-message {
        padding: 12px 15px;
    }

    .testimonial p {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .testimonial-wrapper {
        padding: 12px;
    }

    .testimonial-message {
        padding: 10px 12px;
    }

    .testimonial p {
        font-size: 12px;
    }

    .testimonial cite {
        font-size: 12px;
    }
}

/* ========================================
   css/sections/faq.css
   ======================================== */

/* ========================================
   FAQ (ПОШИРЕНІ ЗАПИТАННЯ)
   ======================================== */

.faq-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
    border-radius: 16px;
    color: #222;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.faq-section h2 {
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: .04em;
    color: #0a2540;
    user-select: none;
    text-align: center;
    text-transform: uppercase;
}

.faq-section details {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 12px rgba(10, 37, 64, .05);
    transition: box-shadow .3s;
    cursor: pointer;
    overflow: hidden;
}

.faq-section details[open] {
    box-shadow: 0 6px 20px rgba(10, 37, 64, .12);
}

.faq-section summary {
    font-weight: 600;
    font-size: 1.15rem;
    position: relative;
    padding-left: 2.8rem;
    list-style: none;
    user-select: none;
    color: #0a2540;
    cursor: pointer;
}

.faq-section summary:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3498db, 0 0 0 6px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease;
}

.faq-section summary::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1.5rem;
    color: #2dc0a8;
    transition: transform .3s;
    pointer-events: none;
}

.faq-section details[open] summary::before {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    color: #1a8c7a;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section p {
    margin: .8rem 0 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #444c57;
    transition: opacity .3s;
}

.faq-section details>p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s, opacity .35s;
}

.faq-section details[open]>p {
    max-height: 100vh;
    opacity: 1;
}

#faq-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, #2dc0a8, #1a8c7a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#faq-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2dc0a8, #1a8c7a);
    margin: 10px auto 0;
    border-radius: 2px;
}

#faq-title:hover {
    transform: scale(1.03);
    text-shadow: 0 3px 15px rgba(29, 140, 122, 0.5);
}

/* Адаптив */
@media (max-width: 420px) {
    .faq-section {
        padding: 1.5rem 1rem;
        margin: 2rem 1rem;
    }

    .faq-section h2 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .faq-section details {
        padding: .8rem 1rem;
        margin-bottom: 1rem;
    }

    .faq-section summary {
        font-size: 1rem;
        padding-left: 2.4rem;
    }

    .faq-section summary::before {
        font-size: 1.3rem;
        left: .3rem;
    }

    .faq-section p {
        font-size: .9rem;
        line-height: 1.4;
    }
}

/* ========================================
   css/sections/hosting.css
   ======================================== */

/* ========================================
   РОЗМІЩЕННЯ ТА ДОПОМОГА
   ======================================== */

.info-section {
    background-color: #f8f8f8;
    padding: 50px 20px;
    color: #333;
    text-align: center;
}

.info-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.info-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.info-section a {
    color: #07c;
}

.info-section a:hover {
    color: red;
    text-decoration: underline;
}

#info-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #07c, #1eb8ff);
    /* градієнт від #07c до світлішого відтінку */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#info-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #07c, #1eb8ff);
    margin: 8px auto 0;
    border-radius: 2px;
}

#info-title:hover {
    transform: scale(1.03);
    text-shadow: 0 3px 15px rgba(0, 124, 255, 0.5);
    /* тінь у відтінку основного синього */
}

/* Адаптив */
@media (max-width: 768px) {
    .info-section {
        padding: 30px 15px;
    }

    .info-section p {
        font-size: 16px;
    }
}

/* ========================================
   css/sections/international.css
   ======================================== */

/* ========================================
   ІНТЕРНАЦІОНАЛЬНИЙ РОЗДІЛ
   ======================================== */

#international {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
}

.lang-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.lang-slider::-webkit-scrollbar {
    height: 8px;
}

.lang-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* lang-card описана в components/cards.css */

/* Адаптив */
@media (max-width: 420px) {
    .lang-card {
        min-width: 80%;
        max-width: 100%;
        font-size: 14px;
        padding: 12px;
    }

    .lang-card img {
        width: 50px;
    }
}

/* ========================================
   css/sections/blog.css
   ======================================== */

/* ========================================
   БЛОГ / ДАЙДЖЕСТ
   ======================================== */

.blog-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #fefefe 0, #e6e9f0 100%);
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.blog-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: .05em;
    user-select: none;
    text-align: center;
    text-transform: uppercase;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05), inset 0 0 0 3px #07c;
    transition: box-shadow .4s, transform .3s;
    overflow: hidden;
    cursor: pointer;
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, #07c 0, #0af 60%, #07c 100%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}

.blog-card:hover::before {
    opacity: .4;
}

.blog-card:hover {
    box-shadow: 0 12px 30px rgba(0, 119, 204, .4), inset 0 0 0 3px #0af;
    transform: translateY(-12px);
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #004e89;
    font-weight: 700;
    transition: color .3s;
}

.blog-card:hover h3 {
    color: #07c;
}

.blog-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    user-select: text;
}

.read-more {
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .3s, color .3s;
    display: inline-block;
    user-select: none;
    color: #07c;
}

.read-more:hover {
    color: #004e89;
    border-color: #004e89;
}

/* Адаптив */
@media (max-width: 480px) {
    .blog-section {
        padding: 2rem 1rem;
    }

    .blog-title {
        font-size: 1.6rem;
    }

    .blog-card {
        padding: 1.5rem 1.8rem;
    }

    .blog-card h3 {
        font-size: 1.25rem;
    }

    .blog-card p {
        font-size: .9rem;
    }
}

/* ========================================
   css/sections/contact.css
   ======================================== */

/* ========================================
   КОНТАКТИ
   ======================================== */

#contact-gift-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 20px;
    background-color: #fefefe;
}

.contact-block,
.gift-block {
    flex: 1 1 300px;
    max-width: 48%;
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
    text-align: center;
}

.contact-block a,
.gift-block a {
    color: #0a0a0a;
    text-decoration: none;
}

.contact-block a:hover,
.gift-block a:hover {
    text-decoration: underline;
}

.gift-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #fdfdfd;
}

.gift-block {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background-color: #e9f7ef;
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    animation: .8s ease-in-out fadeIn;
}

.gift-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e5631;
}

.gift-block p {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 18px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптив */
@media (max-width: 768px) {
    #contact-gift-wrapper {
        flex-direction: column;
        padding: 20px 15px;
        gap: 0;
    }

    .contact-block,
    .gift-block {
        max-width: 100%;
        padding: 20px;
        margin: 0 auto;
    }

    .gift-block h3 {
        font-size: 18px;
    }

    .gift-block p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    #contact-gift-wrapper {
        padding: 15px 10px;
        gap: 15px;
    }

    #contact-gift-wrapper h2 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .contact-block,
    .gift-block {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 16px;
        margin: 0 auto;
    }

    .gift-block h3 {
        font-size: 16px;
    }

    .gift-block p {
        font-size: 14px;
    }

    .viber-button {
        display: inline-block;
        text-align: center;
        margin: 0 auto;
    }

    p>.viber-button {
        display: block;
    }

    p {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .gift-block {
        max-width: 100%;
        padding: 16px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .gift-block h3 {
        font-size: 1rem;
    }

    .gift-block p {
        font-size: .9rem;
    }
}

/* ========================================
   css/sections/simple-security.css
   ======================================== */

/* Стилі для секції безпеки на головній */
.security-home {
    padding: 3rem 0;
    text-align: center;
}

.security-home h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.security-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
}

.btn-security {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-security:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Адаптивність */
@media (max-width: 768px) {
    .security-home h2 {
        font-size: 1.5rem;
    }

    .security-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .btn-security {
        width: 90%;
        max-width: 300px;
    }
}


/* ========================================
   css/sections/socials.css
   ======================================== */

/* ========================================
   СОЦІАЛЬНІ МЕРЕЖІ
   ======================================== */

.socials {
    background-color: #f5f5f5;
    padding: 40px 20px;
    border-radius: 12px;
    margin-top: 0;
    text-align: center;
}

.socials h2,
.socials h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.social-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-list a {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    transition: background-color .3s;
}

.telegram {
    background-color: #08c;
}

.telegram:hover {
    background-color: #0077b0;
}

.viber {
    background-color: #7360f2;
}

.viber:hover {
    background-color: #5e49da;
}

.facebook {
    background-color: #3b5998;
}

.facebook:hover {
    background-color: #2d4373;
}

.whatsapp {
    background-color: #25d366;
}

.whatsapp:hover {
    background-color: #1ebe5d;
}

/* Підписка на соцмережі */
.social-subscribe {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.social-subscribe li {
    margin: 0;
}

.social-subscribe a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.social-subscribe a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.instagram-subscribe {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tiktok-subscribe {
    background-color: #010101;
}

/* Поділитися платформою */
.share-platform {
    background-color: #fff;
    padding: 20px 16px;
    margin: 20px auto;
    max-width: 600px;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    box-shadow: none;
    text-align: center;
}

.share-platform h2,
.share-platform h3 {
    font-size: 22px;
    margin-bottom: 14px;
    letter-spacing: .3px;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
    justify-items: center;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: #f1f3f5;
    border-radius: 12px;
    color: #212529;
    font-size: 13px;
    width: 90px;
    height: 90px;
    transition: .3s;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.share-btn:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.share-btn svg {
    fill: currentColor;
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.share-btn.facebook {
    color: #3b5998;
}

.share-btn.telegram {
    color: #08c;
}

.share-btn.viber {
    color: #665cac;
}

.share-btn.linkedin {
    color: #0077b5;
}

.share-btn.messenger {
    color: #0084ff;
}

.share-btn::before {
    content: '';
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.share-btn.facebook::before {
    background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/facebook.svg');
}

.share-btn.telegram::before {
    background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/telegram.svg');
}

.share-btn.viber::before {
    background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/viber.svg');
}

.share-btn.linkedin::before {
    background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/linkedin.svg');
}

.share-btn.messenger::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230084ff' d='M12 2C6.5 2 2 6.05 2 11c0 2.45 1.1 4.65 2.9 6.3V22l3.1-1.7c1.2.35 2.45.55 3.8.55 5.5 0 10-4.05 10-9S17.5 2 12 2Zm1.2 11.45-2.55-2.75L5 13.6l6.3-6.65 2.55 2.75L19 9.4l-5.8 6.05Z'/%3E%3C/svg%3E");
}

/* Адаптив */
@media (max-width: 768px) {
    .socials h2 {
        font-size: 20px;
    }

    .social-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-list a {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .share-platform {
        padding: 16px 12px;
        margin: 16px auto;
        max-width: 90%;
    }

    .share-platform h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .share-buttons {
        gap: 20px;
    }

    .share-btn {
        width: 80px;
        height: 80px;
        font-size: 12px;
        padding: 12px 10px;
    }

    .share-btn::before {
        width: 24px;
        height: 24px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .socials h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .social-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-list a {
        font-size: 15px;
        padding: 10px 5px;
    }
}

@media (max-width: 420px) {
    .social-subscribe {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
        margin: 10px 0;
    }

    .social-subscribe a {
        width: auto;
        text-align: center;
        padding: 4px 8px;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .share-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .share-btn {
        width: 90px;
        height: 75px;
    }
}

/* ========================================
   css/sections/mistakes.css
   ======================================== */

/* ======❌ Часті помилки====== */
.mistakes-section {
    padding: 60px 20px;
}

.mistakes-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #c41e3a;
}

.mistakes-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mistake-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mistake-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.2);
}

.mistake-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.mistake-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #333;
}

.mistake-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.mistakes-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 15px 40px;
    background: #c41e3a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s;
}

.mistakes-section .btn-primary:hover {
    background: #a01729;
}

/* Intro текст */
.mistakes-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Details як mistake-item */
.mistake-item {
    display: block;
    padding: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.mistake-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.2);
}

/* Summary (заголовок) */
.mistake-item summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    list-style: none;
    font-weight: 600;
    font-size: 1.3rem;
    color: #333;
    cursor: pointer;
}

/* Прибрати стандартний маркер */
.mistake-item summary::-webkit-details-marker {
    display: none;
}

.mistake-item summary::marker {
    display: none;
}

/* Іконка */
.mistake-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

/* Заголовок */
.mistake-title {
    flex: 1;
}

/* Індикатор розгортання */
.mistake-item summary::after {
    content: '▼';
    font-size: 1.2rem;
    color: #c41e3a;
    transition: transform 0.3s;
}

.mistake-item[open] summary::after {
    transform: rotate(180deg);
}

/* Контент (розгорнутий текст) */
.mistake-content {
    padding: 0 25px 25px 25px;
    border-top: 1px solid #f0f0f0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mistake-content p {
    margin: 15px 0;
    color: #666;
    line-height: 1.8;
}

.mistake-content p:first-child {
    margin-top: 20px;
}

.mistake-content strong {
    color: #c41e3a;
    font-weight: 600;
}

.mistake-content a {
    color: #c41e3a;
    text-decoration: underline;
}

.mistake-content a:hover {
    color: #a01729;
}


@media (max-width: 768px) {
    .mistakes-section h2 {
        font-size: 1.5rem;
    }

    .mistake-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .mistake-icon {
        font-size: 2rem;
    }

    .mistake-item h3 {
        font-size: 1.1rem;
    }
}

/* Мобільна версія */
@media (max-width: 768px) {
    .mistakes-intro {
        font-size: 1rem;
        padding: 0 10px;
    }

    .mistake-item summary {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }

    .mistake-icon {
        font-size: 2rem;
    }

    .mistake-title {
        font-size: 1.1rem;
    }

    .mistake-item summary::after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mistake-item[open] summary::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .mistake-content {
        padding: 0 15px 20px 15px;
    }
}

/* ========================================
   css/sections/audience.css
   ======================================== */

/* ======👥 Для кого ми====== */
.audience-section {
    padding: 60px 20px;
}

.audience-section h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #0066cc;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.2);
}

.audience-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.audience-card h3 {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    color: #0066cc;
}

.audience-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .audience-section h2 {
        font-size: 1.5rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-emoji {
        font-size: 2.5rem;
    }

    .audience-card h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   css/sections/diy-comparison.css
   ======================================== */

/* ======🆚 DIY vs З нами====== */
.comparison-table-section {
    padding: 60px 20px;
}

.comparison-table-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1e40af;
}

.vs-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
}

.vs-table thead {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #0f172a;
}

.vs-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.vs-table th:first-child {
    width: 25%;
}

.vs-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.vs-table tbody tr:hover {
    background: #f9fafb;
}

.vs-table tbody tr:last-child {
    border-bottom: none;
}

.vs-table td {
    padding: 18px 20px;
    color: #374151;
    line-height: 1.6;
}

.vs-table td:first-child {
    font-weight: 600;
    color: #1e40af;
}

.vs-cta {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .comparison-table-section h2 {
        font-size: 1.5rem;
    }

    .vs-table {
        font-size: 0.9rem;
    }

    .vs-table th,
    .vs-table td {
        padding: 12px 10px;
    }

    .vs-table th {
        font-size: 1rem;
    }

    .vs-cta {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vs-table {
        font-size: 0.8rem;
    }

    .vs-table th,
    .vs-table td {
        padding: 10px 8px;
    }

    .vs-table th {
        font-size: 0.9rem;
    }
}

/* ========================================
   css/sections/evolution.css
   ======================================== */

.evolution-section {
    /* прибираємо фон, залишаємо твій глобальний */
    background: none;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    text-align: center;
    /* центрування всередині секції */
}

.evolution-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* вертикальне розташування */
    align-items: center;
    /* центрування по горизонталі */
    gap: 40px;
}

.evolution-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #0077ff, #00c6ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.evolution-text h3 {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.evolution-block {
    background: rgba(255, 255, 255, 0.9);
    /* повернуто білий фон, але трохи прозорий */
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.4s ease;
    position: relative;
}

.evolution-block:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.evolution-icon {
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0077ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.evolution-block p {
    margin: 0;
    color: #333;
    line-height: 1.5;
    font-size: 0.95rem;
}

.evolution-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #0077ff, #00c6ff);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.evolution-link:hover {
    background: linear-gradient(90deg, #005fcc, #0099cc);
    transform: translateY(-2px);
}

.evolution-image {
    display: flex;
    justify-content: center;
}

.evolution-image img {
    max-width: 80%;
    /* трохи менше для гармонії */
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.evolution-image img:hover {
    transform: scale(1.05);
}

.evolution-note {
    margin-top: 40px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.evolution-note p {
    margin: 0;
    line-height: 1.6;
}

/* Adaptive */
@media (max-width: 768px) {
    .evolution-text h2 {
        font-size: 2rem;
    }

    .evolution-text h3 {
        font-size: 1.1rem;
    }

    .evolution-image img {
        max-width: 100%;
    }
}

/* ========================================
   css/features/pwa.css
   ======================================== */

/* ========================================
   PWA PREVIEW
   ======================================== */

.pwa-preview-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pwa-preview {
    background-color: #f0f0f0;
    white-space: nowrap;
    padding: .5em 1em;
    overflow: hidden;
    cursor: pointer;
}

.pwa-preview__text {
    display: inline-block;
    animation: 25s linear infinite scroll-left;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ========================================
   css/features/cookies.css
   ======================================== */

/* ========================================
   COOKIE BANNER
   ======================================== */

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    margin: auto;
    z-index: 9999;
    background: #fff;
    color: #333;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
    display: none;
    flex-direction: column;
    gap: 10px;
}

#cookie-banner.visible {
    display: flex;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.cookie-btn-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
}

.cookie-btn-accept {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.cookie-btn-accept:hover {
    background-color: #43a047;
}

#cookie-banner a {
    color: #3498db;
    text-decoration: underline;
}

/* Темна тема */
.dark-mode #cookie-banner {
    background: #1e1e1e;
    color: #f0f0f0;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.dark-mode .cookie-btn-close {
    color: #aaa;
}

.dark-mode #cookie-banner a {
    color: #8fd6e7;
}

/* ========================================
   css/features/breadcrumbs.css
   ======================================== */

/* ========================================
   BREADCRUMBS (ХЛІБНІ КРИХТИ)
   ======================================== */

.breadcrumbs-wrapper {
    padding: 8px 14px;
    background: rgba(76, 175, 80, 1.0);
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    position: fixed;
    top: 10px;
    left: 2cm;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

@media (max-width: 768px) {
    .breadcrumbs-wrapper {
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        padding: 6px 12px;
    }
}

/* ========================================
   css/features/progress_bar.css
   ======================================== */

/* ========================================
   PROGRESS BAR (ІНДИКАТОР ПРОГРЕСУ)
   ======================================== */

#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #4CAF50;
    width: 0%;
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* ========================================
   css/features/scroll_top.css
   ======================================== */

/* ========================================
   КНОПКА "ВГОРУ"
   ======================================== */

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 10px;
    z-index: 50;
    background-color: #2dc039;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    transition: opacity .3s;
    cursor: pointer;
}

#scrollTopBtn:hover {
    background-color: #28a08a;
}

#scrollTopBtn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3498db, 0 0 0 6px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease;
}

/* Адаптив */
@media (max-width: 420px) {
    #scrollTopBtn {
        width: 30px;
        height: 30px;
        font-size: 16px;
        padding: 0;
        bottom: 12px;
        left: 12px;
        line-height: 30px;
        text-align: center;
    }
}

/* ========================================
   css/features/social_proof.css
   ======================================== */

/* ========================================
   СОЦІАЛЬНИЙ ДОКАЗ
   ======================================== */

#social-proof {
    position: fixed;
    bottom: 3cm;
    left: 20px;
    max-width: 320px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    font-family: sans-serif;
    animation: fadein 0.5s;
    z-index: 9999;
    word-wrap: break-word;
    text-align: left;
}

.hidden {
    display: none;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    #social-proof {
        font-size: 13px;
        padding: 18px 10px;
        bottom: 1.5cm;
        left: 0;
        right: 6cm;
        max-width: calc(100% - 6cm);
    }
}

/* ========================================
   css/features/exit_intent.css
   ======================================== */

/* ========================================
   EXIT INTENT POPUP
   ======================================== */

.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.exit-popup-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-height: 90vh;
    overflow-y: auto;
    color: #fff;
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.exit-popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.exit-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.exit-popup-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.exit-popup-body {
    text-align: center;
}

.exit-main-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exit-sub-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-sub-text strong {
    color: #ffd700;
    font-size: 1.3rem;
}

.exit-benefits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.exit-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.exit-benefit:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.exit-timer {
    background: rgba(220, 53, 69, 0.3);
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.exit-timer p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

#exit-countdown {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 700;
}

.exit-guarantee {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.lock-icon {
    margin-right: 0.5rem;
}

.exit-btn-secondary {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-top: 1rem;
    transition: color 0.2s;
}

.exit-btn-secondary:hover {
    color: #fff;
    text-decoration: underline;
}

.exit-success {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    animation: zoomIn 0.5s;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-email {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.success-promo {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.promo-code {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 3px;
    margin: 0 0 1rem;
}

.copy-promo {
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-promo:hover {
    transform: scale(1.05);
}

.success-instructions {
    margin: 1.5rem 0;
    font-size: 1rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.success-btn-primary,
.success-btn-secondary {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.success-btn-primary {
    background: #ffd700;
    color: #333;
    border: none;
}

.success-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.success-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Адаптив */
@media (max-width: 768px) {
    .exit-popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .exit-popup-header h2 {
        font-size: 1.5rem;
    }

    .exit-emoji {
        font-size: 3rem;
    }

    .exit-main-text {
        font-size: 1.1rem;
    }

    .exit-sub-text {
        font-size: 1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-btn-primary,
    .success-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .exit-popup-content {
        padding: 1rem;
        border-radius: 14px;
        margin: 0.5rem;
    }

    .exit-popup-header h2 {
        font-size: 1.3rem;
    }

    .exit-emoji {
        font-size: 2.5rem;
    }

    .exit-main-text {
        font-size: 1rem;
    }

    .exit-sub-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .exit-benefit {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .benefit-icon {
        font-size: 1.2rem;
    }

    .exit-btn-primary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .exit-timer p {
        font-size: 1rem;
    }

    #exit-countdown {
        font-size: 1.1rem;
    }

    .promo-code {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .success-btn-primary,
    .success-btn-secondary {
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem;
    }

    .exit-popup-close {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}

/* ========================================
   css/features/update_banner.css
   ======================================== */

/* ========================================
   UPDATE BANNER
   ======================================== */

.update-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #007bff;
    color: white;
    padding: 12px;
    text-align: center;
    font-family: sans-serif;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.update-banner button {
    padding: 6px 12px;
    background: white;
    color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.update-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 50px;
    background: #0b74da;
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50px);
    transition: transform 0.3s ease, background-color 0.3s;
}

.update-message.visible {
    transform: translateY(0);
}

/* Темна тема */
.dark-mode .update-message {
    background: #4a90e2;
    color: #1e1e1e;
}

/* Адаптив */
@media (max-width: 420px) {
    .update-banner {
        flex-direction: column;
        padding: 10px;
        font-size: 15px;
    }

    .update-banner button {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }
}

/* ========================================
   css/features/migration_notice.css
   ======================================== */

/* Повідомлення про міграцію */
.platform-migration-notice {
    background: linear-gradient(135deg, #028799 0%, #0097a7 100%);
    color: white;
    padding: 16px 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
    animation: slideDown 0.5s ease-out;
    position: relative;
}

.notice-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.notice-content strong {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.notice-content a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.notice-content a:hover {
    color: #FFF;
}

.notice-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.notice-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Мобільна версія */
@media (max-width: 768px) {
    .platform-migration-notice {
        padding: 12px 15px;
        margin: 15px 10px;
        gap: 10px;
    }

    .notice-icon {
        font-size: 24px;
    }

    .notice-content {
        font-size: 13px;
    }

    .notice-close {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}

/* Прихована після закриття */
.platform-migration-notice.hidden {
    display: none;
}

/* ========================================
   css/themes/dark_mode.css
   ======================================== */

/* ========================================
   ТЕМНА ТЕМА
   ======================================== */

body.dark-mode {
    background-color: #1e1e1e;
    color: #f5f5f5;
}

body.dark-mode header {
    background-color: #121212;
}

body.dark-mode .extra-card,
body.dark-mode .project-card,
body.dark-mode .testimonial,
body.dark-mode footer,
body.dark-mode section {
    background-color: #2c2c2c;
    color: #f5f5f5;
}

body.dark-mode nav a {
    color: #ddd;
}

body.dark-mode .btn {
    background-color: #444;
}

body.dark-mode .btn:hover {
    background-color: #888;
}

body.dark-mode .logo-footer {
    color: #ff5050;
}

/* Popup темна тема */
body.dark-mode .popup {
    background: #1e1e1e;
    color: #f0f0f0;
    border: 1px solid #444;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .6);
}

body.dark-mode .popup a {
    color: #4da3ff;
}

body.dark-mode .close-btn {
    color: #bbb;
}

/* Cookie banner темна тема */
.dark-mode #cookie-banner {
    background: #1e1e1e;
    color: #f0f0f0;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.dark-mode .cookie-btn-close {
    color: #aaa;
}

.dark-mode #cookie-banner a {
    color: #8fd6e7;
}

/* Update message темна тема */
.dark-mode .update-message {
    background: #4a90e2;
    color: #1e1e1e;
}

/* ========================================
   css/utils/animations.css
   ======================================== */

/* ========================================
   АНІМАЦІЇ
   ======================================== */

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bounce */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Pulse */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: rotate(10deg) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: rotate(10deg) scale(1.05);
    }
}

/* Glow */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff;
    }

    50% {
        box-shadow: 0 0 12px #ffffff, 0 0 24px #ffffff, 0 0 36px #ffffff;
    }

    100% {
        box-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff, 0 0 24px #ffffff;
    }
}

/* Float */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Scroll Left (Marquee) */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Highlight */
@keyframes highlight {
    0% {
        background-color: #fffa90;
    }

    100% {
        background-color: transparent;
    }
}

/* Zoom In */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Flag Wave */
@keyframes flag-wave {

    0%,
    50%,
    100% {
        transform: rotate(0) skewY(0);
    }

    25% {
        transform: rotate(2deg) skewY(2deg);
    }

    75% {
        transform: rotate(-2deg) skewY(-2deg);
    }
}

/* Run (для highlight-propose) */
@keyframes run {
    /* Визначте за потреби */
}

/* Highlight Text */
@keyframes highlight-text {
    /* Визначте за потреби */
}

/* ========================================
   css/utils/responsive.css
   ======================================== */

/* ========================================
   RESPONSIVE (ЗАГАЛЬНІ АДАПТИВНІ СТИЛІ)
   ======================================== */

/* Більшість адаптивних стилів вже розподілені по відповідних файлах.
   Цей файл для загальних глобальних змін */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    section {
        padding: 30px 15px;
    }
}

@media (max-width: 420px) {
    body {
        overflow-x: hidden;
    }

    section {
        padding: 20px 10px;
    }
}

@media (max-width: 375px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
}
