/* ═══════════════════════════════════════════════════════════════
   CUSTOM CSS — Canal da Denúncia
   Extracted from inline <style> blocks in Blade templates
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero Banner Fixes ─── */

/* Fix: top-left corner must be rounded like the other corners */
.intro-wrapper.style1 {
    border-radius: 50px !important;
    overflow: hidden !important;
}

/* Fix: "Obtenha uma demo grátis" button — center text + icon */
.theme-btn.style2.button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.theme-btn.style2.button svg {
    margin-left: 0 !important;
    flex-shrink: 0;
}

/* ─── Compact breadcrumb banner ─── */
.breadcumb-section--compact {
    padding: 0 !important;
    margin-bottom: 0;
}
.breadcumb-section--compact .breadcumb-container-wrapper {
    padding: 160px 0 48px !important;
    background: linear-gradient(180deg, rgba(116, 68, 253, 0.06) 0%, rgba(116, 68, 253, 0.02) 70%, transparent 100%);
    position: relative;
    overflow: hidden;
}
.breadcumb-section--compact .breadcumb-container-wrapper::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(116, 68, 253, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.breadcumb-section--compact .breadcumb-container-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(116, 68, 253, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.breadcumb-section--compact .breadcumb-wrapper {
    position: relative;
    z-index: 1;
}
.breadcumb-section--compact .page-heading h1 {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #282C32;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.breadcumb-section--compact .page-heading .links {
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    color: #717171;
}
.breadcumb-section--compact .page-heading .links a {
    color: #282C32;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcumb-section--compact .page-heading .links a:hover {
    color: #7444FD;
}
.breadcumb-section--compact .page-heading .links .slash {
    margin: 0 6px;
    color: #C4C4C4;
}
/* ─── All breadcrumb links: black text, current page in default color ─── */
.breadcumb-container-wrapper .breadcumb-wrapper .page-heading .links a {
    color: #282C32 !important;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcumb-container-wrapper .breadcumb-wrapper .page-heading .links a:hover {
    color: #7444FD !important;
}
.breadcumb-container-wrapper .breadcumb-wrapper .page-heading .links {
    color: #7444FD !important;
}

.breadcumb-section--compact .page-heading .links {
    margin-bottom: 16px;
}
.breadcumb-section--compact .page-heading__desc {
    font-family: "Fira Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #717171;
    line-height: 1.7;
    max-width: 580px;
    margin: 12px auto 0;
}

/* ─── Checkout complete: extra top spacing ─── */
.confirmation-section {
    padding-top: 160px !important;
}

@media (max-width: 991px) {
    .breadcumb-section--compact .breadcumb-container-wrapper {
        padding: 120px 0 36px !important;
    }
    .breadcumb-section--compact .page-heading h1 {
        font-size: clamp(1.4rem, 5vw, 1.75rem);
    }
    .confirmation-section {
        padding-top: 120px !important;
    }
}

/* ─── Header Cart Button ─── */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #282C32;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease-out;
}
.header-cart:hover,
.header-cart:focus,
.header-cart:active { color: #7444FD !important; }
.header-cart__badge {
    position: absolute;
    top: 2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #7444FD;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

/* ─── Cart Drawer (slide-in panel) ─── */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: oklch(0.15 0.02 260 / 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s;
}
.cart-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}
.cart-drawer.is-open {
    transform: translateX(0);
}
.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #E6E6E6;
    flex-shrink: 0;
}
.cart-drawer__title {
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #282C32;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.cart-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: #FAF8FF;
    border-radius: 10px;
    color: #282C32;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.cart-drawer__close:hover {
    background: #F0EAFF;
    color: #7444FD;
}
.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    text-align: center;
    padding: 40px 20px;
}
.cart-drawer__empty-icon {
    width: 64px;
    height: 64px;
    background: #FAF8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0A4D4;
}
.cart-drawer__empty-title {
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #282C32;
    margin: 0;
}
.cart-drawer__empty-desc {
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}
.cart-drawer__empty-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #7444FD;
    text-decoration: none;
    margin-top: 4px;
    transition: opacity 0.15s;
}
.cart-drawer__empty-link:hover { opacity: 0.8; color: #7444FD !important; }
.cart-drawer__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.cart-drawer__item + .cart-drawer__item {
    border-top: 1px solid #F0F0F0;
}
.cart-drawer__item-info {
    flex: 1;
    min-width: 0;
}
.cart-drawer__item-name {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #282C32;
    display: block;
    margin-bottom: 3px;
}
.cart-drawer__item-price {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    color: #717171;
}
.cart-drawer__item-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 16px;
}
.cart-drawer__qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    overflow: hidden;
}
.cart-drawer__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: #fff;
    color: #717171;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s, color 0.15s;
}
.cart-drawer__qty-btn:hover { background: #FAF8FF; color: #7444FD; }
.cart-drawer__qty-value {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #282C32;
    border-left: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
    background: #FAFAFA;
}
.cart-drawer__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    color: #C4C4C4;
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
.cart-drawer__remove:hover { color: #DC2626; background: oklch(0.97 0.01 25); }
.cart-drawer__footer {
    border-top: 1px solid #E6E6E6;
    padding: 20px 24px;
    flex-shrink: 0;
}
.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.cart-drawer__subtotal-label {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    color: #717171;
}
.cart-drawer__subtotal-value {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #282C32;
}
.cart-drawer__total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.cart-drawer__total-label {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #282C32;
}
.cart-drawer__total-value {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #282C32;
}
.cart-drawer__note {
    font-family: "Fira Sans", sans-serif;
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-bottom: 12px;
}
.cart-drawer__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #7444FD;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.cart-drawer__checkout-btn:hover { background: #5e2fea; color: #fff !important; transform: translateY(-1px); }


/* ═══════════════════════════════════════════════════════════════
   LAYOUT — Header, Offcanvas, Footer
   ═══════════════════════════════════════════════════════════════ */

.list-area li a {
    line-height: 30px !important;
    font-size: 13px !important;
}

.footer-section .single-footer-widget .list-area li {
    line-height: 24px !important;
}

.offcanvas__contact h4 {
    color: black !important;
}

.offcanvas__contact-text {
    color: black !important;
}

.offcanvas__contact-icon i {
    color: black !important;
}

.offcanvas__contact-text span {
    color: black !important;
    text-decoration: none !important;
}

.offcanvas__contact-text span:hover {
    color: #7c3aed !important;
}

.offcanvas__contact-text a {
    color: black !important;
    text-decoration: none !important;
}

.offcanvas__contact-text a:hover {
    color: #7c3aed !important;
}

.offcanvas__contact-icon {
    margin-right: 10px;
    color: #7c3aed !important;
}

.offcanvas__contact ul li {
    margin-bottom: 15px;
}

.offcanvas__contact ul li:last-child {
    margin-bottom: 0;
}

.menu-nav {
    color: black !important;
    line-height: 50px;
    text-align: left;
    align-items: left;
}

.offcanvas__logo a img {
    width: auto
}

.offcanvas__wrapper {
    position: relative;
    height: 133vh;
    background-color: #FFF !important;
}

#hamburger-btn {
    z-index: 9999;
    position: relative;
}

.offcanvas__info {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transition: right 0.3s ease;
    padding: 30px;
    overflow-y: auto;
}

.offcanvas__info.info-open {
    right: 0;
}

.offcanvas__info.active {
    right: 0;
}

.offcanvas__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
    display: none;
}

