﻿/* ============================================
   Cashit.in — homeindexpage.css
   Design system: forest green #1A3C2E + mint #4CAF82
   Fonts: Syne (headings) + DM Sans (body)
   Safe alongside: bootstrap, normalize, main style.css,
   animate, font-awesome, select2, owl, meanmenu,
   magnific, slick, datepicker
   ============================================ */

/* ============================================
   TOKENS
   ============================================ */
:root {
    --csh-bg: #F5F3EE;
    --csh-surface: #FFFFFF;
    --csh-accent: #1A3C2E;
    --csh-accent2: #4CAF82;
    --csh-muted: #7A7A6E;
    --csh-border: #E0DDD6;
    --csh-text: #1C1C18;
    --csh-r-card: 20px;
    --csh-r-btn: 999px;
    --csh-sh-sm: 0 2px 12px rgba(0,0,0,.06);
    --csh-sh-md: 0 8px 32px rgba(0,0,0,.10);
    --csh-ff-head: 'Syne', 'Sora', sans-serif;
    --csh-ff-body: 'DM Sans', sans-serif;
    --csh-tr: .22s cubic-bezier(.4,0,.2,1);
}

/* ============================================
   HERO BANNER
   ============================================ */
.banner-section {
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--csh-accent) 0%, #163323 50%, #0d1f16 100%);
    overflow: hidden;
}

    .banner-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(76,175,130,.20) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 80% 30%, rgba(26,60,46,.25) 0%, transparent 60%);
        animation: heroBgPulse 8s ease-in-out infinite alternate;
        pointer-events: none;
    }

    .banner-section::after {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(76,175,130,.07);
        top: -140px;
        right: -100px;
        pointer-events: none;
    }

@keyframes heroBgPulse {
    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* ---- Slides ---- */
.hero-slides {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: heroFade 10s ease-in-out infinite;
}

    .hero-slide.slide-1 {
        animation-delay: 0s;
    }

    .hero-slide.slide-2 {
        animation-delay: 5s;
    }

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    8% {
        opacity: 1;
        transform: translateY(0);
    }

    45% {
        opacity: 1;
        transform: translateY(0);
    }

    55% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.hero-slide-inner {
    text-align: center;
    padding: 0 20px;
    max-width: 720px;
}

.hero-tag {
    display: inline-block;
    background: rgba(76,175,130,.18);
    color: var(--csh-accent2);
    border: 1px solid rgba(76,175,130,.38);
    font-family: var(--csh-ff-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: var(--csh-r-btn);
    margin-bottom: 20px;
}

.hero-slide-inner h2 {
    color: #fff;
    font-family: var(--csh-ff-head);
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -1.5px;
    margin: 0 0 16px;
    text-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.hero-slide-inner p {
    color: rgba(255,255,255,.68);
    font-family: var(--csh-ff-body);
    font-size: clamp(.9rem, 2vw, 1.05rem);
    margin: 0;
    line-height: 1.65;
}

/* ---- Search Bar ---- */
.hero-search-wrap {
    position: relative;
    z-index: 10;
    padding: 0 20px 40px;
    display: flex;
    justify-content: center;
}

.hero-search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--csh-r-btn);
    box-shadow: 0 12px 48px rgba(0,0,0,.28);
    overflow: hidden;
    width: 100%;
    max-width: 700px;
    min-height: 56px;
}

/* City button */
.city-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    height: 56px;
    color: var(--csh-text);
    font-family: var(--csh-ff-body);
    font-weight: 600;
    font-size: .88rem;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    transition: background var(--csh-tr);
    border-radius: var(--csh-r-btn) 0 0 var(--csh-r-btn);
}

    .city-btn:hover {
        background: rgba(76,175,130,.08);
        color: var(--csh-accent);
        text-decoration: none;
    }

    .city-btn .fa-map-marker {
        color: var(--csh-accent2);
        font-size: 1rem;
    }

    .city-btn .fa-angle-down {
        color: #aaa;
        font-size: .8rem;
        margin-left: 2px;
    }

