* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif !important;
    line-height: 1.6;
    color: #333;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 38px !important;
    height: 78px;
    position: sticky !important;
    top: 0;
    width: 100%;
    backdrop-filter: blur(18px) saturate(150%);
    z-index: 100;
    box-shadow: 0 4px 24px rgba(80, 17, 5, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-list {
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-list li {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-list a {
    color: black;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    padding: 4px 8px;
    border-radius: 5px;
    transition: background 0.19s, color 0.18s;
}

.nav-list a.active {
    color: #bf4e00;
    font-weight: 700;
}



.download-btn {
    display: none;
}

.mobile-menu-download {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.mobile-download-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.mobile-download-btn {

    color: #fff;
    font-weight: 500;
    border-radius: 12px;
    padding: 9px 20px;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}


.mobile-app-icons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    z-index: 10;
}

.app-icon-wrapper {
    position: relative;
    display: inline-flex;
}

.app-icon-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.app-icon-trigger img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.app-icon-trigger:hover img {
    transform: scale(1.1);
}

.app-icon-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1100;
    overflow: hidden;
}

.app-icon-dropdown.show {
    display: block;
}

@media (min-width: 1092px) {
    .app-icon-wrapper:hover .app-icon-dropdown {
        display: block;
    }
}

.app-icon-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.app-icon-dropdown img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (min-width: 1092px) {
    .navbar {
        position: relative;
    }

    .nav-list {
        justify-content: center;
    }

    .mobile-menu-download {
        position: absolute;
        right: 24px;
    }
}

@media (min-width: 1092px) {
    .mobile-download-wrapper:hover .mobile-download-dropdown {
        display: none;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: 18px;
    z-index: 120;
}

.hamburger span {
    width: 29px;
    height: 3px;
    background: black;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.34s;
}

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

@media (max-width: 1300px) {

    .navbar {
        padding: 0 14px;
    }

    .nav-list,
    .download-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-list.mobile-open {
        display: flex;
        position: fixed;
        top: 78px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 78px);
        background: #0f0502;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 0 50px 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: fadeInMenu 0.33s ease;
    }

    .nav-list.mobile-open li {
        width: 100%;
        padding: 7px 0;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-list.mobile-open li:not(:last-child)::after {
        content: "";
        display: block;
        width: 60%;
        height: 1.5px;
        margin: 6px auto 0;
        background: linear-gradient(90deg, #ffbf73, #ff8300);
        opacity: 0.32;
        border-radius: 4px;
    }

    .nav-list.mobile-open a {
        color: #fff;
        display: block;
        text-align: center;
        width: 100%;
    }

    .nav-list.mobile-open .app-icon-dropdown a {
        color: #333 !important;
        text-align: left;
    }

    .nav-list.mobile-open li::after {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-list.mobile-open li.mobile-menu-download {
        display: block !important;
        width: 100%;
        margin-top: 12px;
        align-self: stretch;
        position: relative;
        font-size: initial !important;
        font-weight: initial !important;
        color: initial !important;
    }

    .nav-list.mobile-open li.mobile-menu-download::after {
        display: none !important;
    }

    .mobile-download-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        width: 90% !important;
        margin: 0 auto 10px !important;
        position: relative;
    }

    .mobile-download-btn {
        color: #fff;
        font-weight: 500;
        border-radius: 12px;
        padding: 12px 20px;
        font-size: 18px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        cursor: pointer;
        border: none;
        transition: background 0.2s;
        width: 100%;
    }



    .mobile-app-icons {
        display: flex !important;
        gap: 10px !important;
        flex-shrink: 0;
        z-index: 10;
        visibility: visible !important;
        opacity: 1 !important;
        justify-content: center;
    }

    .app-icon-trigger img {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
        background: #fff;
        padding: 4px;
    }

    .app-icon-dropdown {
        right: 0;
        transform: translateX(50%);
        min-width: 220px;
        top: -287%;
    }



    .mobile-app-icons img:hover {
        transform: scale(1.1);
    }

    .mobile-download-dropdown {
        display: none;
    }

    .mobile-download-dropdown.show {
        display: none;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    @keyframes fadeInMenu {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

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

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

.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 70px !important;
    background-attachment: scroll;
}

@media (min-width: 769px) {
    .hero {
        min-height: 100vh;
        padding-bottom: 0;
        padding-top: 70px;

    }
}

.hero-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
}

.hero-left {
    color: white;
    max-width: 600px;
}

.hero-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 51px;
    margin-bottom: 20px;
    text-align: left;
}

.hero-title .line1,
.hero-title {
    color: white;
    display: block;
}

.hero-title .highlight {
    color: #bf4e00;
    display: inline;
    white-space: normal;
}

.hero-description {
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    margin-bottom: 30px;
    color: white;
    opacity: 90%;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #bf4e00;
    color: white;
    border: 2px solid #bf4e00;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: transparent;
    color: #bf4e00;
    border-color: #bf4e00;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

.section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.section h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: #333;
}

.section p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        gap: 40px;
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
    }

    .download-btn {
        order: 3;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #8b4513;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }
}

@media (max-width: 600px) and (min-width: 480px) {
    .hero {
        background-image: url("images/hero-responsive-768.jpg") !important;
        background-size: cover !important;
        background-position: center center !important;
        min-height: 100svh;
        min-height: 100dvh;
        padding-top: 600px !important;
    }

    .hero-content {
        padding: 10px 20px 20px 20px;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero-description {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .hero-left {
        text-align: left;
        margin-top: 0;
    }

    .subheadline-sec {
        font-size: 19px !important;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 50px;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        background-image: url("images/hero-responsive-480.jpg") !important;
        background-size: cover !important;
        background-position: center bottom !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
        padding-top: 500px !important;
        background-color: #8b4513;

    }

    .hero-content {
        padding: 20px 15px 40px 15px;
        justify-content: center;
    }

    .hero-left {
        margin-top: 0;
    }

    .trust-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-content {
        padding: 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-description {
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 30px;
    }
}

.nav-menu a[href="#home"] {
    color: #ff8c42;
}

.nav-menu a[href="#home"]::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff8c42;
}

@media screen and (min-width: 1921px) {
    .hero-content {
        max-width: 1920px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 72px;
        line-height: 85px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-left {
        max-width: 900px !important;
    }
}

/* -------------------------------- vendor ----------------------------- */

.pixi-lp-vendor-main {
    margin: 0 auto;
    padding: 60px;
}

.pixi-box {
    background-color: #fff;
    border: 1px solid #f0e6e6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.sectiong-heading-second h2 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 600;
    text-align: left;
}

.pixi-lp-vendor-highlight {
    color: #bf4e00;
}

.pixi-lp-vendor-subheadline {
    font-weight: 400;
    font-size: 19px;
    color: #222222;
    opacity: 80%;
    margin-bottom: 40px;
    text-align: left;
}

.pixi-lp-vendor-section-title {
    font-size: 31px;
    font-weight: 700;
    color: #222222;
    margin: 39px 0px;
    text-align: center;
}

.pixi-lp-vendor-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 34px;
}

.pixi-lp-vendor-video {
    width: 100%;

    aspect-ratio: 16 / 9;
    border-radius: 22px;
    box-shadow: 0 0 16px 2px #ffe1d2;
    background: #000;
    border: none;
    display: block;
}

.pixi-lp-vendor-steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 18px 0 16px;
    flex-wrap: wrap;
}

.pixi-lp-vendor-step {
    text-align: center;
}

.pixi-lp-vendor-step-num {
    display: block;
    background: #ffe3cf;
    color: #bf4e00;
    font-weight: bold;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px auto;
    border-radius: 50%;
    font-size: 16px;
    line-height: 36px;
}

.pixi-step-heading h4 {
    font-size: 20px;
    line-height: 24px;
    color: #222222;
    margin-bottom: 0px !important;
    font-weight: 500;
}

.pixi-step-heading span {
    font-size: 14px;
    line-height: 24px;
    color: #222222;
    opacity: 80%;
    font-weight: 400;
}

.pixi-lp-vendor-app-buttons {
    display: flex;
    gap: 16px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 50px;
}

.pixi-lp-vendor-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.pixi-lp-vendor-app-btn img {
    width: 20px;
    height: 20px;
}

.pixi-lp-vendor-app-store,
.pixi-lp-vendor-google-play {
    background: #770f04;
}

.pixi-lp-vendor-app-btn:hover {
    opacity: 0.85;
}

.pixi-lp-vendor-app-btn:focus,
.pixi-lp-vendor-app-btn:focus-visible,
.pixi-lp-vendor-app-btn:active {
    outline: none;
    opacity: 1;
}

@media (hover: none) {
    .pixi-lp-vendor-app-btn:hover {
        opacity: 1;
    }
}

@media (max-width: 700px) {
    .pixi-lp-vendor-video-container {
        margin-bottom: 24px;
    }

    .pixi-lp-vendor-video {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .pixi-lp-vendor-steps {
        flex-direction: column;
        gap: 12px;
    }

    .pixi-lp-vendor-step {
        max-width: 99%;
        margin: 0 auto;
    }

    .pixi-lp-vendor-app-buttons {
        flex-direction: column;
        gap: 15px;
        justify-content: center !important;
        align-items: center !important;

    }

    .pixi-lp-vendor-app-store,
    .pixi-lp-vendor-google-play {
        width: 182px;
    }

    .pixi-lp-vendor-app-btn {
        padding: 14px 30px;
    }
}

/* ------------------- contact form -------------------------- */

.pixi-contact-form-container {
    min-height: 100vh;
    background: url("./images/contact-form.jpg") center/cover;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 20px;
    background-repeat: no-repeat;
    object-fit: cover;
}

.pixi-contact-form-wrapper {
    padding: 40px;
    width: 100%;
    max-width: 700px;
}

.pixi-contact-form-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    text-align: start;
    margin-bottom: 20px;
}

.pixi-contact-form-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: left;
}

.pixi-contact-form-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pixi-contact-form-row {
    display: flex;
    gap: 15px;
}

.pixi-contact-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pixi-contact-form-label {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
}

.pixi-contact-form-input,
.pixi-contact-form-textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.pixi-contact-form-input:focus,
.pixi-contact-form-textarea:focus {
    outline: none;
    border-color: #bf4e00;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.pixi-contact-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.pixi-contact-form-input.pixi-contact-form-error,
.pixi-contact-form-textarea.pixi-contact-form-error {
    border-color: #f44336;
    background-color: #ffeaea;
}

.pixi-contact-form-error-message {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.pixi-contact-form-error-message.pixi-contact-form-show {
    display: block;
}

.pixi-contact-form-button {
    background: #770f04;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pixi-contact-form-button:hover {
    background: linear-gradient(135deg, #a71c1c, #c62828);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 28, 28, 0.3);
}

.pixi-contact-form-button:active {
    transform: translateY(0);
}

.pixi-contact-form-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pixi-contact-form-success {
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
    font-weight: 500;
}

.pixi-contact-form-success.pixi-contact-form-show {
    display: block;
}

@media (max-width: 768px) {
    .pixi-contact-form-container {
        padding: 10px;
        min-height: 70vh;
    }

    .pixi-contact-form-subtitle {
        margin-bottom: 2rem;
    }

    .pixi-contact-form-wrapper {
        padding: 30px 25px;
    }

    .pixi-contact-form-title {
        font-size: 1.8rem;
    }

    .pixi-contact-form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .pixi-contact-form-wrapper {
        padding: 25px 20px;
    }

    .pixi-lp-vendor-section-title {
        font-size: 25px;
    }

    .pixi-contact-form-title {
        font-size: 1.6rem;
    }

    .pixi-contact-form-subtitle {
        font-size: 0.9rem;
    }
}

.pixi-contact-form-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: pixi-contact-form-spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes pixi-contact-form-spin {
    to {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 1441px) {
    .pixi-contact-form-container {
        padding-right: 100px !important;
    }
}

/* -----------------------Pros --------------------------------- */

.pros-lp-main {
    padding: 60px;
}

.pixi-pros-row {
    display: flex;
    padding: 40px 0px;
    gap: 32px;
    background: #fff;
    border-radius: var(--pixi-pros-border-radius);
    box-shadow: var(--pixi-pros-box-shadow);
    align-items: stretch;
    min-height: 220px;
}

.pixi-pros-card {
    background: #a43337;
    border-radius: 16px;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    width: 413px;
}

.pixi-pros-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.pixi-pros-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}

.pixi-pros-name-role {
    display: flex;
    flex-direction: column;
}

.pixi-pros-title {
    font-family: "Montserrat", sans-serif !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #ffffff;
    margin-right: 6px;
}

.pixi-pros-role {
    font-size: 16px;
    line-height: 24px;
    font-family: "Montserrat", sans-serif !important;
    color: #ffffff;
    font-weight: 400;
}

.pixi-pros-right p {
    font-weight: 400;
    font-family: "Montserrat", sans-serif !important;
    font-size: 18px;
    line-height: 28px;
    color: #4b5563;
}

.pixi-pros-quote {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pixi-pros-quote p {
    margin: 0;
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: "Montserrat", sans-serif !important;
}

.pixi-pros-quote img:last-child {
    align-self: flex-end;
    margin-top: -35px;
    margin-left: 10px;
}

@media (max-width: 991px) {
    .pixi-pros-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0px;
        min-height: unset;
        max-height: unset;
    }

    .pixi-contact-form-container {
        background-image: url(images/contact-form-991.jpg) !important;
    }

    .download-app-pixi {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4),
                rgba(0, 0, 0, 0.4)),
            url(images/download-app-991.jpg) !important;
    }

    .pixi-pros-left {
        order: 1;
        width: 100%;
        max-width: 100%;
        min-width: unset;
        min-height: unset;
        max-height: unset;
    }

    .pixi-pros-right {
        order: 2;
        width: 100%;
        max-width: 100%;
        min-width: unset;
        min-height: unset;
        max-height: unset;
    }

    .pixi-pros-card {
        width: 100%;
        max-width: 100%;
        min-height: unset;
        max-height: unset;
    }
}

@media (max-width: 480px) {
    .pros-lp-main {
        padding: 20px;
    }

    .pixi-pros-row {
        padding: 16px 0px;
        gap: 16px;
    }

    .pixi-pros-card {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .pixi-pros-title {
        font-size: 16px;
        line-height: 24px;
    }

    .pixi-pros-role {
        font-size: 14px;
        line-height: 20px;
    }

    .pixi-pros-quote p {
        font-size: 14px;
        line-height: 22px;
        text-align: justify;
    }

    .pixi-pros-right p {
        font-size: 16px;
        line-height: 24px;
        text-align: justify;
    }

    .pixi-pros-avatar {
        width: 48px;
        height: 48px;
    }

    .pixi-pros-card-header {
        gap: 12px;
    }

    .pixi-pros-left {
        order: 1;
    }

    .pixi-pros-right {
        order: 2;
    }
}

/* ---------------------- faqs ----------------------- */

.faqs {
    background: linear-gradient(to bottom,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 15%,
            rgba(255, 255, 255, 0) 70%,
            #ffffff 100%),
        linear-gradient(to right,
            rgba(255, 224, 224, 0) 0%,
            rgba(255, 224, 224, 0.4) 100%);
}

.pixi-hp-faqs-container {
    padding: 60px;
}

.pixi-hp-faqs-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 20px;
    text-align: left;
}

.pixi-hp-faqs-orange {
    color: #bf4e00;
    font-weight: 700;
}

.pixi-hp-faqs-sub {
    font-size: 21px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 2.4em;
    text-align: left;
}

.pixi-hp-faqs-list {
    border-radius: 14px;
    padding: 16px 8px;
}

.pixi-hp-faqs-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #f7c8c0;
}

.pixi-hp-faqs-question {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    font-size: 24px;
    padding: 18px 0;
    color: #3d0000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 33.6px;
}

.pixi-hp-faqs-icon {
    margin-left: 0.8em;
    display: inline-block;
    transition: all 0.3s ease;
}

.pixi-hp-faqs-icon svg {
    transition: all 0.3s ease;
}

.pixi-hp-faqs-icon .vertical-line {
    opacity: 1;
    transform: rotate(0deg);
}

.pixi-hp-faqs-icon .horizontal-line {
    opacity: 1;
}

.pixi-hp-faqs-icon circle {
    stroke: #ffe0e0;
    fill: #ffe0e0;
    stroke-width: 1.8;
}

.pixi-hp-faqs-icon line {
    stroke: #770f04;
    stroke-width: 2.5;
}

.pixi-hp-faqs-item.active .pixi-hp-faqs-icon .vertical-line {
    opacity: 0;
    transform: rotate(90deg);
}

.pixi-hp-faqs-item.active .pixi-hp-faqs-icon .horizontal-line {
    stroke: #770f04;
}

.pixi-hp-faqs-answer {
    display: none;
    padding: 10px 0 16px 0;
    color: #404040;
    font-size: 1rem;
    animation: pixi-hp-faqs-fadeIn 0.4s;
}

.pixi-hp-faqs-item.active .pixi-hp-faqs-answer {
    display: block;
}

@media (max-width: 800px) {
    .pixi-hp-faqs-title {
        font-size: 1.45rem;
    }

    .pixi-hp-faqs-question {
        font-size: 0.99rem;
    }
}

@keyframes pixi-hp-faqs-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ----------------------- download app ------------------------- */

.download-app-pixi {
    position: relative;
    min-height: 70vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("images/download-app.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.download-app-pixi__container {
    max-width: 600px;
    width: 100%;
    z-index: 2;
}

.download-app-pixi__title {
    font-weight: 500;
    line-height: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.download-app-pixi__subtitle {
    font-size: 21px;
    font-weight: 400;
    opacity: 80%;
    text-align: center;
}

.download-app-pixi__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.download-app-pixi__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.download-app-pixi__button--app-store {
    background-color: #000000;
    color: white;
    border: 2px solid #000000;
}

.download-app-pixi__button--app-store:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.download-app-pixi__icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .download-app-pixi {
        min-height: 80vh;
        padding: 15px;
    }

    .download-app-pixi__buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .download-app-pixi__button {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .download-app-pixi {
        min-height: 70vh;
        padding: 10px;
    }

    .download-app-pixi__title {
        margin-bottom: 1rem;
        line-height: 41px;
    }

    .download-app-pixi__subtitle {
        margin-bottom: 2rem;
        padding: 0px 10px;
    }
}

/* --------------- footer ------------------ */
.pixi-footer {
    position: relative;
    background-image: url(images/Footer\ -\ Desktop.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0 30px;
    min-height: 300px;
    width: 100%;
}

.pixi-footer-container {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0 140px;
    width: 100%;
    box-sizing: border-box;
}

.pixi-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.pixi-footer-brand {
    flex: 1 1 0;
    max-width: 290px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pixi-footer-brand img {
    margin-bottom: 30px;
    width: 120px;
    height: auto;
}

.pixi-footer-tagline {
    font-size: 24px;
    line-height: 33.6px;
    font-weight: 400;
    margin-bottom: 20px;
}

.pixi-footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.pixi-footer-social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #3d0000;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.pixi-footer-social-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.pixi-footer-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.pixi-footer-social-icon:hover::before {
    opacity: 1;
}

.pixi-footer-social-icon i {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.pixi-footer-social-icon.instagram::before {
    background: linear-gradient(45deg,
            #feda77,
            #f58529,
            #dd2a7b,
            #8134af,
            #515bd4);
}

.pixi-footer-social-icon.instagram-pill {
    width: auto;
    padding: 12px 24px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
    height: auto;
    margin-top: 10px;
}

.pixi-footer-social-icon.instagram-pill::before {
    display: none;
}

.pixi-footer-social-icon.instagram-pill i {
    font-size: 24px;
    background: linear-gradient(45deg, #feda77, #f58529, #dd2a7b, #8134af, #515bd4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pixi-footer-social-icon.instagram-pill span {
    color: #A43337;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}

.pixi-footer-social-icon.instagram-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pixi-footer-social-icon.instagram:hover i {
    color: white;
}

.pixi-footer-social-icon.facebook::before {
    background: #1877f2;
}

.pixi-footer-social-icon.facebook:hover i {
    color: white;
}

.pixi-footer-social-icon.pinterest::before {
    background: #e60023;
}

.pixi-footer-social-icon.pinterest:hover i {
    color: white;
}

.pixi-footer-social-icon.rounded {
    border-radius: 50%;
}

.pixi-footer-social-icon.rounded::before {
    border-radius: 50%;
}

.pixi-footer-social-icon:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.pixi-footer-right-sections {
    display: flex;
    gap: 80px;
    flex: 1 1 0;
    justify-content: flex-end;
}

.pixi-footer-section {
    min-width: 160px;
    display: flex;
    flex-direction: column;
}

.pixi-footer-heading {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pixi-footer-links {
    list-style: none;
    padding-left: 0;
}

.pixi-footer-links li {
    margin-bottom: 20px;
}

.pixi-footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 20.8px;
    transition: all 0.3s ease;
    opacity: 0.85;
    display: inline-block;
    padding-left: 0;
}

.pixi-footer-links a:hover {
    opacity: 1;
    padding-left: 10px;
}

.pixi-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
}

.pixi-footer-copyright {
    font-size: 12px;
    opacity: 0.8;
    flex: 1;
}

.pixi-footer-legal {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 2;
    justify-content: flex-end;
}

.pixi-footer-legal a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.pixi-footer-legal a:hover {
    opacity: 1;
    text-decoration: underline;
}

.pixi-footer-legal span {
    margin-right: 10px;
}

@media (max-width: 1024px) {
    .pixi-footer-container {
        padding: 0 60px;
    }

    .pixi-footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .pixi-footer-brand {
        align-items: center;
        max-width: none;
    }

    .pixi-footer-right-sections {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pixi-footer {
        padding: 40px 0 20px;
    }

    .pixi-footer-container {
        padding: 0 30px;
    }

    .pixi-footer-content {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
    }

    .pixi-footer-brand {
        align-items: center;
    }

    .pixi-footer-social {
        justify-content: center;
    }

    .pixi-footer-right-sections {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .pixi-footer-section {
        min-width: 0;
        width: 100%;
        text-align: center;
    }

    .pixi-footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .pixi-footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .pixi-second-sec,
    .pixi-lp-vendor-main,
    .pros-lp-main,
    .pixi-hp-faqs-container {
        padding: 30px !important;
    }

    .faq-tab {
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    .pixi-footer-container {
        padding: 0 15px;
    }

    .pixi-footer-tagline {
        font-size: 20px;
        line-height: 28px;
    }

    .pixi-footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .pixi-footer-content {
        gap: 20px;
    }

    .pixi-footer-right-sections {
        gap: 30px;
        margin-top: 30px;
    }

    .mobile-download-btn {
        margin-left: unset;
    }
}

/* ------------------------ abous us -------------------------- */
.pixi-second-sec {
    margin: 0 auto;
    padding: 60px;
}

.nex-sec {
    margin-top: -19px !important;
}

.board {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 1237 / 335;
    margin: 40px auto 40px 0px;
    display: block;
}

.shape {
    position: absolute;
    top: 0;
    height: 100%;
    display: block;
}

.shape.orange {
    left: 0;
    width: 71.57%;
}

.shape.brown {
    left: 28.46%;
    width: 71.57%;
}

.shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

.img-left,
.img-right {
    position: absolute;
    aspect-ratio: 1/1;
    width: 25.14%;
    top: 3.58%;
    overflow: hidden;
    border-radius: clamp(8px, 1.5vw, 20px);
}

.img-left {
    left: 0.97%;
}

.img-right {
    left: 73.83%;
}

.img-left img,
.img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.title,
.title2 {
    position: absolute;
    font-weight: 500;
    font-size: 25px;
    color: white;
    line-height: 33.6px;
}

.desc,
.desc2 {
    position: absolute;
    font-weight: 400;
    font-size: 17px;
    color: #ffffff;
    max-width: 40.3%;
    opacity: 80%;
}

.title {
    left: 28.22%;
    top: 11.64%;
}

.desc {
    left: 28.22%;
    top: 23.28%;
}

.title2 {
    left: 31.29%;
    top: 62.39%;
}

.desc2 {
    left: 31.29%;
    top: 74.03%;
}

.mobile-container {
    display: none;
}

@media (max-width: 768px) {
    .board {
        display: none;
    }

    .mobile-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0px;
    }

    .mobile-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .mobile-card:nth-child(1) {
        background-color: #bf4e00;
        color: white;
    }

    .mobile-card:nth-child(1) .mobile-title,
    .mobile-card:nth-child(1) .mobile-desc {
        color: white;
    }

    .mobile-card:nth-child(2) {
        background-color: #8c2f0b;
        color: white;
    }

    .mobile-card:nth-child(2) .mobile-title,
    .mobile-card:nth-child(2) .mobile-desc {
        color: white;
    }

    .mobile-card:nth-child(3) {
        background-color: #f7a340;
    }

    .mobile-card:nth-child(3) .mobile-title,
    .mobile-card:nth-child(3) .mobile-desc {
        color: white;
    }

    .mobile-card:nth-child(4) {
        background-color: #fff3e5;
    }

    .mobile-card:nth-child(4) .mobile-title,
    .mobile-card:nth-child(4) .mobile-desc {
        color: #8c2f0b;
    }

    .mobile-image {
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 15px;
        flex-shrink: 0;
    }

    .mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-content {
        margin-left: 0;
        width: 100%;
    }

    .mobile-title {
        font-size: 20px;
        font-weight: 500;
        margin: 0;
    }

    .mobile-desc {
        font-size: 14px;
        font-weight: 400;
        margin-top: 5px;
    }
}

@media screen and (min-width: 1441px) {

    .pixi-second-sec,
    .hero-content,
    .pixi-lp-vendor-main,
    .pros-lp-main,
    .pixi-hp-faqs-container {
        padding: 40px 200px;
    }

    .board {
        max-width: unset;
    }

    .sectiong-heading-second h2 {
        font-size: 50px !important;
    }
}

.subheadline-sec {
    margin-top: 20px;
    color: #bf4e00;
    font-weight: 500;
    font-size: 23px;
}

/* @media screen and (min-width: 1920px) { */
/* .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;

    background-image: url("images/hero-section.png");
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #3a1a0e !important;
  } */
/* 
  .pixi-second-sec,
  .hero-content,
  .pixi-lp-vendor-main,
  .pros-lp-main,
  .pixi-hp-faqs-container {
    max-width: 1920px !important;
  }
} */

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .pixi-second-sec {
        display: flex;
        flex-direction: column;
    }

    .pixi-second-sec .sectiong-heading-second {
        order: 1;
    }

    .pixi-second-sec .board:nth-of-type(1) {
        order: 2;
    }

    .pixi-second-sec .mobile-container-first {
        order: 3;
    }

    .pixi-second-sec .testimonial-board {
        order: 4;
    }

    .pixi-second-sec .mobile-container-second {
        order: 5;
    }

    .pixi-second-sec .board:nth-of-type(2) {
        order: 6;
    }

    .pixi-second-sec .get-started-button-container {
        order: 7;
    }
}

.get-started-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding: 0 20px;
}

.get-started-btn {
    background: #770f04;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    max-width: 250px;
    width: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.get-started-btn:hover {
    background: #a71c1c;
    transform: translateY(-2px);
}

.get-started-btn:active {
    transform: translateY(0);
}

@media (min-width: 769px) {
    .get-started-button-container {
        display: flex;
        margin: 40px 0;
    }
}

@media (min-width: 1440px) {
    .get-started-btn {
        font-size: 20px;
        padding: 21px 40px;
        max-width: 305px;
    }
}

@media (max-width: 480px) {
    .get-started-button-container {
        margin: 20px 0;
        padding: 0 15px;
    }
}

section {
    scroll-margin-top: 92px;
}

.hero-testimonial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 40px;
    width: 100%;
}

.hero-testimonial-box {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 14px 36px;
    position: relative;
    backdrop-filter: blur(10px);
    max-width: 500px;
}

.hero-testimonial-quote-mark {
    position: absolute;
    font-size: 120px;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.hero-testimonial-quote-mark.quote-start {
    top: -43px;
    left: 11px;
}

.hero-testimonial-content {
    position: relative;
    z-index: 2;
}

.hero-testimonial-text {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.hero-testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-author-info {
    flex: 1;
}

.hero-author-name {
    font-weight: 400;
    color: white;
    margin: 0 0 5px 0;
    font-size: 13px;
}

.hero-author-title {
    font-size: 14px;
    color: white;
    margin: 0;
    font-family: "Inter", sans-serif;
    opacity: 0.9;
}

.hero-author-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    font-weight: 700;
}

.hero-testimonial-product {
    flex-shrink: 0;
    position: relative;
}

.hero-testimonial-product img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1200px) {
    .hero-testimonial-container {
        gap: 40px;
        margin-top: 35px;
    }

    .hero-testimonial-box {
        padding: 20px 50px;
    }

    .hero-testimonial-product img {
        max-width: 150px;
    }
}

@media (max-width: 992px) {
    .hero-testimonial-container {
        text-align: center;
        gap: 40px;
        margin-top: 30px;
    }

    .hero-testimonial-box {
        max-width: 78%;
        padding: 11px 30px;
    }

    .hero-testimonial-author {
        justify-content: center;
    }

    .hero-testimonial-product img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .hero-testimonial-container {
        gap: 30px;
        margin-top: 25px;
    }

    .hero-testimonial-box {
        padding: 30px 20px;
    }

    .hero-testimonial-quote-mark {
        font-size: 80px;
    }

    .hero-testimonial-quote-mark.quote-start {
        top: -10px;
        left: 15px;
    }

    .hero-testimonial-quote-mark.quote-end {
        bottom: -10px;
        right: 15px;
    }

    .hero-testimonial-text {
        margin-bottom: 30px;
    }

    .hero-author-avatar {
        width: 50px;
        height: 50px;
    }

    .hero-author-name {
        font-size: 16px;
    }

    .hero-author-title {
        font-size: 12px;
    }

    .hero-testimonial-product img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .hero-testimonial-container {
        gap: 25px;
        margin-top: 20px;
    }

    .hero-testimonial-box {
        padding: 25px 15px;
    }

    .hero-testimonial-quote-mark {
        font-size: 60px;
    }

    .hero-testimonial-quote-mark.quote-start {
        top: -5px;
        left: 10px;
    }

    .hero-testimonial-quote-mark.quote-end {
        bottom: -5px;
        right: 10px;
    }

    .hero-testimonial-text {
        margin-bottom: 25px;
    }

    .hero-testimonial-author {
        text-align: center;
        gap: 50px;
    }

    .hero-author-avatar {
        width: 45px;
        height: 45px;
    }

    .hero-author-name {
        font-size: 14px;
    }

    .hero-author-title {
        font-size: 11px;
    }

    .hero-testimonial-product img {
        max-width: 80px;
    }
}

.end-second {
    bottom: 58px !important;
    right: 273px !important;
}

/* Andre B Testimonial Section in About */
.testimonial-board {
    margin: 0 auto;
    padding: 40px 0px 60px 0px;
}

.testimonial-box-about {
    background: #bf4e00;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    margin: 0 auto;
}

.testimonial-quote-mark {
    position: absolute;
}

.testimonial-quote-mark.quote-start {
    top: -34px;
    left: 86px;
}

.testimonial-quote-mark.quote-end {
    bottom: -55px;
    right: 29px;
}

.testimonial-quote-mark img {
    width: 103px;
    height: 120px;
    object-fit: contain;
}

.testimonial-content-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding-top: 20px;
}

.author-avatar-about {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.author-avatar-about img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name-about {
    font-size: 19px;
    font-weight: 700;
    color: white;
}

.author-title-about {
    font-size: 17px;
    font-weight: 400;
    color: white;
}

.testimonial-text-about {
    font-size: 16px;
    font-weight: 700;
    color: white;
    line-height: 33px;
    text-align: center;
    max-width: 900px !important;
}

@media (max-width: 1200px) {
    .testimonial-text-about {
        font-size: 16px;
    }

    .author-name-about {
        font-size: 22px;
    }

    .author-title-about {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .testimonial-board {
        padding: 20px 10px;
    }

    .testimonial-box-about {
        padding: 25px 15px;
        max-width: 400px;
    }

    .testimonial-text-about {
        line-height: 23px;
    }

    .author-avatar-about {
        top: -25px;
    }

    .author-avatar-about img {
        width: 50px;
        height: 50px;
    }

    .author-name-about {
        font-size: 16px;
    }

    .author-title-about {
        font-size: 12px;
    }

    .testimonial-quote-mark img {
        width: 70px;
    }

    .testimonial-quote-mark.quote-start {
        top: -44px !important;
        left: 26px !important;
    }

    .testimonial-quote-mark.quote-end {
        bottom: -15px;
        right: 21px !important;
    }
}

/* -------- vendor partner program --------- */
.vendor-partner-program-container {
    width: 100%;
    margin: 0 auto;
}

.vendor-partner-program-list {
    padding-left: unset !important;
}

.vendor-partner-program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vendor-partner-program-card {
    background: #fef3f3;
    border: 2px solid #a43337;
    border-radius: 20px;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vendor-partner-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vendor-partner-program-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.vendor-partner-program-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vendor-partner-program-icon svg {
    width: 100%;
    height: 100%;
}

.vendor-partner-program-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vendor-partner-program-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vendor-partner-program-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.vendor-partner-program-checkmark {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vendor-partner-program-checkmark svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 900px) {
    .vendor-partner-program-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .vendor-partner-program-card {
        padding: 25px 20px;
    }
}

@media (max-width: 640px) {
    .vendor-partner-program-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .vendor-partner-program-card {
        padding: 25px 20px;
    }

    .vendor-partner-program-title {
        font-size: 15px;
    }

    .vendor-partner-program-list-item {
        font-size: 14px;
    }

    .vendor-partner-program-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .vendor-partner-program-card {
        padding: 20px 15px;
    }

    .vendor-partner-program-header {
        gap: 12px;
    }

    .vendor-partner-program-list {
        gap: 15px;
    }
}

/* --------- How it works ---------------- */

.pixi-how-works-steps-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.pixi-how-works-step {
    position: relative;
    width: 100%;
    max-width: 324px;
    height: 119px;
    overflow: hidden;
}

.pixi-how-works-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.pixi-how-works-icon {
    position: absolute;
    left: 33px;
    top: 40px;
    width: 40px;
    height: 40px;
}

.pixi-how-works-text {
    position: absolute;
    left: 101px;
    top: 23.5px;
    max-width: 200px;
    color: white;
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
    word-wrap: break-word;
}

.pixi-how-works-number {
    position: absolute;
    right: 22px;
    top: -33px;
    opacity: 15%;
    color: white;
    font-size: 100px;
    font-weight: 700;
    pointer-events: none;
    font-size: 79px;
}

.pixi-how-works-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.pixi-how-works-step:last-child .pixi-how-works-arrow {
    display: none;
}

@media (max-width: 1024px) {
    .pixi-how-works-steps-wrapper {
        gap: 15px;
    }

    .pixi-how-works-step {
        max-width: 300px;
        height: 110px;
    }

    .pixi-how-works-text {
        font-size: 22px;
        line-height: 32px;
        left: 95px;
        max-width: 170px;
    }

    .pixi-how-works-icon {
        width: 36px;
        height: 36px;
        top: 37px;
    }

    .pixi-how-works-number {
        font-size: 90px;
    }

    .pixi-how-works-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .pixi-how-works-container {
        padding: 15px;
    }

    .pixi-how-works-steps-wrapper {
        gap: 12px;
    }

    .pixi-how-works-step {
        max-width: 100%;
        height: 100px;
    }

    .pixi-how-works-text {
        font-size: 18px;
        line-height: 26px;
        left: 85px;
        max-width: calc(100% - 100px);
        top: 20px;
    }

    .pixi-how-works-icon {
        width: 32px;
        height: 32px;
        left: 25px;
        top: 34px;
    }

    .pixi-how-works-number {
        font-size: 50px;
        right: 20px;
        top: -10px;
    }
}

@media (max-width: 480px) {
    .pixi-how-works-step {
        height: 90px;
    }

    .pixi-how-works-text {
        font-size: 16px;
        line-height: 22px;
        left: 75px;
        top: 18px;
    }

    .pixi-how-works-icon {
        width: 28px;
        height: 28px;
        left: 20px;
        top: 31px;
    }
}

@media (max-width: 360px) {
    .pixi-how-works-step {
        height: 80px;
    }

    .pixi-how-works-text {
        font-size: 14px;
        line-height: 20px;
        left: 65px;
        top: 15px;
    }

    .pixi-how-works-icon {
        width: 24px;
        height: 24px;
        left: 18px;
        top: 28px;
    }
}

.pixi-pros-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.pixi-pros-view-all-btn,
.pixi-pros-back-btn {
    background: #770f04;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;

    letter-spacing: 1px;
}

.pixi-pros-view-all-btn:hover,
.pixi-pros-back-btn:hover {
    background: #8c2f0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 78, 0, 0.3);
}

.pixi-pros-back-btn {
    background: #770f04;
}

.founders-page {
    padding: 40px 200px;

    margin: 0 auto;
}


@media screen and (max-width: 1440px) {
    .founders-page {
        padding: 40px 60px;
    }
}


.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
    width: 100%;
}

.faq-tab {
    background: transparent;
    border: 2px solid #770f04;
    color: #770f04;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    width: 50%;
}

.faq-tab:first-child {
    border-radius: 8px 0 0 8px;
}

.faq-tab:last-child {
    border-radius: 0 8px 8px 0;
}

.faq-tab.active {
    background: #770f04;
    color: white;
}

.last-strip {
    padding-bottom: 0px !important;
}

@media screen and (max-width: 768px) {
    .testimonial-text-about {
        max-width: 500px !important;
        line-height: 25px !important;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-wrapper {
    position: relative;
    display: inline-block;
}

.hero-btn-wrapper .btn-primary,
.hero-btn-wrapper .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    outline: none;
}

.hero-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1000;
    overflow: hidden;
}

@media (min-width: 769px) {
    .hero-btn-wrapper:hover .hero-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.hero-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}



.hero-dropdown a:last-child {
    background-color: white;
}


/* Desktop only */
@media (hover: hover) and (pointer: fine) {
    .hero-dropdown a:hover {
        background-color: #E5B899;
    }

    .hero-dropdown a:last-child:hover {
        background-color: #E5B899 !important;
    }


}



.hero-dropdown img {
    width: 24px;
    height: 24px;
}

@media (max-width: 600px) {

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-wrapper .btn-primary,
    .hero-btn-wrapper .btn-secondary {
        width: 100%;
        display: flex;
    }

    .hero-dropdown {
        width: 100%;
    }
}

@media screen and (max-width : 400px) {
    .nav-list {
        gap: 13px !important;
    }
}

.app-icon-dropdown a,
.app-icon-dropdown span {
    color: #000 !important;
}

@media (hover: hover) and (pointer: fine) {
    .hero-btn-wrapper:hover .hero-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (hover: none) {
    .hero-btn-wrapper:focus-within .hero-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


@media (hover: hover) and (pointer: fine) {
    .app-icon-dropdown a:hover {
        background-color: #E5B899;
    }
}

.hero-btn-wrapper .hero-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
}

.hero-btn-wrapper:hover .hero-dropdown,
.hero-btn-wrapper .hero-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media screen and (max-width : 1700px) {
    .hero-description {
        max-width: 700px !important;
    }
}


@media screen and (max-width : 1024px) {
    .hero-description {
        max-width: 500px !important;
    }
}