.offcanvas__overlay.active {
    display: block;
}

@media (min-width: 1024px) {
    .imagelogo {
        width: 200px !important;
        margin-left: 40px !important;
    }

    .header-main {
        padding: 30px 10px 0 0;
    }
}

.header-1.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    margin-top: 30px;
    transition: margin-top 0.3s ease;
    align-items: center !important;
}

.header-1.fixed-top.scrolled {
    margin-top: -30px !important;
    background-color: #fff !important;
    height: 120px !important;
    padding: 10px !important;
    align-items: center !important;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

.main-menu .menu-list {
    display: flex;
    gap: 30px;
}

.main-menu .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
}

.theme-btn.button {
    background-color: #7c3aed;
    color: #fff;
    padding: 10px 25px;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.3s;
}

.theme-btn.button:hover {
    background-color: #5b21b6;
}

.hamburger {
    width: 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    background: #000;
    width: 100%;
    border-radius: 3px;
}

@media (max-width: 1199px) {
    .header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
        font-size: 16px !important;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1000;
        display: none;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu .menu-list {
        flex-direction: column;
        gap: 15px;
    }

    .main-menu .theme-btn.button {
        width: 100%;
    }

    .theme-btn.button {
        display: block;
        width: 100%;
        padding: 12px !important;
        text-align: center !important;
        background-color: #7b2ff7;
        color: white !important;
        border: none;
        border-radius: 50px;
        font-weight: bold;
        margin-top: 1rem;
        font-size: 16px !important;
    }
}