.search-divider {
    width: 1px;
    height: 28px;
    background: var(--csh-border);
    flex-shrink: 0;
}

.search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 18px;
    min-width: 0;
}

    .search-input-wrap .search-icon {
        color: #bbb;
        font-size: .95rem;
        flex-shrink: 0;
        margin-right: 10px;
    }

.hero-search-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-family: var(--csh-ff-body) !important;
    font-size: .95rem;
    color: var(--csh-text);
    width: 100%;
    height: 56px;
    padding: 0;
}

    .hero-search-input::placeholder {
        color: #bbb;
    }

/* Mobile */
@media (max-width: 600px) {
    .banner-section {
        min-height: 380px;
    }

    .hero-slides {
        min-height: 260px;
    }

    .hero-search-box {
        border-radius: 16px;
        flex-wrap: wrap;
        min-height: auto;
        overflow: visible;
    }

    .city-btn {
        border-radius: 16px 16px 0 0;
        border-bottom: 1px solid var(--csh-border);
        width: 100%;
        height: 46px;
    }

    .search-divider {
        display: none;
    }

    .search-input-wrap {
        width: 100%;
        padding: 0 14px;
    }

    .hero-search-input {
        height: 44px;
    }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.csh-trust-strip {
    background: var(--csh-surface);
    border-bottom: 1px solid var(--csh-border);
    padding: 13px 0;
}

.csh-trust-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.csh-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--csh-ff-body);
    font-size: .76rem;
    font-weight: 600;
    color: var(--csh-muted);
    padding: 6px 14px;
    border-radius: var(--csh-r-btn);
    background: var(--csh-bg);
    border: 1px solid var(--csh-border);
}

    .csh-trust-chip span {
        font-size: .95rem;
    }

/* ============================================
   CATEGORY SECTION
   ============================================ */
.banner-below {
    padding: 64px 0 48px;
    background: var(--csh-bg) !important;
}

    .banner-below .main-head {
        margin-bottom: 38px;
    }

        .banner-below .main-head h1 {
            font-family: var(--csh-ff-head) !important;
            font-weight: 800 !important;
            color: var(--csh-text) !important;
            letter-spacing: -1px;
            margin-bottom: 8px;
        }

        .banner-below .main-head p {
            color: var(--csh-muted) !important;
            font-size: 1rem;
            margin: 0;
        }

.home-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.home-list-inner {
    flex: 0 1 calc(25% - 20px);
    min-width: 160px;
    padding: 2px;
}

    .home-list-inner .brand {
        border: 2px solid var(--csh-border);
        border-radius: var(--csh-r-card);
        padding: 28px 16px 20px;
        text-align: center;
        transition: all var(--csh-tr);
        background: var(--csh-surface);
        cursor: pointer;
    }

        .home-list-inner .brand:hover {
            transform: translateY(-5px);
            border-color: var(--csh-accent2);
            box-shadow: var(--csh-sh-md);
        }

        .home-list-inner .brand img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            margin: 0 auto 14px;
            display: block;
        }

        .home-list-inner .brand .view label {
            font-family: var(--csh-ff-head) !important;
            font-weight: 700 !important;
            font-size: .84rem !important;
            color: var(--csh-accent) !important;
            cursor: pointer;
            margin: 0;
        }

/* ============================================
   PRODUCT LISTING SECTIONS
   ============================================ */
.list-sec-wrp {
    padding: 52px 0;
    background: var(--csh-bg) !important;
}

    .list-sec-wrp + .list-sec-wrp {
        border-top: 1px solid var(--csh-border) !important;
    }

.headinmain {
    margin-bottom: 28px;
}

    .headinmain h3 {
        font-family: var(--csh-ff-head) !important;
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--csh-text);
        position: relative;
        padding-bottom: 10px;
        margin: 0;
    }

        .headinmain h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 44px;
            height: 3px;
            background: var(--csh-accent2);
            border-radius: 2px;
        }

