:root {
    --black: #131010;
    --gray: #B2AFAF;
    --darkgray: #555;
    --white: #FDF7F7;
    --bg: #FDF7F7;

    --pink: #FF4E99;
    --orange: #FF9F00;
    --lime: #C6DF2B;
    --blue: #009DFF;
    
    --error-red: #E74C3C; 
    --error-background: #FADBD8;

    --font-family: 'Rubik', sans-serif;
}

.color-pink{ color: var(--pink); }
.color-orange{ color: var(--orange); }
.color-lime{ color: var(--lime); }
.color-blue{ color: var(--blue); }
.color-darkgray { color: var(--darkgray); }

body {
    margin: 0;
    padding: 0; 
    font-family: var(--font-family, sans-serif);
    background-color: var(--bg);
    overscroll-behavior-y: none;
    width: 100%;
}

* {
    -webkit-overflow-scrolling: touch; 
}

.color-background {
    width: 100%;             
    min-height: 100vh;      
    display: flex;
    justify-content: center; 
    align-items: center;     
    background-size: cover;          
    background-position: center center; 
    background-repeat: no-repeat;    
    position: relative;
    overflow: hidden; 
    box-sizing: border-box; 
    padding: 0; 
}

.form-wrapper {
    width: 100%;
    max-width: 800px; 
    text-align: center;
    z-index: 10; 
    margin-top: 3vh; 
    display: flex;
    flex-direction: column;
    gap: 30px; 
    padding: 20px;
}

.form-section {
    background-color: var(--white);
    padding: 0; 
    border-radius: 25px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
}

.block-header {
    background-color: var(--orange);
    color: var(--white);
    padding: 40px 80px; 
    border-radius: 25px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.title-main {
    color: var(--black); 
    padding: 0; 
    margin-bottom: 5px; 
    font-size: 2.3em; 
    font-weight: 900;
    text-align: left;
}

.subtitle {
    color: var(--black); 
    font-size: 1em;
    margin: 0;
    text-align: left;
}

.link-login {
    color: var(--black); 
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.block-header-2 {
    background-color: var(--pink);
    color: var(--white);
    padding: 40px 80px; 
    border-radius: 25px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.block-fields {
    padding: 40px 80px 20px 80px; 
    display: flex;
    flex-direction: column;
}

.full-rounded {
    border-radius: 90px !important; 
}

.input-group {
    text-align: left;
    position: relative;
    margin-bottom: 25px;
    border-radius: 50px; 
}

.input-group input {
    width: 100%;
    background: none;
    font-family: var(--font-family); 
    padding: 18px 25px; 
    border: 1px solid #ddd;
    border-radius: 50px; 
    box-sizing: border-box;
    font-size: 1.1em; 
    transition: border-color 0.3s, background-color 0.3s;
    outline: none; 
}

.input-group textarea {
    width: 100%;
    background: none;
    font-family: var(--font-family); 
    padding: 18px 25px; 
    border: 1px solid #ddd;
    border-radius: 25px; 
    box-sizing: border-box;
    font-size: 1.1em; 
    transition: border-color 0.3s, background-color 0.3s;
    resize: vertical; 
    line-height: 1.4;
    outline: none; 
}

.input-group label {
    display: none; 
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--orange); 
    box-shadow: 0 0 5px rgba(91, 155, 213, 0.5);
}

.phone-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden; 
    border: none; 
}

.phone-group input {
    border: none;
    flex-grow: 1;
    padding: 14px 20px 14px 5px; 
}

.phone-group .country-code {
    padding: 14px 20px; 
    border-right: 1px solid #ddd; 
    border-top-left-radius: 50px; 
    border-bottom-left-radius: 50px;
    white-space: nowrap;
}

.input-error input,
.input-error .phone-group {
    border-color: var(--error-red) !important;
    background-color: var(--error-background);
}

.input-error .phone-group {
     border: 1px solid var(--error-red) !important;
}

.input-error .phone-group input {
    background-color: transparent; 
}

.input-error .phone-group .country-code {
    background-color: transparent;
}

.error-message {
    position: absolute;
    bottom: -20px;
    left: 20px;
    color: var(--error-red);
    font-size: 0.9em;
    margin-top: 5px;
    font-weight: 500;
    display: none; 
}

.input-group.input-error .error-message {
    display: block; 
}

.btn-register {
    width: 100%;
    font-family: var(--font-family);
    padding: 15px;
    background-color: var(--orange); 
    color: var(--black); 
    border-color: var(--black);
    border-radius: 50px; 
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px; 
    font-weight: 700;
    margin-bottom: 20px; 
    transition: background-color 0.3s;
}

.btn-register:hover {
    background-color: #e59412; 
}

.btn-register-2 {
    width: 100%;
    font-family: var(--font-family);
    padding: 15px;
    background-color: var(--pink); 
    color: var(--black); 
    border-color: var(--black);
    border-radius: 50px; 
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px; 
    font-weight: 700;
    margin-bottom: 20px; 
    transition: background-color 0.3s;
}

.btn-register-2:hover {
    background-color: #dc4584; 
}

.block-social {
    background-color: var(--white);
    padding: 30px 80px; 
    border-radius: 25px;
}

/* НАВІГАЦІЯ */
.header-main {
    position: fixed; 
    top: 0;
    left: 0;
    background-color: var(--white);
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease-in-out; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
}

.header-main.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; 
    padding: 10px; 
}