@media (max-width: 991.98px) {
    .footer-widgets-wrapper {
        padding: 40px 0 20px !important;
    }

    .footer-bottom.style1 .footer-wrapper {
        padding: 20px 0 24px;
        border-top: 1px solid #E3E3E3;
        margin-top: 0 !important;
    }

    .imagelogo {
        width: auto !important;
        height: 40px !important;
    }

    .navbar {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        background-color: #FFF;
        height: 100px !important;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        background-color: #FFF;
    }

    .collapse.navbar-collapse {
        width: 100%;
    }

    #header-sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        border-radius: 0 !important;
        z-index: 999;
        background-color: #fff;
    }

    .header-section-1 {
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .header-1 .container {
        padding: 0 16px !important;
        margin: 0 auto !important;
    }

    .buttonmobile {
        margin-bottom: 20px !important;
    }

    .nav-item.buttonmobile {
        margin-left: 0px !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER STYLES
   ═══════════════════════════════════════════════════════════════ */

.widget-head .widget-title {
    text-align: left !important;
}

.contact-box {
    border-radius: 20px !important;
    background: #F9F9F9 !important;
    padding: 20px 15px 20px 15px !important;
}

.footer-bottom.style1 {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 80%;
    width: 100%;
    background: transparent !important;
}

.footer-content p a,
.footer-content a {
    color: inherit !important;
    text-decoration: none !important;
}

.list-area li {
    text-align: left !important;
    line-height: 10px !important;
}

.footerpages:hover {
    color: var(--theme) !important;
}

.footer-bottom .copyright,
.footer-bottom .copyright a {
    color: #000 !important;
}

@media (min-width: 992px) {
    .footer-content p {
        font-size: 12px !important;
    }

    .footer-widgets-wrapper.style1 .single-footer-widget .widget-head .widget-title {
        font-family: "Nunito", sans-serif;
        color: #242331;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 128.182%;
        text-transform: capitalize;
    }

    .text7 {
        text-align: right !important;
        font-size: 13px !important;
    }

    .testea {
        text-align: right !important;
    }

    .info {
        display: inline-flex !important;
    }
}

@media (max-width: 991.98px) {
    .info {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        justify-content: center !important;
        margin-top: 16px;
    }

    .swiper-wrapper {
        margin-bottom: 100px !important;
    }

    .swiper-pagination {
        margin-top: 20px !important;
    }
}

@media (max-width: 767.98px) {
    .book {
        width: 100px !important;
        margin-bottom: 6px !important;
        opacity: 0.85;
    }

    .imagelogo {
        width: auto !important;
        height: 40px !important;
    }

    .second-container {
        margin-bottom: 0 !important;
    }

    .footer-widgets-wrapper .col-xl-2.col-lg-4 {
        display: none !important;
    }

    .footer-bottom .copyright {
        display: block !important;
        color: #000 !important;
        font-size: 12px;
    }

    .footer-livro-item {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 20px !important;
        text-align: center;
    }

    .social-links li {
        display: inline-flex !important;
        margin-bottom: 0 !important;
    }

    .social-links a {
        display: inline-block;
        font-size: 13px !important;
        color: var(--text) !important;
        white-space: nowrap;
    }

    .footer-bottom .footer-wrapper {
        padding: 20px 0 !important;
        justify-content: center !important;
    }

    .footer-widgets-wrapper .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-widgets-wrapper.style1 .single-footer-widget .contact-box {
        padding: 25px;
        margin-bottom: 24px !important;
    }

    .single-footer-widget {
        text-align: center;
    }

    .footer-bottom .footer-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px;
    }

    .footer-widget img {
        margin: 0 auto;
        display: block;
    }

    .footer-bottom.style1 {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        margin-top: 24px !important;
        margin-bottom: 0 !important;
    }
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   OFFCANVAS: menu full-screen mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .offcanvas__info {
        width: 100vw !important;
        padding: 0 !important;
    }
    .offcanvas__wrapper {
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        background: #fff !important;
    }
    .offcanvas__content {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        padding: 28px 28px 32px !important;
    }

    .offcanvas__top {
        margin-bottom: 0 !important;
        padding-bottom: 24px !important;
        border-bottom: 1px solid rgba(116, 68, 253, 0.10) !important;
    }
    #offcanvas-close-btn {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 50% !important;
        background: #6635ef !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        padding: 0 !important;
    }
    .closebtn {
        font-size: 24px !important;
        line-height: 1 !important;
        color: #ffffff !important;
        font-style: normal !important;
    }

    .mean-nav {
        flex: 1;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 0 !important;
        overflow-y: auto;
    }
    .menu-nav {
        width: 100%;
        line-height: 1 !important;
    }
    .menu-nav > li {
        padding: 18px 0 !important;
        border-bottom: 1px solid rgba(116, 68, 253, 0.08) !important;
        margin: 0 !important;
    }
    .menu-nav > li:last-child {
        border-bottom: none !important;
    }
    .menu-nav > li a {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #282C32 !important;
        letter-spacing: -0.3px !important;
        display: block !important;
        line-height: 1.2 !important;
        text-decoration: none !important;
    }
    .menu-nav > li a:hover {
        color: #6635ef !important;
    }
    .menu-nav > li.nav-item.mt-3 {
        border-bottom: none !important;
        padding-top: 24px !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
    }
    .menu-nav > li.nav-item.mt-3 .theme-btn.button {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        background: #7444fd !important;
        color: #fff !important;
        border-radius: 999px !important;
        padding: 14px 24px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-top: 0 !important;
    }

    .offcanvas__contact {
        border-top: 1px solid rgba(116, 68, 253, 0.10) !important;
        padding-top: 20px !important;
        margin-top: 16px !important;
    }
    .offcanvas__contact h4 {
        font-size: 11px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1.2px !important;
        color: #717171 !important;
        margin-bottom: 12px !important;
    }
    .offcanvas__contact ul {
        margin-bottom: 8px !important;
    }
    .offcanvas__contact ul li {
        margin-bottom: 8px !important;
    }
    .offcanvas__contact-text a {
        font-size: 14px !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE DESIGN SYSTEM — v2
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .intro-section {
        min-height: auto !important;
        height: auto !important;
    }

    .container {
        padding-left:  16px !important;
        padding-right: 16px !important;
    }
    .container .container {
        width:         100% !important;
        max-width:     100% !important;
        padding-left:  0 !important;
        padding-right: 0 !important;
    }

    .row {
        margin-left:  0 !important;
        margin-right: 0 !important;
    }
    [class*="col-"] {
        padding-left:  0 !important;
        padding-right: 0 !important;
    }

    .testimonial-section {
        overflow-x: hidden !important;
    }

    html, body {
        overflow-x: hidden !important;
    }

    .work-process-box.style1,
    .faq-content .accordion-item,
    .contact-info-box-2.style1 .contact-content-2,
    .contact-form.style1 {
        background:    #faf8ff !important;
        border-radius: 16px !important;
        border:        1px solid rgba(116,68,253,0.12) !important;
        box-shadow:    0 2px 12px rgba(116,68,253,0.08) !important;
    }

    .work-process-box.style1,
    .contact-info-box-2.style1 .contact-content-2,
    .contact-form.style1 {
        padding: 24px 20px !important;
    }
    .faq-content .accordion-item .accordion-header .accordion-button {
        padding:       18px 20px !important;
        border-radius: 16px !important;
        border:        none !important;
        box-shadow:    none !important;
    }
    .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed) {
        border-bottom-left-radius:  0 !important;
        border-bottom-right-radius: 0 !important;
    }
    .faq-content .accordion-body {
        padding: 16px 20px !important;
    }

    .work-process-box.style1,
    .faq-content .accordion-item {
        margin-bottom: 12px !important;
        margin-top:    0    !important;
    }

    .contact-info-box-2.style1 {
        background:    transparent !important;
        border:        none !important;
        box-shadow:    none !important;
        border-radius: 0 !important;
        padding:       0 !important;
        overflow:      visible !important;
        margin-top:    0 !important;
    }
    .contact-info-box-2.style1 .contact-content-2 {
        text-align: left !important;
    }

    .cta-wrapper.style1 {
        border-radius: 16px !important;
        box-shadow:    0 4px 20px rgba(116,68,253,0.15) !important;
    }
    .cta-wrapper.style1 > .container {
        padding-left:  0 !important;
        padding-right: 0 !important;
    }

    #contact .contact-form-wrapper.style1 > .row {
        --bs-gutter-y: 24px !important;
    }

    .pricing-card.style1 {
        background:    #faf8ff !important;
        border-radius: 16px !important;
        border:        1px solid rgba(116,68,253,0.12) !important;
        box-shadow:    0 2px 12px rgba(116,68,253,0.08) !important;
        padding:       24px 20px !important;
        width:         100% !important;
        max-width:     100% !important;
        margin-bottom: 12px !important;
        margin-left:   0 !important;
        margin-right:  0 !important;
    }

    .feature-provide-box-items {
        background:    #faf8ff !important;
        border-radius: 16px !important;
        border:        1px solid rgba(116,68,253,0.12) !important;
        box-shadow:    0 2px 12px rgba(116,68,253,0.08) !important;
        padding:       24px 20px !important;
        margin-bottom: 12px !important;
        overflow:      hidden !important;
    }

    .how-work-number-items {
        background:    #faf8ff !important;
        border-radius: 16px !important;
        border:        1px solid rgba(116,68,253,0.12) !important;
        box-shadow:    0 2px 12px rgba(116,68,253,0.08) !important;
        padding:       24px 20px !important;
        margin-bottom: 12px !important;
        width:         100% !important;
    }
    body .how-work-wrapper .how-work-content .how-work-number-items .number {
        font-size:   16px !important;
        width:       44px !important;
        height:      44px !important;
        line-height: 44px !important;
    }
    .how-work-number-items .content h3 {
        text-align:    left !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom:  8px !important;
    }

    body .section-title .subtitle {
        font-size: 16px !important;
    }
    body .section-title h2.title {
        font-size: 30px !important;
    }

    .how-too-work .section-title {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    .how-too-work .how-work-wrapper {
        padding-top:  0 !important;
        border-top:   none !important;
    }
    .how-too-work .row.g-4 {
        --bs-gutter-y: 8px !important;
    }

    .intro-thumb {
        padding-top: 20px !important;
        margin-top:  16px !important;
    }
    .intro-content {
        padding-top: 24px !important;
    }
    .btn-wrapper.style1 {
        margin-bottom: 4px !important;
    }
    .intro-content .btn-wrapper {
        display:        flex !important;
        flex-direction: column !important;
        align-items:    center !important;
        gap:            12px !important;
    }
    .intro-content .btn-wrapper .theme-btn {
        width:     100% !important;
        max-width: 320px !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

/* Feature cards — hover (PC) e toque/focus (mobile) */
body .feature-provide-box-items:hover,
body .feature-provide-box-items:focus {
    background:   #7444FD !important;
    border-color: transparent !important;
    box-shadow:   none !important;
    outline:      none !important;
}
body .feature-provide-box-items:hover .icon,
body .feature-provide-box-items:focus .icon {
    filter: grayscale(100%) brightness(300%) !important;
}
body .feature-provide-box-items:hover .content h3,
body .feature-provide-box-items:hover .content p,
body .feature-provide-box-items:focus .content h3,
body .feature-provide-box-items:focus .content p {
    color: #fff !important;
}
body .feature-provide-box-items:hover .item-shape,
body .feature-provide-box-items:focus .item-shape {
    opacity:    1 !important;
    visibility: visible !important;
    bottom:     0 !important;
}
body .feature-provide-box-items:hover .item-shape-2,
body .feature-provide-box-items:focus .item-shape-2 {
    bottom:     -150px !important;
    opacity:    0 !important;
    visibility: hidden !important;
}


/* ═══════════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════════ */

.pricing-section {
    padding: 80px 0 60px;
}

.pricing-section .section-title {
    margin-bottom: 56px;
}

.pricing-section .subtitle {
    color: #7444FD;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pricing-section .title {
    color: #282C32;
    font-family: "Urbanist", sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.pricing-section .section-desc {
    color: #717171;
    font-family: "Fira Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pricing-grid {
        gap: 20px;
    }
}

.pricing-card {
    position: relative;
    background: #FAF8FF;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px oklch(0.3 0.02 280 / 0.08);
}

.pricing-card--popular {
    border-color: #7444FD;
    box-shadow: 0 8px 32px oklch(0.5 0.15 280 / 0.12);
    padding-top: 48px;
}

.pricing-card--popular:hover {
    box-shadow: 0 16px 48px oklch(0.5 0.15 280 / 0.18);
}

.pricing-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #7444FD;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card__name {
    color: #7444FD;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.pricing-card__currency {
    color: #282C32;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
}

.pricing-card__amount {
    color: #282C32;
    font-family: "Urbanist", sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-card__period {
    color: #7444FD;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-top: 6px;
}

.pricing-card__billing {
    display: block;
    color: #717171;
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
    text-align: center;
}

.pricing-card__subtitle {
    color: #717171;
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    margin-top: 8px;
    text-align: center;
}

.pricing-card__divider {
    height: 1px;
    background: #E6E6E6;
    margin-bottom: 24px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #282C32;
    line-height: 1.3;
}

.pricing-card__feature--disabled {
    color: #ABABAB;
}

.pricing-card__feature--disabled span {
    text-decoration: line-through;
    text-decoration-color: #D4D4D4;
}

.pricing-card__check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.pricing-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border: 2px solid #7444FD;
    border-radius: 10px;
    background: transparent;
    color: #7444FD;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease-out, color 0.2s ease-out, transform 0.15s ease-out;
    margin-top: auto;
}

.pricing-card__cta:hover {
    background: #7444FD;
    color: #fff;
    transform: translateY(-1px);
}

.pricing-card__cta:active {
    transform: translateY(0);
}

.pricing-card__cta--primary {
    background: #7444FD;
    color: #fff;
}

.pricing-card__cta--primary:hover {
    background: #5e2fea;
}

.pricing-card__cta[disabled] {
    opacity: 0.7;
    pointer-events: none;
}

.pricing-card__cta--added {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

.pricing-note {
    text-align: center;
    color: #717171;
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .pricing-section {
        padding: 48px 0 40px;
    }

    .pricing-section .section-title {
        margin-bottom: 36px;
    }

    .pricing-card {
        padding: 28px 24px 24px;
    }

    .pricing-card__amount {
        font-size: 40px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

.checkout-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    max-width: 440px;
    margin: 0 auto;
}
.checkout-empty__icon {
    width: 88px;
    height: 88px;
    background: #FAF8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0A4D4;
    margin-bottom: 24px;
}
.checkout-empty__title {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #282C32;
    margin-bottom: 12px;
}
.checkout-empty__desc {
    font-family: "Fira Sans", sans-serif;
    font-size: 15px;
    color: #717171;
    line-height: 1.7;
    margin-bottom: 28px;
}
.checkout-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    background: #7444FD;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.checkout-empty__btn:hover { background: #5e2fea; color: #fff !important; transform: translateY(-1px); }

.checkout-section {
    padding: 48px 0 80px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .checkout-summary-col {
        order: -1;
    }
}

.checkout-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 28px;
}

.checkout-alert--error {
    background: oklch(0.97 0.01 25);
    border: 1px solid oklch(0.85 0.05 25);
}

.checkout-alert--error p {
    color: #DC2626;
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.checkout-alert svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.checkout-card {
    background: #FAF8FF;
    border: 1px solid #E6E6E6;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 20px;
}

.checkout-card__title {
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #282C32;
    margin-bottom: 6px;
}

.checkout-card__desc {
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #717171;
    margin-bottom: 28px;
    line-height: 1.6;
}

.checkout-card--info {
    background: oklch(0.97 0.01 280);
    border-color: oklch(0.9 0.03 280);
    padding: 24px;
}

.checkout-info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.checkout-info-row svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.checkout-info-row strong {
    display: block;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #282C32;
    margin-bottom: 4px;
}

.checkout-info-row p {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #717171;
    margin: 0;
    line-height: 1.6;
}

.checkout-field {
    margin-bottom: 22px;
}

.checkout-field__label {
    display: block;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #282C32;
    margin-bottom: 6px;
}

.checkout-field__required {
    color: #DC2626;
}

.checkout-field__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    font-family: "Fira Sans", sans-serif;
    font-size: 15px;
    color: #282C32;
    background: #fff;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    outline: none;
}

.checkout-field__input::placeholder {
    color: #B0B0B0;
}

.checkout-field__input:focus {
    border-color: #7444FD;
    box-shadow: 0 0 0 3px oklch(0.55 0.2 280 / 0.1);
}

.checkout-field__hint {
    display: block;
    font-family: "Fira Sans", sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.checkout-upload {
    position: relative;
    border: 2px dashed #D4D4D4;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease-out, background 0.2s ease-out;
}

.checkout-upload:hover,
.checkout-upload.dragover {
    border-color: #7444FD;
    background: oklch(0.97 0.01 280);
}

.checkout-upload__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.checkout-upload__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.checkout-upload__icon {
    margin-bottom: 4px;
}

.checkout-upload__text {
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #282C32;
    margin: 0;
}

.checkout-upload__hint {
    font-family: "Fira Sans", sans-serif;
    font-size: 12px;
    color: #999;
}

.checkout-upload__preview {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.checkout-upload__preview img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #E6E6E6;
    padding: 4px;
}

.checkout-upload__filename {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #282C32;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-upload__remove {
    position: relative;
    pointer-events: auto;
    top: auto;
    right: auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #282C32;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease-out;
}

.checkout-upload__remove:hover {
    background: #DC2626;
}

.checkout-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    background: #7444FD;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease-out, transform 0.15s ease-out;
}

.checkout-submit:hover {
    background: #5e2fea;
    transform: translateY(-1px);
}

.checkout-submit:active {
    transform: translateY(0);
}

.checkout-submit[disabled] {
    opacity: 0.7;
    pointer-events: none;
}

.checkout-summary {
    background: #FAF8FF;
    border: 1px solid #E6E6E6;
    border-radius: 14px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.checkout-summary__title {
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #282C32;
    margin-bottom: 20px;
}

.checkout-summary__item {
    margin-bottom: 16px;
}

.checkout-summary__plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.checkout-summary__plan-name {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #282C32;
}

.checkout-summary__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: #B0B0B0;
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    padding: 0;
}

.checkout-summary__remove:hover {
    color: #DC2626;
    background: oklch(0.97 0.01 25);
}

.checkout-summary__plan-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-summary__qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    overflow: hidden;
}

.checkout-summary__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    background: #fff;
    color: #717171;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    padding: 0;
}

