* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f8fafc;
    color: #111827
}

.nav {
    background: #fff
}

/*=== OMNICART HERO ===*/
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px 60px !important;
    background: #fff;
    /* top: 70px; */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1320px;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.hero-wrapper {
    max-width: 1320px !important;
    margin: auto;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: minmax(430px, 520px) 1fr;
    align-items: center;
    gap: 0px;
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at center,
            #F7F9FF 0%,
            #eef1f8 50%,
            #FFF6FB 100%);
}

/*=== LEFT ===*/
.hero-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 12px;
}

.hero-brand-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-brand-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-brand-name {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
}

.brand-omni {
    color: #182268;
    /* Dark Blue */
}

.brand-cart {
    color: #B31942;
    /* Brand Red */
}

.shopify-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    border-radius: 24px;
    width: fit-content;
    height: 30px;
    background: #F6FAF6;
    border: 1px solid #E3ECE3;
    border-radius: 14px;
}

.shopify-label .shopify-icon {
    width: 18px;
    height: 18px;
}

.shopify-label span {
    font-size: 10px;
    font-weight: 600;
    color: #3C4858;
    line-height: 1;
}

.divider {
    width: 500px;
    height: 1px;
    background: lightgray;
    border-radius: 2px;
    margin: 8px 0 14px;
}

.hero-heading {
    margin: 0;
    margin-top: 6px;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 700;
    background: linear-gradient(90deg, #182268 0%, #B31942 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.hero-subtitle {
    width: 100%;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #5D6674;
}

.hero-left {
    width: 100%;
    max-width: 500px;
}

/*=== BUTTONS ===*/
.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.hero-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    width: 50%;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.install-btn {
    background: #B31942;
    color: #fff;
}

.install-btn .btn-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.install-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(179, 25, 66, 0.25);
}

.price-btn {
    background: #fff;
    border: 1px solid #d8dde7;
    color: #23304d;
}

.price-btn:hover {
    border-color: #182268;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.btn-icon {
    flex-shrink: 0;
}

.install-btn svg:last-child {
    margin-left: 2px;
    transition: transform .3s ease;
}

.install-btn:hover svg:last-child {
    transform: translateX(4px);
}

/* === DEMO MODAL === */
.demo-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 40, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .28s;
    z-index: 999999;
    padding: 30px;
}

.demo-modal.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal-box {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .22);
    transform: translateY(30px);
    transition: .3s;
}

.demo-modal.active .demo-modal-box {
    transform: translateY(0);
}

.demo-header {
    height: 82px;
    display: flex;
    align-items: center;
    padding: 0 34px;
    border-bottom: 1px solid #ECECEC;
}

.demo-header h2 {
    margin: 0;
    font-size: 34px;
    color: #182268;
    font-weight: 700;
}

.demo-close {
    position: absolute;
    top: 30px;
    right: 34px;
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    border: 1px solid #E6EAF2;
    border-radius: 14px;
    cursor: pointer;
    font-size: 34px;
    color: #182268;
    transition: .25s;
}

.demo-close:hover {
    background: #F7F8FC;
}

.demo-body {
    max-height: 70vh;
    overflow: auto;
    padding: 35px;
}

.demo-placeholder {
    min-height: 450px;
}

body.demo-modal-open {
    overflow: hidden;
}

@media(max-width:768px) {

    .demo-modal {
        padding: 15px;
    }

    .demo-modal-box {
        max-width: 100%;
        border-radius: 18px;
    }

    .demo-header {
        height: 70px;
        padding: 0 20px;
    }

    .demo-header h2 {
        font-size: 24px;
    }

    .demo-close {
        right: 18px;
        top: 16px;
        width: 42px;
        height: 42px;
    }

    .demo-body {
        padding: 20px;
        max-height: 78vh;
    }
}

/*=== FEATURE ROW ===*/
.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    align-items: center;
    flex-wrap: wrap;
    background: none !important;
}

.hero-features::before {
    background: none !important;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #52627a;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #52627a;
    padding: 2px 8px;
    border-radius: 12px;
}

.hero-features img {
    width: 20px;
    height: 20px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0;
}

.hero-mockup {
    display: block;
    width: 100%;
    max-width: 750px;
}

/* === Bellow Hero SECTION === */
.features-section {
    padding: 60px 0 30px !important;
    background: #fff;
}

.features-section .container {
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 14px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 14px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #F2F4F7;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .06);
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
}

.feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.blue {
    background: #EEF5FF;
}