/* Item card */
.service-box1 {
    background: var(--csh-surface);
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    border: 2px solid var(--csh-border);
    transition: all var(--csh-tr);
    cursor: pointer;
    margin-bottom: 16px;
}

    .service-box1:hover {
        transform: translateY(-4px);
        box-shadow: var(--csh-sh-sm);
        border-color: var(--csh-accent2);
    }

    .service-box1 .overflow-sec {
        margin-bottom: 10px;
    }

    .service-box1 img,
    .service-box1 input[type="image"] {
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    .service-box1 .title-medium-dark,
    .service-box1 .short-title {
        font-family: var(--csh-ff-body) !important;
        font-size: .82rem;
        font-weight: 600;
        color: var(--csh-text);
        margin: 0;
    }

.item-content {
    padding-top: 8px;
}

/* ============================================
   HOW IT WORKS TABS
   ============================================ */
.how-section-tab {
    padding: 80px 0;
    background: var(--csh-surface);
}

    .how-section-tab .main-head {
        margin-bottom: 52px;
    }

        .how-section-tab .main-head h2 {
            font-family: var(--csh-ff-head) !important;
            font-weight: 800 !important;
            color: var(--csh-text) !important;
            letter-spacing: -1px;
            margin-bottom: 8px;
        }

        .how-section-tab .main-head p {
            color: var(--csh-muted) !important;
            font-size: .96rem;
            margin: 0;
        }

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.tab-wrap-inner {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.tab-content {
    display: none;
}

    .tab-content.tab-show {
        display: block;
    }

.taglist figure {
    position: relative;
    display: inline-block;
    margin: 0;
}

.taglist .mob-2 {
    width: 190px;
    border-radius: 22px;
    display: block;
}

.taglist .mob-1 {
    width: 148px;
    border-radius: 18px;
    position: absolute;
    right: -44px;
    bottom: -22px;
    box-shadow: var(--csh-sh-md);
    display: block;
}

.tab-title-wrp {
    flex: 1;
    min-width: 260px;
}

.tab-titles {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .tab-titles li {
        border-left: 3px solid var(--csh-border);
        padding: 16px 20px;
        margin-bottom: 12px;
        border-radius: 0 var(--csh-r-card) var(--csh-r-card) 0;
        transition: border-color var(--csh-tr), background var(--csh-tr);
    }

        .tab-titles li.active,
        .tab-titles li:hover {
            border-left-color: var(--csh-accent2);
            background: #EAF7EF;
        }

        .tab-titles li a {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            text-decoration: none;
            color: inherit;
        }

.icon-left {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--csh-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--csh-ff-head);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 2px;
}

.icon-right-matter h3 {
    font-family: var(--csh-ff-head) !important;
    font-size: .92rem;
    font-weight: 700;
    color: var(--csh-text);
    margin-bottom: 4px;
    margin-top: 0;
}

.icon-right-matter p {
    font-family: var(--csh-ff-body);
    font-size: .86rem;
    color: var(--csh-muted);
    margin: 0;
}

/* ============================================
   PARALLAX INFO SECTIONS
   ============================================ */
.paralax-sections {
    padding: 72px 0;
    overflow: hidden;
}

    .paralax-sections.first-row {
        background: var(--csh-bg);
    }

    .paralax-sections.para-section2 {
        background: var(--csh-surface);
    }

    .paralax-sections.para-section3 {
        background: var(--csh-bg);
    }

    .paralax-sections .container-fluid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 48px;
    }

    .paralax-sections > .container-fluid > img {
        display: none;
    }

.para-text-left {
    flex: 1;
    min-width: 280px;
}

    .para-text-left h2 {
        font-family: var(--csh-ff-head) !important;
        font-weight: 800 !important;
        color: var(--csh-text) !important;
        letter-spacing: -.5px;
        margin-bottom: 16px;
        font-size: clamp(1.2rem, 3vw, 1.7rem);
    }

    .para-text-left p {
        font-family: var(--csh-ff-body);
        color: var(--csh-muted);
        font-size: .94rem;
        line-height: 1.8;
        margin: 0;
    }

.para-right-img {
    flex: 0 0 300px;
    text-align: center;
}

    .para-right-img img {
        width: 260px;
        border-radius: 16px;
        display: block;
        margin: 0 auto;
    }

/* ============================================
   PARTNERS
   ============================================ */
.partners-section {
    padding: 60px 0;
    background: var(--csh-surface);
}

    .partners-section .gradient-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .partners-section .section-title-dark {
        text-align: center;
        margin-bottom: 32px;
    }

        .partners-section .section-title-dark h2 {
            font-family: var(--csh-ff-head) !important;
            font-weight: 800 !important;
            color: var(--csh-text) !important;
            margin-bottom: 8px;
        }

    .partners-section ul.row {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        padding: 0;
        margin: 0;
    }

    .partners-section li {
        flex: 0 1 200px;
    }

    .partners-section .product-box {
        border: 2px solid var(--csh-border);
        border-radius: 16px;
        padding: 22px;
        text-align: center;
        transition: all var(--csh-tr);
        background: var(--csh-bg);
    }

        .partners-section .product-box:hover {
            box-shadow: var(--csh-sh-sm);
            border-color: var(--csh-accent2);
            transform: translateY(-2px);
        }

        .partners-section .product-box img {
            max-height: 48px;
            object-fit: contain;
            margin: 0 auto;
            display: block;
        }

/* ============================================
   BLOG SECTION
   ============================================ */
#blog {
    padding: 0;
    background: none;
}