.checkout-summary__qty-btn:hover {
    background: #FAF8FF;
    color: #7444FD;
}

.checkout-summary__qty-value {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 30px;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #282C32;
    background: #FAFAFA;
    border-left: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
}

.checkout-summary__plan-price {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    color: #717171;
}

.checkout-summary__divider {
    height: 1px;
    background: #E6E6E6;
    margin: 16px 0;
}

.checkout-summary__line {
    display: flex;
    justify-content: space-between;
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    color: #717171;
    margin-bottom: 8px;
}

.checkout-summary__total {
    display: flex;
    justify-content: space-between;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #282C32;
}

.checkout-summary__note {
    font-family: "Fira Sans", sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 767px) {
    .checkout-section {
        padding: 32px 0 60px;
    }

    .checkout-card {
        padding: 24px 20px;
    }

    .checkout-summary {
        position: static;
        padding: 24px 20px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   CHECKOUT COMPLETE / CONFIRMATION PAGE
   ═══════════════════════════════════════════════════════════════ */

.confirmation-section {
    padding: 48px 0 80px;
}

.confirmation-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-icon {
    margin-bottom: 24px;
}

.confirmation-title {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #282C32;
    margin-bottom: 12px;
}

.confirmation-desc {
    font-family: "Fira Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #717171;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-card {
    background: #FAF8FF;
    border: 1px solid #E6E6E6;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    text-align: left;
}

.confirmation-card--bank {
    border-color: oklch(0.85 0.05 280);
    background: oklch(0.97 0.01 280);
}

.confirmation-card--subtle {
    background: #FAFAFA;
}

.confirmation-card__header {
    padding: 20px 24px;
    border-bottom: 1px solid #E6E6E6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confirmation-card__header h3 {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #282C32;
    margin: 0;
}

.confirmation-card__order-number {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #7444FD;
}

.confirmation-card__body {
    padding: 20px 24px;
}

.confirmation-card__divider {
    height: 1px;
    background: #E6E6E6;
    margin: 14px 0;
}

.confirmation-product {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.confirmation-product__name {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #282C32;
}

.confirmation-product__price {
    font-family: "Fira Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #282C32;
}

.confirmation-line {
    display: flex;
    justify-content: space-between;
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    color: #717171;
    margin-bottom: 6px;
}

.confirmation-total {
    display: flex;
    justify-content: space-between;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #282C32;
}

.bank-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.bank-detail + .bank-detail {
    border-top: 1px solid oklch(0.9 0.02 280);
}

.bank-detail__label {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #717171;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    min-width: 90px;
}

.bank-detail__value {
    font-family: "Fira Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #282C32;
    flex: 1;
    word-break: break-all;
}

.bank-detail__value--highlight {
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    color: #7444FD;
    font-size: 17px;
}

.bank-detail__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    background: #fff;
    color: #717171;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.bank-detail__copy:hover {
    color: #7444FD;
    border-color: #7444FD;
}

.bank-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 12px 14px;
    background: oklch(0.95 0.02 280);
    border-radius: 8px;
}

.bank-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.bank-notice p {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-info__logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid #E6E6E6;
    background: #fff;
    padding: 4px;
}

.company-info strong {
    display: block;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #282C32;
}

.company-info span {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px;
    color: #717171;
}

.confirmation-actions {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.confirmation-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease-out, transform 0.15s ease-out;
}

.confirmation-btn--primary {
    background: #7444FD;
    color: #fff;
}

.confirmation-btn--primary:hover {
    background: #5e2fea;
    color: #fff !important;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .confirmation-section {
        padding: 32px 0 60px;
    }

    .confirmation-card__body {
        padding: 16px 18px;
    }

    .confirmation-card__header {
        padding: 16px 18px;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .bank-detail {
        flex-wrap: wrap;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SECTORS / COMPANIES SLIDER
   ═══════════════════════════════════════════════════════════════ */

.sectors-section {
    padding: 80px 0 60px;
}

.sectors-slider-wrap {
    margin-top: 48px;
    overflow: hidden;
}

.sectorsSwiper {
    padding-bottom: 48px;
    overflow: visible;
}

.sectorsSwiper .swiper-slide {
    width: 340px;
    height: auto;
}

/* ─── Card ─── */
.sector-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    background: #FAF8FF;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px oklch(0.45 0.12 280 / 0.12);
    color: inherit;
    text-decoration: none;
}

/* ─── Image ─── */
.sector-card__img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    aspect-ratio: 16 / 10;
}

.sector-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-card:hover .sector-card__img-wrap img {
    transform: scale(1.05);
}

.sector-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, oklch(0.15 0.02 280 / 0.08) 100%);
    pointer-events: none;
}