.header-logo img {
    height: 130px; 
    display: block;
}

.main-menu {
    display: flex;
    gap: 60px; 
    margin: 0 auto;
}

.menu-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 700; 
    font-size: 22px; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-link:nth-child(1):hover { color: var(--pink); transform: scale(1.1); }
.menu-link:nth-child(2):hover { color: var(--orange); transform: scale(1.1); }
.menu-link:nth-child(3):hover { color: var(--lime); transform: scale(1.1); }
.menu-link:nth-child(4):hover { color: var(--blue); transform: scale(1.1); }
.menu-link:nth-child(5):hover { color: var(--pink); transform: scale(1.1); }

.login-icon {
    margin-left: 24px; 
    font-size: 3rem;
    color: var(--black); 
}

/* BUTTONS */
.primary-button {
    background-color: var(--lime);
    color: var(--black);
    font-family: var(--font-family);
    padding: 20px 45px;
    font-size: 22px;
    border: 2px solid var(--black);
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 4px 4px 0 #1a1a2e;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.primary-button:hover {
    opacity: 0.9;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* БУРГЕР-МЕНЮ */
.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.burger-bar {
    height: 5px;
    background-color: var(--black);
    border-radius: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.mobile-menu a {
    color: var(--black); 
    text-decoration: none;
    font-size: 24px;
    margin: 20px 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: var(--black);
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu.open {
    display: flex;
}

.custom-icon {
    width: 55px; 
    height: 35px; 
}

/* КОЛЬОРОВІ БЛОКИ */
.color-blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 70px 0 20px; 
}

.block {
    width: 400px;
    height: 60px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.blue {
    background-color: var(--blue);
}

.lime {
    background-color: var(--lime);
}

.orange {
    background-color: var(--orange);
}

.pink {
    background-color: var(--pink);
}

.block:hover {
    transform: scale(1.1);
}

/* СЕКЦІЯ ЗОБРАЖЕННЯ */
.full-width-image-section {
    padding: 40px 0; 
    margin: 0;
    width: 100%;
}

.image-container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    border-radius: 8px;
}

.responsive-full-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: -230px; 
    margin-left: auto; 
    margin-right: 80px; 
    position: relative; 
}

/* ГОЛОВНА СЕКЦІЯ */
.main-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 50px;
    gap: 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
}

.hero-content h1 {
    font-size: 90px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    margin-top: 15px;
}