.blog-wrp {
    padding: 72px 0;
    background: var(--csh-bg) !important;
}

    .blog-wrp .section-title-dark {
        margin-bottom: 32px;
    }

        .blog-wrp .section-title-dark h2 {
            font-family: var(--csh-ff-head) !important;
            font-weight: 800 !important;
            color: var(--csh-text) !important;
            letter-spacing: -.5px;
        }

        .blog-wrp .section-title-dark p {
            color: var(--csh-muted) !important;
            font-size: .94rem;
        }

.viewmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: var(--csh-ff-head);
    font-size: .84rem;
    font-weight: 700;
    color: var(--csh-accent2);
    text-decoration: none;
    transition: color var(--csh-tr);
}

    .viewmore:hover {
        color: var(--csh-accent);
    }

.blog-wrp .affa-post figure {
    position: relative;
    border-radius: var(--csh-r-card);
    overflow: hidden;
    margin: 0;
}

    .blog-wrp .affa-post figure img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform .45s ease;
    }

    .blog-wrp .affa-post figure:hover img {
        transform: scale(1.05);
    }

.blog-wrp .post-item-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.78));
    padding: 24px 16px 16px;
    color: #fff;
}

    .blog-wrp .post-item-txt h3 {
        font-family: var(--csh-ff-head) !important;
        font-size: .92rem;
        font-weight: 700;
        margin-bottom: 4px;
        margin-top: 0;
    }

        .blog-wrp .post-item-txt h3 a {
            color: #fff;
            text-decoration: none;
        }

    .blog-wrp .post-item-txt .entry-content {
        font-size: .76rem;
        opacity: .75;
    }

/* ============================================
   CITY SELECT MODAL
   ============================================ */
.cities-view .modal-content {
    border-radius: var(--csh-r-card) !important;
    border: none !important;
    box-shadow: var(--csh-sh-md) !important;
}

.cities-view .modal-header {
    border-bottom: none;
    padding: 16px 20px 0;
}

.cities-view .modal-body {
    padding: 22px 24px;
}

.city-box-wrp h3 {
    font-family: var(--csh-ff-head) !important;
    font-weight: 800 !important;
    font-size: 1.1rem;
    color: var(--csh-text) !important;
    margin-bottom: 20px;
}

