/* =======================================================
   HEADER — BASE
======================================================= */

li {
  list-style: none;
}


a {
  text-decoration: none;
}


@media screen and (max-width:730px) {
  .elementor-row {
    flex-direction: column;
    gap: unset;
  }
}

.nav-top-row {
      display: flex;
}

.elementor-row {
      display: flex;
    align-items: center;
    gap: 30px;
  justify-content: center;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 0;
    z-index: 1000;
    position: relative;
}

.site-header .heading-row {
    display: flex;
    align-items: center;
}

.elementor-element.elementor-element-3db520ed.elementor-widget.elementor-widget-button {
      text-align: center;
}


.elementor-widget-container {
      margin-bottom: 20px;
}

/* =======================================================
   LOGO AREA
======================================================= */

.site-branding-logo img {
    max-height: 75px;
    width: auto;
    transition: 0.3s ease;
    object-fit: contain;
}

/* Легка анімація при ховері */
.site-branding-logo img:hover {
    transform: scale(1.03);
}

/* =======================================================
   TEXT BRANDING
======================================================= */

.site-branding-text {
    margin-top: 10px;
}

.site-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.site-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: 0.2s;
}

.site-title a:hover {
    color: #0073aa;
}

.site-description {
    margin-top: 4px;
    font-size: 14px;
    color: #666;
}

/* =======================================================
   SEARCH COLUMN (поки порожня, але стилізую під майбутню форму)
======================================================= */

.search-heading {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 10px;
}

/* Якщо буде поле пошуку — готові стилі */
.search-heading input[type="search"] {
    padding: 10px 14px;
    border-radius: 25px;
    border: 1px solid #ccc;
    min-width: 240px;
    transition: 0.3s;
}

.search-heading input[type="search"]:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.2);
}

/* =======================================================
   RESPONSIVE
======================================================= */

@media (max-width: 992px) {

    .site-branding-text {
        margin-top: 8px;
        text-align: center;
    }

    .site-title {
        font-size: 20px;
    }

    .site-header .heading-row {
        flex-direction: column;
        text-align: center;
    }

    .search-heading {
        justify-content: center;
        padding-top: 15px;
    }
}

@media (max-width: 576px) {

    .site-header {
        padding: 20px 0;
    }

    .site-branding-logo img {
        max-height: 55px;
    }

    .site-title {
        font-size: 18px;
    }

    .site-description {
        font-size: 13px;
    }
}
/* =======================================================
   MAIN MENU — base
======================================================= */

.main-menu {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 9999;
}

.navbar {
    margin-bottom: 0;
    border: none;
    background: transparent;
}


/* =======================================================
   BURGER BUTTON (open-panel)
======================================================= */

.open-panel {
    display: inline-block;
    width: 32px;
    height: 26px;
    position: absolute;
    right: 15px;
    top: 18px;
    z-index: 2000;
}

.open-panel span {
    display: block;
    height: 3px;
    margin-bottom: 5px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* hover effect */
.open-panel:hover span {
    background: #0073aa;
}


/* =======================================================
   MOBILE LOGO + TEXT HEADER (visible-xs)
======================================================= */

.mobile-heading {
    padding: 10px 0 15px;
}

.mobile-heading .site-branding-logo img {
    max-height: 55px;
}

.mobile-heading .site-title a {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.mobile-heading .site-description {
    font-size: 13px;
    color: #777;
}

/* Мобільний напис «Меню» */
.brand-absolute {
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    left: 15px;
    top: 12px;
    color: #333;
}


/* =======================================================
   DESKTOP MENU
======================================================= */

.menu-container {
    display: flex;
    justify-content: flex-start;
}

.menu-container ul.navbar-nav > li {
    margin-right: 25px;
}

.menu-container .nav-link {
    padding: 20px 0;
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s;
    border-top: 3px solid transparent;
}

.menu-container .nav-link:hover {
    color: #0073aa;
    border-top-color: #0073aa;
}

/* active */
.menu-container li.active > a {
    color: #0073aa;
    border-top-color: #0073aa;
}


/* =======================================================
   MOBILE MENU DROPDOWN
======================================================= */

#my-menu {
    display: none;
    background: #fff;
    padding: 10px 0;
    border-top: 1px solid #e5e5e5;
}

#my-menu ul.navbar-nav > li {
    width: 100%;
}

#my-menu .nav-link {
    padding: 12px 10px;
    border-left: 4px solid transparent;
}

#my-menu .nav-link:hover {
    background: #f1f1f1;
    border-left-color: #0073aa;
}


/* =======================================================
   MOBILE RESPONSIVE LOGIC
======================================================= */

@media (max-width: 992px) {

    .menu-container {
        display: none;
    }

    #my-menu.open {
        display: block;
    }

    .navbar-header {
        position: relative;
        min-height: 70px;
    }

    /* give space for burger + text */
    .brand-absolute {
        top: 18px;
    }

    .open-panel {
        top: 18px;
    }
}

@media (min-width: 993px) {

    .mobile-heading,
    .brand-absolute,
    .open-panel {
        display: none !important;
    }

    .menu-container {
        display: flex !important;
    }
}

/* =======================================================
   CONTENT WRAPPER
======================================================= */
#site-content {
    padding-top: 40px;
    padding-bottom: 40px;
    font-family: "Roboto", sans-serif;
    color: #333;
}