.green {
    background: #EEFDF4;
}

.purple {
    background: #F5F0FF;
}

.orange {
    background: #FFF5EA;
}

.feature-content h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 15px;
    line-height: 26px;
    color: #64748B;
}

/*=== Feature Section ===*/
.ux-feature-area {
    padding: 30px 0 !important;
    background: #fff;

}

.ux-feature-wrap {
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 24px
}

/*=== Header ===*/
.ux-feature-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 55px;
    position: relative;
}

/* Vertical Divider */
.ux-feature-top::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 86px;
    /* Adjust height as needed */
    background: #E5E7EB;
}

.ux-heading-box h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #0F172A;
    max-width: 540px;
}

.ux-heading-box span {
    color: #B31942;
}

.ux-feature-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: rgb(33, 54, 238) !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.ux-content-box {
    padding-left: 40px;
}

.ux-content-box p {
    color: #64748B;
    line-height: 1.8;
    font-size: 16px;
}

/*=== Grid ===*/
.ux-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/*=== Card ===*/
.ux-item-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 12px;
    display: flex;
    gap: 18px;
    transition: .35s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}

.ux-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .10);
}

.ux-item-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0F172A;
}

.ux-item-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
}

/*=== Icon ===*/
.ux-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.ux-icon img {
    width: 32px;
}

.blue {
    background: #EEF7FF;
}

.red {
    background: #FFF1F1;
}

.purple {
    background: #F4EDFF;
}

.pink {
    background: #FFF0F5;
}

.green {
    background: #ECFFF4;
}

.orange {
    background: #FFF5E7;
}

.yellow {
    background: #FFF8E2;
}

.sky {
    background: #EDF8FF;
}

/*=== Omni Process Section ===*/
.oc-process-area {
    padding: 30px 0 !important;
    background: #ffffff;
}

.oc-process-wrapper {
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 15px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    box-shadow: 0 12px 45px rgba(0, 0, 0, .05);
}

.oc-process-tag {
    display: block;
    margin-bottom: 18px;
    color: rgb(33, 54, 238) !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-align: center;
}

.oc-process-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0d1b4c;
    margin-bottom: 70px;
}

.oc-process-title span {
    color: #B31942;
}

.oc-process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

.oc-step-block {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.oc-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #d8dff1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: #102a60;
    flex-shrink: 0;
}

.oc-step-details {
    max-width: 220px;
}

.oc-step-details h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #182268;
}

.oc-step-details p {
    color: #6c7692;
    line-height: 1.8;
    font-size: 15px;
}

.oc-preview-card {
    width: 220px;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.oc-preview-card small {
    display: block;
    margin-bottom: 18px;
    font-weight: 600;
    color: #7c86a0;
}

.oc-line {
    height: 8px;
    background: #d9deee;
    border-radius: 20px;
    margin-bottom: 12px;
}

.oc-line.short {
    width: 70%;
}

.oc-preview-card button {
    margin-top: 18px;
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: #f3f5fa;
    font-weight: 600;
    cursor: pointer;
}

.oc-process-arrow {
    font-size: 55px;
    color: #182268;
    font-weight: 700;
}

.oc-switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e5e8f3;
    border-radius: 10px;
}

.oc-toggle {
    width: 48px;
    height: 26px;
    border-radius: 30px;
    background: #cccccc;
    position: relative;
}

.oc-toggle::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: .3s;
}

.oc-toggle.active {
    background: #22c55e;
}

.oc-toggle.active::after {
    left: 25px;
}

/*=== Customer Journey ===*/
.journey-zone {
    padding: 30px 0 !important;
}

.journey-shell {
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.journey-copy {
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}

.journey-mini {
    display: inline-block;
    margin-bottom: 18px;
    color: rgb(33, 54, 238) !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.journey-copy h2 {
    margin: 0 0 22px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #182268;
}

.journey-copy h2 span {
    color: #B31942;
}

.journey-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #6c7692;
}

/*=== RIGHT SECTION ONLY ===*/
.journey-flow-box {
    background: #fff;
    border: 1px solid #edf1f8;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    padding: 32px 28px;
}

.journey-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.journey-step {
    width: 125px;
    flex: none;
    text-align: center;
}

.journey-step img {
    display: block;
    margin: 0 auto 18px;
    height: 70px;
    width: auto;
}

.journey-laptop img {
    height: 82px;
}

.journey-step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    color: #132b63;
}

.journey-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

