/* =============================================
   Kliento Theme Overrides
   ============================================= */

/* --- Base link & button hover color --- */
a:hover,
.btn:hover {
    color: #ff5757;
}

/* --- .btn-thm (primary button) --- */
.btn-thm {
    background-color: #ff5757;
    border: 1px solid transparent;
}

.btn-dark {
    border: 1px solid transparent;
}

/* --- Hover ::before pseudo-element (skew animation) --- */
    .ud-btn:before,
    .btn-gray:before,
    .btn-dark:before,
    .btn-thm:before,
    .btn-thm2:before,
    .btn-thm3:before,
    .btn-thm-border:before,
    .btn-white:before,
    .btn-light-gray:before,
    .btn-transparent:before,
    .btn-transparent2:before,
    .menu-btn:before {
        background: linear-gradient(135deg,#ff5757 50%,#ff67a2 100%,rgba(255,103,162,0) 100%);
    }

/* --- .btn-thm hover --- */
.btn-thm:hover {
    border: 1px solid transparent;
}

/* --- .btn-dark:hover --- */
.btn-dark:hover {
    background-color: #ff5757;
    border: 1px solid transparent;
}

/* --- .menu-btn:hover --- */
.menu-btn:hover {
    background: linear-gradient(135deg,#ff5757 50%,#ff67a2 100%,rgba(255,103,162,0) 100%);
    border: 1px solid #ffffff;
}

/* --- .btn-thm2 (secondary / light tint button) --- */
.btn-thm2 {
    background-color: rgba(255, 87, 87, 0.1);
    color: #ff5757;
}

/* --- .btn-thm3 (outlined button) --- */
.btn-thm3 {
    border: 1px solid #ff5757;
    color: #ff5757;
}

/* --- .btn-thm-border --- */
.btn-thm-border {
    border: 1px solid #ff5757;
}

/* --- .btn-white / .btn-white2 hover border --- */
.btn-white:hover,
.btn-white2:hover {
    border: 1px solid transparent;
}

/* --- .btn-light-gray / .btn-transparent hover border --- */
.btn-light-gray:hover,
.btn-transparent:hover {
    border: 1px solid transparent;
}

/* --- .btn-transparent2 interactions --- */
.btn-transparent2:hover,
.btn-transparent2:focus,
.btn-transparent2:active {
    color: #ff5757;
}

/* --- .bgc-thm (theme background utility) --- */
.bgc-thm {
    background-color: #ff5757;
}

/* --- .bgc-thm-light --- */
.bgc-thm-light {
    background-color: rgba(255, 87, 87, 0.05);
}

/* --- Kliento header: ensure menu stays above hero content --- */
.header-nav.main-menu {
    z-index: 9999;
}

/* --- Kliento menu overrides: wider dropdowns for longer translations --- */
header.nav-homepage-style .ace-responsive-menu .sub-menu {
    width: 420px;
}
header.nav-homepage-style .ace-responsive-menu .sub-menu li {
    width: 420px;
}
header.nav-homepage-style .ace-responsive-menu .sub-menu a {
    line-height: normal;
    padding: 10px 0;
    white-space: normal;
    font-weight:normal !important;
}
header.nav-homepage-style .ace-responsive-menu .megamenu_style .mega_menu_list {
    width: 50%;
}
header.nav-homepage-style .ace-responsive-menu .megamenu_style:hover .dropdown-megamenu {
    max-width: 700px;
}
    /* =============================================
   Kliento Index Page Styles
   ============================================= */
    .hero-section {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
    }

        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #ff5757 0%, #ff67a2 80%, #ff67a2 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
            z-index: -1;
        }

        .hero-section h1 {
            color: #f4f4f4;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        .hero-section .hero-text {
            color: #333;
        }

    .header-line {
        background: linear-gradient(135deg,#ff5757 0%,#ff67a2 100%,rgba(255,103,162,0) 100%);
        height: 5px;
        display: block;
        width: 70px;
        margin-bottom: 20px;
    }
    /* Digital Brain Section */
    .brain-col {
        background: linear-gradient(148deg, rgba(250, 250, 250, 1) 0%, rgba(255,255,255,1) 38%, rgba(255, 103, 163,0.1) 100%);
        box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

        .brain-col:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.2);
        }

    .brain-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 12px;
        background-color: rgba(255, 103, 163, 0.07);
        color: #ff5757
    }

    .operation-tag {
        background: linear-gradient(135deg,#ff5757 0%,#ff67a2 100%,rgba(255,103,162,0) 100%);
        color: #f4f4f4;
        box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
        padding: 10px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 12px;
    }
    /* Section 3: Story Blocks (zigzag) */
    .story-block {
        padding: 48px 0;
    }

        .story-block + .story-block {
            border-top: 1px solid rgba(0,0,0,0.06);
        }
    /* Section 4: Modules Grid */
    .module-card {
        background-color: #F7F7F7;
        border-radius: 12px;
        margin-bottom: 30px;
        padding: 30px;
        position: relative;
        height: 100%;
        transition: all 0.4s ease;
    }

        .module-card p {
            color: #6c757d;
        }

        .module-card ul {
            padding-left: 20px;
        }

        .module-card li {
            align-items: center;
            display: flex;
            list-style-type: none;
            font-size: 12px;
        }

            .module-card li > i {
                border-radius: 50%;
                font-size: 8px;
                height: 14px;
                left: 0;
                line-height: 16px;
                position: absolute;
                text-align: center;
                width: 14px;
                background-color: var(--headings-color);
                color: #fff;
            }

    .module-card-icon {
        background-color: #ffffff;
        border-radius: 50%;
        color: var(--headings-color);
        display: block;
        font-size: 30px;
        height: 70px;
        line-height: 75px;
        margin-bottom: 30px;
        text-align: center;
        width: 70px;
        transition: all 0.4s ease;
    }

    .module-card.text-center .module-card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .module-card:hover {
        background: linear-gradient(135deg,#ff5757 0%,#ff67a2 100%,rgba(255,103,162,0) 100%);
    }

        .module-card:hover li {
            color: #f4f4f4;
        }

            .module-card:hover li > i {
                color: #fff;
                background-color: rgba(255, 255, 255, 0.3);
            }

        .module-card:hover h6 {
            color: #f4f4f4;
        }

        .module-card:hover p {
            color: #f4f4f4;
        }

        .module-card:hover a {
            color: #f4f4f4;
        }

        .module-card:hover .module-card-icon {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.3);
        }
    /* Section 5: Onboarding Timeline */
    .onboarding-timeline {
        position: relative;
    }

    .onboarding-card {
        background: #fff;
        border-radius: 14px;
        padding: 32px 20px 24px;
        text-align: center;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        position: relative;
        z-index: 1;
    }

        .onboarding-card:hover {
            transform: scale(1.1);
            box-shadow: 0 14px 40px rgba(0,0,0,0.10);
        }

    .onboarding-step-number {
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        color: #333;
        font-size: 30px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(227, 80, 73, 0.35);
        z-index: 2;
    }

    .onboarding-list {
        position: relative;
        padding-left: 20px;
        text-align: left;
    }

        .onboarding-list li {
            align-items: baseline;
            display: flex;
            list-style-type: none;
            font-size: 12px;
            line-height: normal;
            margin-bottom: 10px;
        }

            .onboarding-list li > i {
                border-radius: 50%;
                font-size: 8px;
                height: 14px;
                left: 0;
                line-height: 16px;
                position: absolute;
                text-align: center;
                width: 14px;
                background-color: var(--headings-color);
                color: #fff;
            }

    .onboarding-final-message {
        display: inline-block;
        background: linear-gradient(135deg,#ff5757 0%,#ff67a2 100%,rgba(255,103,162,0) 100%);
        border-radius: 60px;
        padding: 14px 36px;
        font-size: 17px;
        font-weight: 600;
        color: #f4f4f4;
    }
    /* Venue Selector — full viewport */
    .venue-selector-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .venue-type-card {
        background: #fff;
        border: 2px solid rgba(227,80,73,0.12);
        border-radius: 14px;
        padding: 32px 20px;
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

        .venue-type-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border-color: var(--bs-danger, #e35049);
        }

        .venue-type-card.active {
            border-color: var(--bs-danger, #e35049);
            box-shadow: 0 8px 24px rgba(227,80,73,0.15);
            background: rgba(227,80,73,0.03);
        }

        .venue-type-card i {
            font-size: 36px;
            color: var(--bs-danger, #e35049);
            display: block;
            margin-bottom: 10px;
        }

        .venue-type-card span {
            font-size: 16px;
            font-weight: 600;
            color: #2d2d2d;
        }
    /* 3 Key Benefits */
    .key-benefit {
        text-align: center;
        padding: 0 20px;
    }

    .key-benefit-check {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        background: var(--bs-danger, #e35049);
        color: #fff;
        margin-bottom: 20px;
    }

    .key-benefit h5 {
        font-size: 20px;
        font-weight: 700;
        color: #2d2d2d;
        margin-bottom: 10px;
    }

    .key-benefit p {
        font-size: 14px;
        line-height: 1.7;
        color: #6c757d;
        max-width: 320px;
        margin: 0 auto;
    }
    /* System Diagram */
    .sys-diagram {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
        padding: 60px 0;
    }

    .sys-center {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: var(--bs-danger, #e35049);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        font-size: 28px;
        font-weight: 800;
        position: relative;
        z-index: 2;
        box-shadow: 0 8px 40px rgba(227,80,73,0.25);
    }

        .sys-center i {
            font-size: 32px;
            margin-bottom: 4px;
        }

    .sys-channels {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-top: 40px;
    }

    .sys-channel {
        background: #fff;
        border: 2px solid rgba(227,80,73,0.12);
        border-radius: 14px;
        padding: 16px 20px;
        text-align: center;
        min-width: 120px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

        .sys-channel:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border-color: var(--bs-danger, #e35049);
        }

        .sys-channel i {
            font-size: 24px;
            color: var(--bs-danger, #e35049);
            display: block;
            margin-bottom: 8px;
        }

        .sys-channel span {
            font-size: 14px;
            font-weight: 600;
            color: #2d2d2d;
        }
    /* Arrows from center */
    .sys-arrows {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: -8px;
    }

        .sys-arrows i {
            font-size: 20px;
            color: var(--bs-danger, #e35049);
            opacity: 0.5;
            animation: sys-pulse 2s ease-in-out infinite;
        }

            .sys-arrows i:nth-child(2) {
                animation-delay: 0.3s;
            }

            .sys-arrows i:nth-child(3) {
                animation-delay: 0.6s;
            }

    @keyframes sys-pulse {
        0%, 100% {
            opacity: 0.3;
            transform: translateY(0);
        }

        50% {
            opacity: 0.8;
            transform: translateY(4px);
        }
    }

    .sys-caption {
        font-size: 16px;
        color: #495057;
        line-height: 1.7;
        margin-top: 24px;
    }
    /* Story Blocks */
    .story-section {
        padding: 60px 0;
    }

        .story-section:nth-child(even) {
            background: #f7f7f9;
        }

    .story-block-text h3 {
        font-size: 26px;
        font-weight: 700;
        color: #2d2d2d;
        margin-bottom: 16px;
    }

    .story-block-text p,
    .story-block-text li {
        font-size: 16px;
        line-height: 1.8;
        color: #4a4a4a;
    }

    .story-block-text ul {
        list-style: none;
        padding: 0;
        margin: 12px 0 0;
    }

        .story-block-text ul li {
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

    .story-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
        background: var(--bs-danger, #e35049);
    }
    /* Mini Flow Diagrams */
    .mini-flow {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 30px 20px;
    }

    .mini-flow-node {
        background: #fff;
        border: 2px solid rgba(227,80,73,0.15);
        border-radius: 12px;
        padding: 14px 18px;
        text-align: center;
        min-width: 90px;
        transition: border-color 0.3s ease;
    }

        .mini-flow-node i {
            font-size: 22px;
            color: var(--bs-danger, #e35049);
            display: block;
            margin-bottom: 6px;
        }

        .mini-flow-node span {
            font-size: 12px;
            font-weight: 600;
            color: #2d2d2d;
        }

        .mini-flow-node.mini-flow-start {
            background: var(--bs-danger, #e35049);
            border-color: var(--bs-danger, #e35049);
        }

            .mini-flow-node.mini-flow-start i,
            .mini-flow-node.mini-flow-start span {
                color: #fff;
            }

    .mini-flow-arrow {
        color: var(--bs-danger, #e35049);
        font-size: 18px;
        opacity: 0.5;
    }
    /* Common Benefits Row */
    .why-common-row {
        border-top: 2px solid rgba(227, 80, 73, 0.12);
        padding-top: 40px;
        margin-top: 20px;
    }

    .why-common-card {
        text-align: center;
        padding: 20px 16px;
    }

    .why-common-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 12px;
        background: rgba(227, 80, 73, 0.08);
        color: var(--bs-danger, #e35049);
    }
    /* CTA Box */
    .why-cta-box {
        display: inline-block;
        background: linear-gradient(135deg, rgba(227,80,73,0.08), rgba(227,80,73,0.04));
        border: 1px solid rgba(227,80,73,0.15);
        border-radius: 16px;
        padding: 32px 48px;
    }
    /* Highlight Box */
    .highlight-box {
        background: linear-gradient(135deg, rgba(255, 87, 87, 0.08), rgba(255, 87, 87, 0.04));
        border: 1px solid rgba(255, 87, 87, 0.15);
    }
    /* Responsive */
    @media (max-width: 767px) {
        .venue-type-card {
            padding: 20px 14px;
        }

            .venue-type-card i {
                font-size: 28px;
            }

            .venue-type-card span {
                font-size: 14px;
            }

        .sys-center {
            width: 90px;
            height: 90px;
            font-size: 22px;
        }

            .sys-center i {
                font-size: 26px;
            }

        .sys-channel {
            min-width: 100px;
            padding: 12px 14px;
        }

        .story-block-text h3 {
            font-size: 22px;
        }

        .mini-flow-node {
            min-width: 70px;
            padding: 10px 12px;
        }

            .mini-flow-node i {
                font-size: 18px;
            }

            .mini-flow-node span {
                font-size: 11px;
            }

        .why-cta-box {
            padding: 24px 20px;
        }
    }
    /* Flow Diagram (Hero) — Rectangular Circuit */
    .rflow {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto 20px auto;
        max-width: 580px;
        margin: 0 auto;
        --half-ch: 24px;
        position: relative;
        pointer-events: none;
    }
    /* Col 1: Customers card with fan-out + vertical connector to return line */
    .rflow-customers-col {
        grid-column: 1;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-right: 10px;
    }

    .rflow-customers-spacer {
        flex-grow: 1;
    }

    .rflow-customers {
        flex-shrink: 0;
        background: #fff;
        border-radius: 8px;
        padding: 7px 6px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.4);
        font-size: 11px;
        font-weight: 600;
        color: #495057;
        position: relative;
        z-index: 6;
    }

        .rflow-customers::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            width: 10px;
            height: 1px;
            background: #f4f4f4;
            transform: translateY(-1px);
        }

        .rflow-customers i {
            font-size: 16px;
            color: #ff5757;
            display: block;
            margin-bottom: 2px;
        }

    .rflow-customers-vconn {
        flex-grow: 1;
        min-height: 10px;
        width: 1px;
        background: #f4f4f4;
    }
    /* Col 2: channel rows with left+right wires + merge bus */
    .rflow-rows {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

        .rflow-rows::before {
            content: '';
            position: absolute;
            left: 0;
            top: var(--half-ch);
            bottom: var(--half-ch);
            width: 1px;
            background: #f4f4f4;
        }

        .rflow-rows::after {
            content: '';
            position: absolute;
            right: 0;
            top: var(--half-ch);
            bottom: var(--half-ch);
            width: 1px;
            background: #f4f4f4;
        }

    .rflow-row {
        display: flex;
        align-items: center;
    }

    .rflow-wire-left {
        flex-shrink: 0;
        width: 24px;
        height: 1px;
        background: #f4f4f4;
        position: relative;
        overflow: hidden;
    }

    .rflow-ch {
        flex-shrink: 0;
        width: 95px;
        background: #fff;
        border-radius: 8px;
        padding: 6px 5px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.4);
        font-size: 9px;
        font-weight: 600;
        color: #495057;
        line-height: 1.25;
        z-index: 6;
    }

        .rflow-ch i {
            font-size: 16px;
            color: #ff5757;
            display: block;
            margin-bottom: 2px;
        }

    .rflow-wire {
        flex-grow: 1;
        min-width: 10px;
        height: 1px;
        background: #f4f4f4;
        position: relative;
        overflow: hidden;
    }
    /* Col 3: CRM -> Marketing hubs (horizontal layout) */
    .rflow-hubs {
        grid-column: 3;
        grid-row: 1 / 3;
        display: flex;
        align-items: stretch;
        padding-left: 10px;
        gap: 0;
    }

    .rflow-crm-col {
        display: flex;
        align-items: center;
    }

    .rflow-crm {
        background: #fff;
        border-radius: 8px;
        padding: 7px 6px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.4);
        font-size: 11px;
        font-weight: 600;
        color: #495057;
        position: relative;
        z-index: 6;
    }

        .rflow-crm::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 50%;
            width: 10px;
            height: 1px;
            background: #f4f4f4;
            transform: translateY(-1px);
        }

        .rflow-crm i {
            font-size: 16px;
            color: #ff5757;
            display: block;
            margin-bottom: 2px;
        }

        .rflow-crm strong {
            font-size: 11px;
            display: block;
        }

    .rflow-hconn {
        width: 10px;
        display: flex;
        align-items: center;
    }

        .rflow-hconn::before {
            content: '';
            width: 100%;
            height: 1px;
            background: #f4f4f4;
        }

    .rflow-mkt-col {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .rflow-mkt-col-spacer {
        flex-grow: 1;
    }

    .rflow-mkt {
        background: #fff;
        border-radius: 8px;
        padding: 7px 6px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.4);
        font-size: 11px;
        font-weight: 600;
        color: #495057;
        z-index: 6;
    }

        .rflow-mkt i {
            font-size: 16px;
            color: #ff5757;
            display: block;
            margin-bottom: 2px;
        }

        .rflow-mkt strong {
            font-size: 11px;
            display: block;
            margin-bottom: 4px;
        }

    .rflow-mkt-chs {
        display: flex;
        gap: 4px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .rflow-mkt-chs span {
            font-size: 9px;
            font-weight: 600;
            color: #6c757d;
        }

            .rflow-mkt-chs span i {
                font-size: 10px;
                margin-right: 1px;
                color: #ff5757;
            }
    /* Vertical connector from Marketing down to return line */
    .rflow-vconn-down {
        flex-grow: 1;
        min-height: 10px;
        position: relative;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

        .rflow-vconn-down::before {
            content: '';
            width: 1px;
            height: 100%;
            background: #f4f4f4;
        }
    /* Row 3: bottom return line */
    .rflow-return {
        grid-column: 1 / 4;
        grid-row: 3;
        margin-top: 0;
        text-align: center;
    }

    .rflow-return-line {
        height: 1px;
        background: #f4f4f4;
        position: relative;
        overflow: hidden;
        margin-bottom: 6px;
    }
    /* Mobile: shrink everything so lines don't overlap cards */
    @media (max-width: 575px) {
        .rflow {
            max-width: 100%;
        }

        .rflow-rows {
            gap: 5px;
        }

        .rflow-wire-left {
            width: 10px;
        }

        .rflow-ch {
            width: 62px;
            font-size: 8px;
            padding: 5px 3px;
        }

            .rflow-ch i {
                font-size: 13px;
            }

        .rflow-customers-col {
            padding-right: 5px;
        }

        .rflow-customers {
            padding: 5px 3px;
            font-size: 9px;
        }

            .rflow-customers::after {
                right: -5px;
                width: 5px;
            }

            .rflow-customers i {
                font-size: 13px;
            }

        .rflow-customers-vconn {
            min-height: 6px;
        }

        .rflow-hubs {
            padding-left: 5px;
        }

        .rflow-crm {
            padding: 5px 3px;
        }

            .rflow-crm::before {
                left: -5px;
                width: 5px;
            }

            .rflow-crm i {
                font-size: 13px;
            }

            .rflow-crm strong {
                font-size: 9px;
            }

        .rflow-mkt {
            padding: 5px 3px;
        }

            .rflow-mkt i {
                font-size: 13px;
            }

            .rflow-mkt strong {
                font-size: 9px;
                margin-bottom: 2px;
            }

        .rflow-mkt-chs {
            gap: 3px;
        }

            .rflow-mkt-chs span {
                font-size: 7px;
            }

                .rflow-mkt-chs span i {
                    font-size: 8px;
                }

        .rflow-hconn {
            width: 5px;
        }

        .rflow-return {
            margin-top: 0;
        }

        .rflow-return-line {
            margin-bottom: 4px;
        }
    }
    /* V2: Venue Cards Comparison */
    .v2-section {
        padding: 100px 0 80px;
        background: linear-gradient(170deg, #f8f8fa 0%, #fff 50%, rgba(255,103,163,0.04) 100%);
        position: relative;
    }

        .v2-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff5757, #ff67a2, #ff5757);
            background-size: 200% 100%;
            animation: v2-gradient-slide 4s ease infinite;
        }

    @keyframes v2-gradient-slide {
        0%, 100% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }
    }

    .v2-section-title {
        font-size: 36px;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 12px;
    }

    .v2-section-sub {
        font-size: 17px;
        color: #6c757d;
        margin-bottom: 48px;
    }
    /* Venue pills */
    .v2-pills {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .v2-pill {
        border: 2px solid #e8e8e8;
        background: #fff;
        border-radius: 40px;
        padding: 12px 28px;
        font-size: 14px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
        outline: none;
        white-space: nowrap;
    }

        .v2-pill i {
            margin-right: 8px;
            font-size: 16px;
        }

        .v2-pill:hover {
            border-color: #ff5757;
            color: #ff5757;
            transform: translateY(-2px);
        }

        .v2-pill.active {
            background: linear-gradient(135deg, #ff5757, #ff67a2);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 6px 20px rgba(255,87,87,0.3);
        }
    /* Card grid */
    .v2-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        align-items: start;
    }

    .v2-card {
        background: #fff;
        border-radius: 20px;
        padding: 36px 28px 28px;
        position: relative;
        box-shadow: 0 2px 20px rgba(0,0,0,0.04);
        transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease;
        overflow: hidden;
    }

        .v2-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff5757, #ff67a2);
            transform: scaleX(0.15);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
        }

        .v2-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 56px rgba(0,0,0,0.08);
        }

            .v2-card:hover::before {
                transform: scaleX(1);
            }
    /* Card number watermark */
    .v2-card-num {
        font-size: 64px;
        font-weight: 900;
        background: linear-gradient(135deg, rgba(255,87,87,0.07), rgba(255,103,162,0.03));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 0;
        letter-spacing: -2px;
    }
    /* Card icon */
    .v2-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        background: linear-gradient(135deg, rgba(255,87,87,0.1), rgba(255,103,162,0.06));
        color: #ff5757;
        margin-bottom: 16px;
    }

    .v2-card h5 {
        font-size: 19px;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .v2-card-desc {
        font-size: 14px;
        color: #888;
        line-height: 1.6;
        margin-bottom: 22px;
    }
    /* Bullet list */
    .v2-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .v2-list li {
            padding: 9px 0;
            font-size: 14px;
            color: #4a4a4a;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid #f3f3f3;
            line-height: 1.5;
        }

            .v2-list li:last-child {
                border-bottom: none;
            }

    .v2-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff5757, #ff67a2);
        flex-shrink: 0;
    }
    /* Venue-specific content toggle */
    .v2-venue-content {
        display: none;
    }

        .v2-venue-content.v2-active {
            display: block;
        }
    /* V2 Responsive */
    @media (max-width: 991px) {
        .v2-cards {
            grid-template-columns: 1fr;
            max-width: 520px;
            margin: 0 auto;
        }
    }

    @media (max-width: 575px) {
        .v2-section {
            padding: 60px 0 40px;
        }

        .v2-section-title {
            font-size: 26px;
        }

        .v2-pills {
            gap: 8px;
            overflow-x: auto;
            flex-wrap: nowrap;
            justify-content: flex-start;
            padding-bottom: 8px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

            .v2-pills::-webkit-scrollbar {
                display: none;
            }

        .v2-pill {
            flex-shrink: 0;
            padding: 10px 20px;
            font-size: 13px;
        }

        .v2-card {
            padding: 28px 20px 20px;
            border-radius: 16px;
        }

        .v2-card-num {
            font-size: 48px;
        }
    }