/* ─── Body ─── */
.sector-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 24px 24px;
}

.sector-card__title {
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #282C32;
    line-height: 1.35;
    margin-bottom: 8px;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sector-card__desc {
    font-family: "Fira Sans", sans-serif;
    font-size: 13.5px !important;
    font-weight: 400;
    color: #717171 !important;
    line-height: 1.55 !important;
    margin: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sector-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #7444FD;
    transition: gap 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-card:hover .sector-card__link {
    gap: 10px;
}

.sector-card__link svg {
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-card:hover .sector-card__link svg {
    transform: translateX(2px);
}

/* ─── Pagination ─── */
.sectors-slider__pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.sectors-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D4D4D4;
    border-radius: 4px;
    opacity: 1;
    transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.sectors-slider__pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: #7444FD;
}

/* Windowed pagination: JS controls visibility via data-dot-distance */
.sectors-slider__pagination .swiper-pagination-bullet {
    display: none;
}
.sectors-slider__pagination .swiper-pagination-bullet[data-dot-visible] {
    display: block;
}
.sectors-slider__pagination .swiper-pagination-bullet[data-dot-distance="edge"] {
    transform: scale(0.6);
    opacity: 0.4;
}
.sectors-slider__pagination .swiper-pagination-bullet[data-dot-distance="near"] {
    transform: scale(0.85);
    opacity: 0.7;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .sectors-section {
        padding: 48px 0 40px;
    }

    .sectors-slider-wrap {
        margin-top: 32px;
    }

    .sectorsSwiper .swiper-slide {
        width: 280px;
    }
}

@media (max-width: 767px) {
    .sectorsSwiper .swiper-slide {
        width: 260px;
    }

    .sector-card {
        min-height: 340px;
    }

    .sector-card__body {
        padding: 16px 18px 20px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES / COMPANIES GRID PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Shorter banner variant — only reduce bottom padding */
.breadcumb-section--short .breadcumb-container-wrapper {
    padding-bottom: 110px !important;
}

.industries-section {
    padding: 48px 0 80px;
    background: oklch(0.97 0.005 280);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ─── Industry Card ─── */
.industry-card {
    display: flex;
    flex-direction: column;
    height: 440px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 4px oklch(0.3 0.03 280 / 0.06);
    border: 1px solid oklch(0.92 0.01 280);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.35s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px oklch(0.4 0.08 280 / 0.14);
    border-color: oklch(0.7 0.12 280);
    color: inherit;
    text-decoration: none;
}

/* ─── Photo (background-image, match original proportions) ─── */
.industry-card__photo {
    height: 230px;
    min-height: 230px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}


/* ─── Content ─── */
.industry-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 22px;
    background: linear-gradient(180deg, #fff 0%, #FAF8FF 50%, oklch(0.95 0.03 280) 100%);
}

.industry-card__title {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #282C32;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.industry-card__desc {
    font-family: "Fira Sans", sans-serif;
    font-size: 13px !important;
    font-weight: 400;
    color: #717171 !important;
    line-height: 1.55 !important;
    margin: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.industry-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #7444FD;
    padding: 0;
    border: none;
    background: none;
    position: relative;
}

.industry-card__cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7444FD;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card:hover .industry-card__cta::after {
    width: 100%;
}

.industry-card__cta svg {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card:hover .industry-card__cta svg {
    transform: translateX(3px);
}

/* ─── Responsive ─── */
@media (max-width: 1199px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .industries-section {
        padding: 36px 0 60px;
    }
}

@media (max-width: 575px) {
    .industries-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .industry-card__photo {
        height: 180px;
    }
}