/* Arrow */
.journey-arrow {
    width: 70px;
    flex: none;
    position: relative;
    text-align: center;
    color: transparent;
    /* Hide your "·····→" text */
}

.journey-arrow::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 14px;
    top: 50%;
    border-top: 3px dotted #1d5cff;
    transform: translateY(-50%);
}

.journey-arrow::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #1d5cff;
    border-right: 2px solid #1d5cff;
    transform: translateY(-50%) rotate(45deg);
}

/*=== OMNICART PRICING SECTION ===*/
.pricing-showcase {
    padding: 30px 0 !important;
    background: #ffffff;
}

.pricing-shell {
    max-width: 760px !important;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
}

.plan-hidden {
    display: none !important;
}

/*=== CARD ===*/
.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #E8ECF4;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(20, 35, 80, .06);
    transition: .35s ease;
    overflow: hidden;
}

.plan-card:hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(20, 35, 80, .12);
}

.plan-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
}

/*=== FEATURED CARD ===*/
.featured-plan {
    border: 2px solid #B31942;
}

.featured-ribbon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #B31942;
    color: #fff;
    height: 32px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
}

.featured-ribbon strong {
    font-weight: 700;
}

/*=== TITLE ===*/
.plan-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #182268;
    margin-bottom: 12px;
    min-height: 28px;
}

/*=== PRICE ===*/
.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 12px;
    min-height: 64px;
}

.plan-price h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1;
    color: #182268;
    font-weight: 800;
}

.plan-price span {
    font-size: 16px;
    color: #5E6B82;
    margin-bottom: 4px;
}

/*=== DESCRIPTION ===*/
.plan-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #667287;
    margin-bottom: 16px;
    min-height: 48px;
}

/*=== LIST ===*/
.plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.plan-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    line-height: 1.5;
    color: #53637C;
    font-size: 15px;
}

.plan-list li:last-child {
    margin-bottom: 0;
}

.plan-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #3F7CFF;
    font-weight: 700;
}

/*=== BUTTON ===*/
.plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px;
    margin-top: auto;
    height: 50px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #D7DFEB;
    color: #182268;
    transition: .3s;
}

.plan-btn:hover {
    border-color: #182268;
    background: #F5F8FF;
}

.active-btn {
    background: #B31942;
    color: #fff;
    border: none;
    box-shadow: 0 12px 28px rgba(179, 25, 66, 0.25);
}

.active-btn:hover {
    background: #B31942;
}

/*=== FAQ SECTION ===*/
.support-faq-area {
    padding: 30px 0 !important;
    background: #fff;
}

.support-faq-wrapper {
    max-width: 1320px !important;
    margin: auto;
    padding: 0 40px;
}

/*===========================*/
.support-faq-heading {
    margin-bottom: 40px;
}

.support-faq-label {
    display: inline-block;
    margin-bottom: 18px;
    color: rgb(33, 54, 238) !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.support-faq-heading h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    color: #182268;
    line-height: 1.2;
}

/*===========================*/
.support-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/*===========================*/
.support-faq-column {
    display: flex;
    flex-direction: column;
}

/*===========================*/
.support-faq-item {
    border-bottom: 1px solid #E7EBF3;
}

.support-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 34px 18px 0;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #243454;
    transition: .3s;
}

.support-faq-item summary:hover {
    color: #B31942;
}

.support-faq-item summary::-webkit-details-marker {
    display: none;
}

.support-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #4D5974;
    transition: .3s;
}

.support-faq-item[open] summary::after {
    content: "−";
    color: #B31942;
}

.support-faq-content {
    padding: 0 0 18px;
    color: #667287;
    font-size: 15px;
    line-height: 1.8;
    max-width: 90%;
}

/*=== CTA Banner Section ===*/
.cta-banner-section {
    padding: 30px 0 70px !important;
    background: #ffffff;
}