.action-btn {
    background-color: var(--pink);
    color: var(--black);
    box-shadow: 4px 4px 0 #1a1a2e;
    padding: 20px 50px;
    font-size: 30px;
    font-family: var(--font-family);
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.action-btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.action-btn-second {
    background-color: var(--lime);
    color: var(--black);
    padding: 20px 50px;
    font-size: 30px;
    font-family: var(--font-family);
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.action-btn-second:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.forabout-btn-second {
    background-color: var(--orange);
    color: var(--black);
    padding: 20px 50px;
    font-size: 18px;
    font-family: var(--font-family);
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.forabout-btn-second:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.hero-visual {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.hero-visual img {
    width: 100%; 
    max-width: 100%; 
    height: auto;
    border-radius: 12px;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.review-btn {
    background-color: var(--orange);
    color: var(--black);
    padding: 20px 50px;
    box-shadow: 4px 4px 0 #1a1a2e;
    font-size: 30px;
    font-family: var(--font-family);
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.review-btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* FOOTER */
footer {
    padding: 40px 0;
}

.footer-head {
    text-align: center;
    margin-bottom: 40px;
}

.footer-head .footer-logo img {
    max-width: 320px; 
    margin-bottom: 10px;
}

.footer-head p {
    font-size: 16px; 
    font-weight: 400;
    color: var(--black);
}

.footer-head .subtitle {
    font-size: 18px;
    font-weight: 800;
    margin-left: 775px;
    color: var(--black);
    margin-top: 5px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-social .item {
    font-size: 24px;
    color: var(--black);
    background-color: transparent; 
    border: 2px solid var(--black); 
    border-radius: 60%; 
    padding: 12px;
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.footer-social .item:hover {
    transform: translateY(-10px); 
}

.footer-social .item:nth-child(1):hover {
    color: var(--pink); 
    border-color: var(--pink); 
}

.footer-social .item:nth-child(2):hover {
    color: var(--blue); 
    border-color: var(--blue); 
}

.footer-social .item:nth-child(3):hover {
    color: var(--orange); 
    border-color: var(--orange); 
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.footer-bottom .footer-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.footer-bottom .footer-navigation .item {
    font-size: 18px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;  
    transition: color 0.3s ease;
}

.footer-bottom .footer-navigation .item:hover {
    color: var(--pink); 
}

.footer-bottom .footer-navigation .item img {
    width: 20px;
    height: 20px;
}

.footer-bottom .designer {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
}

.footer-bottom .designer a {
    color: var(--gray); 
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .designer a:hover {
    color: var(--orange);
}

/* STREAK CONTAINER */
.streak-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

.streak-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 0; 
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.streak-icon-wrapper:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.streak-fire {
    font-size: 1.8em;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

.streak-fire.active {
    color: var(--orange);
    animation: fireFlicker 2s ease-in-out infinite;
}

.streak-fire.inactive {
    color: #888;
    filter: drop-shadow(0 0 4px rgba(136, 136, 136, 0.3));
}

@keyframes fireFlicker {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
    }
    50% { 
        transform: scale(1.05) rotate(-2deg);
        filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.8));
    }
}

.streak-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--lime);
    color: #131010;
    font-size: 0.75em;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-width: 20px;
    text-align: center;
}

/* CALENDAR POPUP */
.streak-calendar-popup {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    padding: 20px;
    min-width: 320px;
    max-width: 360px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 2px solid #e0e0e0;
    pointer-events: none;
}

.streak-calendar-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.streak-icon-wrapper:hover + .streak-calendar-popup,
.streak-calendar-popup:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.streak-container:hover .streak-calendar-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.streak-calendar-popup::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.calendar-header {
    margin-bottom: 15px;
}

.calendar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 12px;
}

.calendar-title i {
    color: var(--orange);
    font-size: 1.3em;
}

.calendar-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 0.8em;
    color: var(--darkgray);
}

.stat-value {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--black);
}

/* CALENDAR GRID */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin: 15px 0;
}

.calendar-day {
    aspect-ratio: 1;
    border-radius: 6px;
    background: #e0e0e0;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #d0d0d0;
    min-height: 30px;
}

.calendar-day:hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.calendar-day.active {
    background: var(--orange) !important;
    border: 1px solid var(--orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

.calendar-day.today {
    background: var(--lime) !important;
    border: 3px solid #131010;
    box-shadow: 0 0 15px rgba(198, 223, 43, 0.8);
    transform: scale(1.1);
}

.calendar-day.inactive {
    background: #f5f5f5 !important;
    border: 1px solid #e8e8e8;
}

.calendar-day::after {
    content: attr(data-date);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 100;
}

.calendar-day:hover::after {
    opacity: 1;
}

/* LEGEND */
.calendar-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 0.85em;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* TOAST NOTIFICATION */
.streak-toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    border-left: 4px solid var(--orange);
}

.streak-toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-text strong {
    font-size: 1em;
    color: var(--black);
}

.toast-text span {
    font-size: 0.9em;
    color: #666;
}

.color-for-stik-1 {
    color: var(--orange);
}

.color-for-stik-2 {
    color: var(--lime);
}

.color-for-stik-3 {
    color: var(--gray);
}

/* АНІМАЦІЇ */
.step {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ============================================= */
/* МОБІЛЬНІ СТИЛІ */
/* ============================================= */

@media (max-width: 768px) {
    /* ФОРМИ */
    .form-wrapper {
        max-width: 90%;
        margin: 20px auto;
        gap: 20px;
    }

    .block-header,
    .block-fields,
    .block-social {
        padding: 20px 30px;
    }

    .title-main {
        font-size: 1.8em;
    }

    .input-group {
        margin-bottom: 25px;
    }

    /* НАВІГАЦІЯ */
    .burger-menu {
        display: flex; 
    }

    .main-menu {
        display: none; 
    }

    .cta-button {
        display: none; 
    }

    .header-logo img {
        height: 100px; 
    }

    .login-icon {
        display: none;
    }

    /* RESPONSIVE IMAGE */
    .responsive-full-image {
        margin-top: 20px; 
        margin-left: 0; 
        margin-right: 0; 
    }

    /* HERO */
    .main-hero {
        padding: 0px 20px; 
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 50px; 
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 22px;
        margin-top: 10px;
    }

    .action-btn {
        padding: 15px 40px; 
        font-size: 24px;
        margin-top: 20px; 
    }

    .action-btn-second {
        padding: 15px 40px; 
        font-size: 24px;
        margin-left: 80px;
        margin-top: 20px; 
    }

    .hero-visual {
        margin-top: 20px;
    }

    .hero-visual img {
        width: 100%; 
        height: auto;
        max-width: 100%; 
        transform: scale(1); 
    }

    .review-btn {
        font-size: 20px;
        padding: 15px 40px;
    }

    /* FOOTER */
    footer {
        padding: 20px 0;
    }

    .footer-head .footer-logo img {
        max-width: 200px;
    }

    .footer-head p {
        font-size: 14px;
    }

    .footer-head .subtitle {
        font-size: 16px;
    }

    .footer-social {
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-social .item {
        font-size: 20px;
        padding: 10px;
    }

    .footer-bottom .footer-navigation {
        gap: 15px;
    }

    .footer-bottom .footer-navigation .item {
        font-size: 16px;
        gap: 3px;
    }

    .footer-bottom .footer-navigation .item img {
        width: 16px;
        height: 16px;
    }

    .footer-bottom .designer {
        font-size: 13px;
    }

    /* STREAK */
    .streak-icon-wrapper {
        margin-left: -50px;
    }

    .streak-calendar-popup {
        right: -10px;
        left: auto;
        transform: translateY(-10px);
        min-width: 300px;
        max-width: 320px;
    }

    .streak-container:hover .streak-calendar-popup {
        transform: translateY(0);
    }

    .streak-calendar-popup::before {
        right: 25px;
        left: auto;
    }

    .calendar-grid {
        gap: 4px;
    }

    /* АНІМАЦІЇ */
    .step {
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }
}

@media (max-width: 480px) {
    /* НАВІГАЦІЯ */
    .header-logo img {
        height: 80px; 
    }

    .header-container {
        margin-right: -200px; 
    }

    /* RESPONSIVE IMAGE */
    .responsive-full-image {
        margin-top: 15px; 
    }

    /* HERO */
    .main-hero {
        padding: 0px 10px; 
        gap: 10px; 
    }

    .hero-content h1 {
        font-size: 40px; 
        margin-bottom: 8px;
    }

    .hero-content p {
        font-size: 18px; 
        margin-top: 8px;
    }

    .action-btn-second {
        padding: 12px 30px; 
        font-size: 20px; 
        margin-left: 80px;
        margin-top: 15px;
    }

    .hero-visual {
        margin-top: 15px;
    }

    .hero-visual img {
        width: 100%;
        height: auto;
        max-width: 100%;
        transform: scale(1); 
    }

    .review-btn {
        font-size: 18px;
        padding: 12px 30px;
    }

    /* FOOTER */
    .footer-head .footer-logo img {
        max-width: 150px;
    }

    .footer-head p {
        font-size: 12px;
    }

    .footer-head .subtitle {
        font-size: 14px;
    }

    .footer-social .item {
        font-size: 18px;
        padding: 8px;
    }

    .footer-bottom .footer-navigation {
        flex-direction: column;
        gap: 10px;
        margin-left: 30px;
    }

    .footer-bottom .footer-navigation .item {
        font-size: 14px;
    }

    .footer-bottom .footer-navigation .item img {
        width: 14px;
        height: 14px;
    }

    .footer-bottom .designer {
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    .burger-menu {
        display: none; 
    }

    .mobile-menu {
        display: none; 
    }
}

/* =========================================================================
   DROPDOWN NAVIGATION
   ========================================================================= */
.main-menu {
    display: flex;
    gap: 40px;
    margin: 0 auto;
    align-items: center;
}
.nav-dropdown {
    position: relative;
}
.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropdown-trigger i {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}
/* Dropdown контент - БІЛЬШИЙ */
.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 340px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}
/* Стрілочка зверху */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
}
.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Елементи dropdown - БІЛЬШІ */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background: var(--gray-100, #f5f5f5);
}
.dropdown-item i {
    font-size: 26px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--gray-100, #f5f5f5);
    color: var(--black);
    transition: all 0.2s ease;
}
/* Кольори для іконок при hover */
.dropdown-item:hover i {
    background: var(--lime);
    color: var(--black);
}
.dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dropdown-title {
    display: block;
    font-weight: 600;
    font-size: 18px;
}
.dropdown-desc {
    display: block;
    font-size: 14px;
    color: var(--gray-500, #6c757d);
}
/* Header actions group */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Точка-розділювач */
.nav-dot {
    color: var(--gray-400, #adb5bd);
    font-size: 10px;
    user-select: none;
}

/* =========================================================================
   RESPONSIVE - ховаємо dropdown на мобільних
   ========================================================================= */
@media (max-width: 1024px) {
    .nav-dropdown .dropdown-content {
        display: none;
    }

    .dropdown-trigger i {
        display: none;
    }

    .nav-dot {
        display: none;
    }
}