.elementor-section {
    margin-bottom: 60px;
}

/* =======================================================
   HERO SECTION (зарабатывать...)
======================================================= */

.elementor-element-4f47bf8c {
    background: linear-gradient(135deg, #f5faff, #dde8ff);
    border-radius: 12px;
    padding: 60px 40px !important;
    overflow: hidden;
    position: relative;
}

.elementor-element-4f47bf8c .elementor-heading-title {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e94;
    line-height: 1.2;
    text-transform: uppercase;
}

.elementor-element-44b4064f .elementor-button {
    background: #4054B2;
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.elementor-element-44b4064f .elementor-button:hover {
    background: #2b3d91;
    transform: translateY(-2px);
}

/* =======================================================
   HERO VIDEO RIGHT SIDE
======================================================= */
.elementor-widget-video .elementor-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* =======================================================
   TWO ICON BOXES SECTION
======================================================= */
.elementor-element-30c97e5d,
.elementor-element-39746f24 {
    padding: 40px 20px;
}

.elementor-icon-box-icon {
    color: #4054B2;
    font-size: 48px;
}

.elementor-icon-box-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
}

.elementor-icon-box-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* =======================================================
   SECTION: выберите сколько хотите зарабатывать
======================================================= */

.elementor-element-75d6ac7c .elementor-heading-title {
    text-transform: uppercase;
    color: #2c3e94;
    font-size: 34px;
    font-weight: 800;
    text-align: center;
}

/* text under title */
.elementor-element-92c94b6 p {
    text-align: center;
    color: #444;
    font-size: 16px;
}

/* =======================================================
   THREE PRICING COLUMNS
======================================================= */
.elementor-inner-column {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.elementor-inner-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.12);
}

/* big numbers */
.elementor-inner-column h2.elementor-size-medium {
    font-size: 44px;
    font-weight: 900;
    color: #4054B2;
    text-transform: uppercase;
    margin-bottom: 10px;
  text-align: center;
}

.elementor-widget-wrap {
  display: flex;
    flex-direction: column;
    align-items: center;
}

.elementor-inner-column h2.elementor-size-large {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
  text-align: center;
}

/* линии */
.elementor-divider-separator {
    border-color: #c7d0ff;
}

/* LIST WITH ICONS */
.elementor-icon-list-icon i {
    color: #4054B2;
    font-size: 18px;
}

.elementor-icon-list-text {
    font-size: 15px;
    color: #444;
}

/* Buttons inside pricing */
.elementor-inner-column .elementor-button {
    margin-top: 15px;
    background: #4054B2;
    color: #fff;
    border-radius: 40px;
    padding: 12px 26px;
    transition: 0.3s;
}

.elementor-inner-column .elementor-button:hover {
    background: #2b3d91;
    transform: translateY(-2px);
}

/* =======================================================
   FAQ (Elementor Toggle)
======================================================= */

.elementor-toggle-item {
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #d8ddf6;
    overflow: hidden;
    transition: 0.3s;
}

.elementor-tab-title {
    background: #eef2ff;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #2c3e94;
    cursor: pointer;
}

.elementor-tab-title:hover {
    background: #e0e5ff;
}

.elementor-tab-title i {
    color: #4054B2;
    font-size: 18px;
}

.elementor-tab-content {
    background: #ffffff;
    padding: 20px;
    font-size: 15px;
    color: #444;
    display: none;
}

.elementor-toggle-item.active .elementor-tab-content {
    display: block;
}

.elementor-toggle-item.active {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =======================================================
   IMAGE CAROUSEL (доходы)
======================================================= */

.elementor-element-111307a {
    padding: 20px;
}

.swiper-slide-image {
    border-radius: 16px;
    box-shadow: 0 14px 45px rgba(0,0,0,0.25);
}

/* arrows */
.elementor-swiper-button {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.elementor-swiper-button:hover {
    background: #fff;
    transform: scale(1.1);
}

/* pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #4054B2;
    opacity: 0.4;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* =======================================================
   RESPONSIVE
======================================================= */

@media (max-width: 992px) {
    .elementor-heading-title.elementor-size-medium {
        font-size: 32px !important;
    }
    .elementor-inner-column {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .elementor-element-4f47bf8c {
        padding: 40px 25px !important;
    }
    .elementor-heading-title.elementor-size-medium {
        font-size: 28px !important;
    }
}

@media (max-width: 576px) {
    .elementor-element-4f47bf8c .elementor-heading-title {
        font-size: 26px;
    }
    .elementor-inner-column h2.elementor-size-medium {
        font-size: 32px;
    }
}

/* =======================================================
   FOOTER CREDITS
======================================================= */

#colophon.footer-credits {
    background: #f5f7ff;
    border-top: 2px solid #d9e2ff;
    padding: 25px 0;
    font-family: "Roboto", sans-serif;
    margin-top: 40px;
}

.footer-credits-text {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.footer-credits-text a {
    color: #4054B2;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.footer-credits-text a:hover {
    color: #2c3e94;
    text-decoration: underline;
}

.footer-credits-text .sep {
    margin: 0 10px;
    color: #999;
}

/* =======================================================
   ADAPTIVE
======================================================= */

@media (max-width: 576px) {
    #colophon {
        padding: 20px 0;
    }
    .footer-credits-text {
        font-size: 14px;
        padding: 0 10px;
    }
}