.cta-banner-wrapper {
    max-width: 1280px !important;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 55px 30px;
    background: linear-gradient(90deg, #07256d 0%, #0b2f8f 55%, #32105f 100%);
}

/* Decorative dots */
.cta-dot-left,
.cta-dot-right {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: .18;
    background-image: radial-gradient(#ffffff 1.6px, transparent 1.6px);
    background-size: 16px 16px;
}

.cta-dot-left {
    left: 25px;
    top: 20px;
}

.cta-dot-right {
    right: 25px;
    top: 20px;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-banner-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-install-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 34px;
    background: #B31942;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

.cta-install-btn:hover {
    background: #9C163A;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(179, 25, 66, 0.25);
}

/* Shopify Logo */
.cta-install-btn .btn-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* Button Text */
.cta-install-btn span {
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
}

/* Arrow */
.cta-install-btn .btn-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.cta-install-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/*=== Large Desktop ===*/
@media (max-width:1400px) {

    .hero-wrapper,
    .features-section .container,
    .ux-feature-wrap,
    .oc-process-wrapper,
    .journey-shell,
    .cta-banner-wrapper {
        max-width: 1200px;
    }

    /* Pricing */
    .pricing-shell {
        max-width: 1200px;
        padding: 0 30px;
        gap: 16px;
    }

    /* FAQ */
    .support-faq-wrapper {
        max-width: 1200px;
        padding: 0 30px;
    }

    .support-faq-grid {
        gap: 30px;
    }
}

/*=== Laptop ===*/
@media (max-width:1200px) {

    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px 30px 30px;
    }

    .hero-left {
        width: 100%;
    }

    .hero-subtitle {
        width: 100%;
    }

    .hero-brand-name,
    .hero-heading {
        font-size: 46px;
    }

    .hero-right {
        padding-right: 0px;
    }

    .hero-bg {
        width: 1500px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ux-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .oc-process-flow {
        gap: 25px;
    }

    /* Pricing */
    .pricing-showcase {
        padding: 80px 0;
    }

    .pricing-shell {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
        gap: 20px;
    }

    .plan-body {
        padding: 24px;
    }

    .plan-price h2 {
        font-size: 36px;
    }

    .plan-btn {
        height: 50px;
    }

    /* FAQ */
    .support-faq-area {
        padding: 80px 0;
    }

    .support-faq-wrapper {
        padding: 0 30px;
    }

    .support-faq-heading h2 {
        font-size: 38px;
    }

    .support-faq-grid {
        gap: 24px;
    }
}

/*=== Tablet ===*/
@media (max-width:992px) {

    .hero-section {
        padding: 70px 0 50px !important;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 15px 24px 30px;
        text-align: center;
    }

    .hero-left {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-brand {
        justify-content: center;
    }

    .hero-brand-content {
        align-items: flex-start;
    }

    .divider {
        margin: 24px auto;
    }

    .hero-heading {
        font-size: 48px;
        line-height: 1.1;
    }

    .hero-subtitle {
        max-width: 620px;
        margin: 20px auto 0;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        justify-content: center;
        gap: 20px;
        top: 20px;
    }

    .hero-features::before {
        background: none !important;
    }

    .hero-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    .hero-mockup {
        display: block;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ux-feature-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .ux-heading-box h2 {
        max-width: max-content;
    }

    .ux-content-box {
        border: none;
        padding-left: 0;
    }

    .ux-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .oc-process-flow {
        flex-direction: column;
    }

    .oc-step-block {
        width: auto;
    }

    .oc-process-arrow {
        transform: rotate(90deg);
    }

    .journey-shell {
        flex-direction: column;
        text-align: center;
    }

    .journey-copy {
        width: 100%;
    }

    .journey-flow-box {
        width: 100%;
        overflow-x: auto;
    }

    .cta-banner-content h2 {
        font-size: 34px;
    }

    /* Pricing */
    .pricing-shell {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px;
        gap: 20px;
    }

    .plan-card {
        width: 100%;
    }

    .plan-price h2 {
        font-size: 34px;
    }

    .plan-desc,
    .plan-list li {
        font-size: 14px;
    }

    /* FAQ */
    .support-faq-area {
        padding: 70px 0;
    }

    .support-faq-wrapper {
        padding: 0 24px;
    }

    .support-faq-heading {
        text-align: center;
        margin-bottom: 35px;
    }

    .support-faq-heading h2 {
        font-size: 34px;
    }

    .support-faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .support-faq-column {
        width: 100%;
    }
}

/*=== Mobile ===*/
@media (max-width:768px) {

    .hero-section {
        padding: 70px 0 40px !important;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 15px 20px 30px;
    }

    .hero-left {
        max-width: -webkit-fill-available;
        margin: 0 auto;
    }

    .hero-brand {
        justify-content: center;
        gap: 14px;
    }

    .hero-brand-logo {
        width: 70px;
        height: 70px;
    }

    .hero-brand-name {
        font-size: 42px;
    }

    .shopify-label {
        margin-top: 8px;
    }

    .divider {
        margin: 24px auto;
        width: 250px !important;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .install-btn,
    .price-btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        gap: 16px;
        top: 12px;
    }

    .hero-right {
        width: 100%;
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 22px;
    }

    .ux-feature-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ux-feature-top::before {
        display: none;
    }

    .ux-content-box {
        padding-left: 0;
    }

    .ux-heading-box h2 {
        font-size: 34px;
        max-width: max-content;
    }

    .ux-grid-layout {
        grid-template-columns: 1fr;
    }

    .oc-process-title {
        font-size: 32px;
    }

    .oc-step-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 60% !important;
    }

    .oc-step-details {
        max-width: 100%;
    }

    .oc-preview-card {
        width: 100%;
    }

    .journey-track {
        min-width: 900px;
    }

    .cta-banner-wrapper {
        padding: 45px 20px;
    }

    .cta-banner-content h2 {
        font-size: 30px;
    }

    .cta-banner-content p {
        font-size: 16px;
    }

    /* Pricing */
    .pricing-showcase {
        padding: 60px 0;
    }

    .pricing-shell {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 18px;
    }

    .plan-card {
        max-width: 450px;
        margin: auto;
    }

    .plan-body {
        padding: 22px;
    }

    .plan-title {
        font-size: 18px;
    }

    .plan-price h2 {
        font-size: 32px;
    }

    .plan-btn {
        margin: 0 20px 20px;
        height: 48px;
    }

    /* FAQ */
    .support-faq-area {
        padding: 60px 0;
    }

    .support-faq-wrapper {
        padding: 0 20px;
    }

    .support-faq-heading h2 {
        font-size: 30px;
    }

    .support-faq-item summary {
        font-size: 16px;
        padding: 16px 28px 16px 0;
    }

    .support-faq-content {
        font-size: 14px;
    }
}

/*=== Small Mobile ===*/
@media (max-width:576px) {

    .hero-section {
        padding: 50px 0 40px !important;
    }

    .hero-wrapper {
        padding: 20px 16px 30px;
        gap: 32px;
    }

    .hero-left {
        max-width: -webkit-fill-available;
        margin: 0 auto;
    }

    .hero-brand {
        gap: 12px;
    }

    .hero-brand-logo {
        width: 60px;
        height: 60px;
    }

    .hero-brand-name {
        font-size: 34px;
    }

    .shopify-label {
        padding: 5px 10px;
    }

    .shopify-label span {
        font-size: 12px;
    }

    .hero-heading {
        font-size: 32px;
        line-height: 1.15;
    }

    .divider {
        margin: 24px auto;
        width: 250px !important;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons a {
        width: 70%;
        gap: 5px;
    }

    .install-btn,
    .price-btn {
        max-width: 100%;
        height: 48px;
        font-size: 14px;
    }

    .hero-features {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        top: 13px;
    }

    .hero-right {
        width: 100%;
        display: none;
    }

    .hero-mockup {
        width: 100%;
        max-width: 420px;
        display: block;
        margin: 0 auto;
    }

    .oc-step-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 80% !important;
    }

    .oc-process-wrapper {
        padding: 40px 18px;
    }

    .oc-process-title {
        font-size: 28px;
    }

    .journey-copy h2 {
        font-size: 36px;
    }

    .journey-copy p {
        font-size: 16px;
    }

    .cta-banner-content h2 {
        font-size: 26px;
    }

    .cta-install-btn {
        width: 100%;
        justify-content: center;
    }

    /* Pricing */
    .pricing-showcase {
        padding: 50px 0;
    }

    .pricing-shell {
        padding: 0 16px;
    }

    .plan-body {
        padding: 20px;
    }

    .plan-card {
        max-width: 300px;
        margin: auto;
    }

    .plan-price h2 {
        font-size: 28px;
    }

    .plan-price span {
        font-size: 14px;
    }

    .plan-title {
        font-size: 16px;
    }

    .plan-desc,
    .plan-list li {
        font-size: 13px;
    }

    .plan-btn {
        height: 46px;
        margin: 0 16px 16px;
        font-size: 14px;
    }

    /* FAQ */
    .support-faq-area {
        padding: 50px 0;
    }

    .support-faq-wrapper {
        padding: 0 16px;
    }

    .support-faq-heading h2 {
        font-size: 26px;
    }

    .support-faq-label {
        font-size: 13px;
    }

    .support-faq-item summary {
        font-size: 15px;
        padding: 15px 26px 15px 0;
    }

    .support-faq-item summary::after {
        font-size: 20px;
    }

    .support-faq-content {
        font-size: 13px;
        line-height: 1.7;
    }
}