.top-cities-list h5, .all-cities-lst h5 {
    font-family: var(--csh-ff-head) !important;
    font-size: .76rem;
    font-weight: 700;
    color: var(--csh-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.top-cities-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.top-cities-list li .city-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 6px;
    display: block;
}

.top-cities-list li h6 {
    font-size: .78rem;
    color: var(--csh-text);
    text-align: center;
    margin: 0;
}

.city-box-search {
    position: relative;
    margin: 20px 0;
}

    .city-box-search .city-img {
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        width: 18px;
        display: block;
    }

    .city-box-search .form-control {
        padding-left: 38px;
        border: 2px solid var(--csh-border) !important;
        border-radius: 12px !important;
        height: 44px;
        font-family: var(--csh-ff-body) !important;
        font-size: .9rem;
        background: var(--csh-bg) !important;
        transition: border-color var(--csh-tr) !important;
    }

        .city-box-search .form-control:focus {
            outline: none !important;
            border-color: var(--csh-accent) !important;
            box-shadow: 0 0 0 3px rgba(26,60,46,.08) !important;
        }

/* ============================================
   SECTION TITLE DARK
   ============================================ */
.section-title-dark {
    margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .home-list-inner {
        flex: 0 1 calc(50% - 20px);
    }

    .tab-wrap {
        flex-direction: column;
    }

    .taglist .mob-1 {
        display: none;
    }

    .para-right-img {
        display: none;
    }

    .paralax-sections .container-fluid {
        flex-direction: column;
    }

    .partners-section li {
        flex: 0 1 140px;
    }
}

@media (max-width: 480px) {
    .home-list-inner {
        flex: 0 1 calc(50% - 10px);
    }

    .banner-section {
        min-height: 364px;
    }
}
/* ============================================================
   cashit-illustrations.css
   Pure CSS phone/device mockups + step illustrations.
   Zero images, zero HTTP requests, fully scalable.
   Include alongside homeindexpage.css
   ============================================================ */

/* ── PHONE MOCKUP (replaces mob-1.png / mob-2.png) ────────── */
.csh-phone {
    display: inline-block;
    position: relative;
    width: 130px;
    border-radius: 22px;
    background: linear-gradient(160deg, #1A3C2E 0%, #0d1f16 100%);
    box-shadow: 0 0 0 3px #2d6b4f, 0 12px 40px rgba(0,0,0,.35);
    padding: 14px 10px;
    vertical-align: bottom;
}

    .csh-phone::before {
        content: '';
        display: block;
        width: 36px;
        height: 5px;
        background: #2d6b4f;
        border-radius: 4px;
        margin: 0 auto 10px;
    }

.csh-phone-screen {
    background: linear-gradient(145deg, #EAF7EF 0%, #d1f0e0 100%);
    border-radius: 14px;
    min-height: 160px;
    padding: 12px 10px 10px;
    overflow: hidden;
    position: relative;
}
    /* Screen content — price display */
    .csh-phone-screen::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #4CAF82;
        border-radius: 2px;
        margin-bottom: 10px;
    }

.csh-phone-badge {
    background: #1A3C2E;
    color: #4CAF82;
    font-family: 'Syne', sans-serif;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 6px;
}

.csh-phone-amount {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1A3C2E;
    line-height: 1;
    margin-bottom: 4px;
}

.csh-phone-model {
    font-size: .62rem;
    font-weight: 500;
    color: #7A7A6E;
}
/* Mini bar chart */
.csh-phone-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 36px;
    margin-top: 10px;
}

    .csh-phone-bars span {
        flex: 1;
        border-radius: 3px 3px 0 0;
        background: #4CAF82;
        opacity: .5;
    }

        .csh-phone-bars span:nth-child(2) {
            height: 50%;
        }

        .csh-phone-bars span:nth-child(3) {
            height: 75%;
        }

        .csh-phone-bars span:nth-child(4) {
            height: 90%;
        }

        .csh-phone-bars span:nth-child(5) {
            height: 60%;
            opacity: 1;
            background: #1A3C2E;
        }

.csh-phone::after {
    content: '';
    display: block;
    width: 28px;
    height: 4px;
    background: #2d6b4f;
    border-radius: 4px;
    margin: 10px auto 0;
}

/* ── FLOATING PHONE PAIR (replaces two-phone hero image) ───── */
.csh-phone-duo {
    position: relative;
    width: 220px;
    height: 240px;
    margin: 0 auto;
    flex-shrink: 0;
}

    .csh-phone-duo .csh-phone {
        position: absolute;
    }

        .csh-phone-duo .csh-phone.phone-back {
            width: 120px;
            top: 20px;
            left: 0;
            opacity: .75;
            transform: rotate(-6deg);
            z-index: 1;
        }

        .csh-phone-duo .csh-phone.phone-front {
            width: 130px;
            bottom: 0;
            right: 0;
            z-index: 2;
            transform: rotate(3deg);
            box-shadow: 0 0 0 3px #2d6b4f, 0 16px 48px rgba(0,0,0,.45);
        }

/* ── STEP ILLUSTRATION (replaces gadget.png, pickup.png, getpaid.png) ── */
.csh-step-illus {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 14px;
    flex-shrink: 0;
}

    .csh-step-illus.step-quote {
        background: #EAF7EF;
    }

    .csh-step-illus.step-pickup {
        background: #EAF7EF;
    }

    .csh-step-illus.step-paid {
        background: #EAF7EF;
    }

/* ── HERO DEVICE ILLUSTRATION (large, replaces banner images) ── */
.csh-hero-device {
    position: relative;
    width: 200px;
    height: 260px;
    margin: 0 auto;
}
    /* Phone body */
    .csh-hero-device::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 28px;
        background: linear-gradient(160deg, #1e4a36 0%, #0d1f16 100%);
        box-shadow: 0 0 0 3px #2d6b4f, 0 20px 60px rgba(0,0,0,.5);
    }
    /* Screen */
    .csh-hero-device::after {
        content: '';
        position: absolute;
        top: 18px;
        left: 12px;
        right: 12px;
        bottom: 20px;
        border-radius: 18px;
        background: linear-gradient(145deg, #EAF7EF 0%, #c8edd8 100%);
    }
/* Notch */
.csh-hero-device-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background: #2d6b4f;
    border-radius: 3px;
    z-index: 2;
}
/* Content inside screen */
.csh-hero-device-content {
    position: absolute;
    top: 36px;
    left: 20px;
    right: 20px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .csh-hero-device-content .hd-label {
        font-family: 'Syne', sans-serif;
        font-size: .6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: #7A7A6E;
        margin-bottom: 4px;
    }

    .csh-hero-device-content .hd-amount {
        font-family: 'Syne', sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        color: #1A3C2E;
        line-height: 1;
    }

    .csh-hero-device-content .hd-sub {
        font-size: .6rem;
        color: #7A7A6E;
        margin-bottom: 10px;
    }

    .csh-hero-device-content .hd-bar {
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, #4CAF82, #1A3C2E);
        border-radius: 2px;
        margin-bottom: 10px;
    }

    .csh-hero-device-content .hd-btn {
        background: #1A3C2E;
        color: #fff;
        border-radius: 99px;
        font-size: .55rem;
        font-weight: 700;
        padding: 4px 12px;
        font-family: 'Syne', sans-serif;
    }

/* ── "HOW IT WORKS" TAB ILLUSTRATIONS ──────────────────────── */
/* Step 1 — Search/quote */
.csh-tab-illus {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    background: #EAF7EF;
    border-radius: 20px;
}

    .csh-tab-illus .ti-inner {
        text-align: center;
    }

    .csh-tab-illus .ti-icon {
        font-size: 4rem;
        line-height: 1;
        margin-bottom: 12px;
    }

    .csh-tab-illus .ti-title {
        font-family: 'Syne', sans-serif;
        font-size: .88rem;
        font-weight: 800;
        color: #1A3C2E;
    }

    .csh-tab-illus .ti-sub {
        font-size: .74rem;
        color: #7A7A6E;
    }

/* ── BLOG CARD PLACEHOLDER (when no image) ──────────────────── */
.csh-blog-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EAF7EF 0%, #d1f0e0 100%);
    font-size: 2.5rem;
}
