

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

:root {
    --page-bg: #dff3e7;
    --panel-bg: #f8fbf9;
    --card-bg: #ffffff;
    --border: #d4ded8;
    --green: #198754;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1a1a1a;
    /* background: var(--page-bg); */
}

.verification-page {
    width: 100%;
    min-height: 100vh;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ================= HEADER ================= */

.hero-heading {
    text-align: center;
    margin-bottom: 30px;
}

.hero-heading h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0b1d24;
    margin-bottom: 8px;
}

.hero-heading p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 13.5px;
    line-height: 1.4;
    color: #333;
    margin-top: 30px;
}

/* ================= MAIN CONTENT ================= */

.main-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 25px;
    align-items: stretch;
    width: 100%;
}

.left-panel {
    width: 100%;
    position: relative;
    padding: 0 5px 22px;
    z-index: 1;
}

.left-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 42px;
    bottom: 0;
    background: rgba(249, 252, 250, 0.94);
    border: 1px solid rgba(216, 226, 220, 0.95);
    border-radius: 14px;
    box-shadow: 0 5px 14px rgba(55, 75, 62, 0.08);
    z-index: -1;
}

/* ================= TOP CARDS ================= */
.top-features {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 32px;
}

.top-feature {
    min-height: 112px;
    background: #ffffff;
    border: 1px solid #cbd7d0;
    border-radius: 13px;
    padding: 15px 8px;
    text-align: center;
    box-shadow: 0 5px 11px rgba(42, 65, 52, 0.17);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top-feature i {
    font-size: 34px;
    color: #171717;
    margin-bottom: 9px;
}

.top-feature .title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

/* ================= PROCESS FLOW ================= */

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 3px;
    gap: 5px;
}

.process-item {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.process-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    background: #ffffff;
    border: 1px solid #d0dcd5;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(35,60,45,0.10);
}

.process-icon i {
    font-size: 19px;
    color: #222;
}

.process-text {
    font-size: 8.5px;
    font-weight: 700;
    line-height: 1.2;
}

.process-arrow {
    color: #7e8b84;
    font-size: 13px;
    margin-top: -15px;
    flex-shrink: 0;
}

/* ================= MIDDLE ================= */

.middle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.small-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.small-card {
    min-height: 88px;
    background: #ffffff;
    border: 1px solid #d7e1db;
    border-radius: 9px;
    padding: 10px 3px;
    text-align: center;
    box-shadow: 0 3px 7px rgba(35,60,45,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.small-card i {
    font-size: 21px;
    margin-bottom: 6px;
}

.small-card span {
    font-size: 7.5px;
    line-height: 1.2;
    font-weight: 700;
}

/* ================= COMPARISON ================= */

.comparison-box {
    background: #ffffff;
    border: 1px solid #d5dfd9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(35,60,45,0.09);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    font-size: 9px;
    font-weight: 800;
    padding: 8px 0;
    border-bottom: 1px solid #edf1ef;
}

.comparison-header .with {
    background: #eaf8f0;
    color: #1b633e;
}

.vs-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #d2dcd6;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 7px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.comparison-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-col {
    padding: 10px;
}

.comparison-col.with {
    background: #f3fcf7;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    font-size: 7.5px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.without-list i {
    color: #dc3545;
    font-size: 9px;
}

.with-list i {
    color: #198754;
    font-size: 9px;
}

/* ================= BOTTOM ================= */

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bottom-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.bottom-card {
    min-height: 88px;
    background: #ffffff;
    border: 1px solid #d7e1db;
    border-radius: 9px;
    padding: 10px 3px;
    text-align: center;
    box-shadow: 0 3px 7px rgba(35,60,45,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bottom-card i {
    font-size: 21px;
    margin-bottom: 5px;
}

.bottom-card span {
    font-size: 7px;
    font-weight: 700;
    line-height: 1.2;
}

/* ================= LEGEND ================= */

.legend-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    align-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 7px;
    font-weight: 700;
}

.legend-icon {
    width: 18px;
    height: 18px;
    border: 1px solid #ccd8d1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    flex-shrink: 0;
}

.legend-icon i {
    font-size: 9px;
    color: #333;
}


/* ===================== RIGHT PANEL ========================= */

.barcode-card {
    position: absolute;
    left: 55px;
    margin-bottom: -197px;
    width: 187px;
    border-radius: 16px;
    background: rgba(248,240,223,0.92);
    color: #1f2b23;
    padding: 10px 12px;
    box-shadow: 0 14px 24px rgba(20,32,20,0.2);
    height: 131px;
}

.barcode-card h4 {
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #4d5b52;
}

.barcode-card p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.15;
    font-weight: 800;
}

.barcode-card .meta {
    margin-top: 9px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.16;
    color: #33423b;
}

.right-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.visual-shell {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 28px;
    background: radial-gradient(circle at 50% 48%, rgba(56,181,86,0.22), transparent 18%),
                linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
    border: 1px solid rgba(141,157,118,0.24);
    box-shadow: 0 18px 40px rgba(55,75,58,0.10);
    padding: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.verification-bg-img {
    position: absolute;
    width: 90%;
    height: 90%;
    object-fit: contain;
    z-index: 1;
    opacity: 0.85;
}

.detail-stack {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 auto;
    margin-left: 20px;
    margin-bottom: 76px;
}

.exact-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    border: 1px solid #d8e4dc;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #111;
}

.exact-card .lbl-title {
    font-size: 7.5px;
    color: #666;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.exact-card .main-val {
    font-size: 11px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.1;
}

.exact-card .meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 8px;
}

.exact-card .meta-row .lbl {
    color: #222;
    font-weight: 700;
}

.exact-card .meta-row .val {
    color: #000;
    font-weight: 800;
    text-align: right;
}

.exact-card .status-green {
    color: #1d8752;
    font-weight: 800;
}

.exact-card .check-circle-icon {
    width: 13px;
    height: 13px;
    background: #73c896;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.exact-card .card-top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.exact-card .green-check-head {
    width: 16px;
    height: 16px;
    background: #198754;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
}

.exact-card .desc-text {
    font-size: 7px;
    color: #333;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 10px;
}

.exact-card .merchant-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    border-top: 1px solid #f0f0f0;
}

.exact-card .merchant-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.exact-card .merchant-logo {
    width: 22px;
    height: 22px;
    background: #cca074;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}

.exact-card .merchant-text {
    display: flex;
    flex-direction: column;
}

.exact-card .merchant-text .m-lbl {
    font-size: 6.5px;
    color: #666;
    font-weight: 600;
}

.exact-card .merchant-text .m-name {
    font-size: 8px;
    color: #000;
    font-weight: 800;
}

/* ================= FOOTER CTA ================= */

.footer-copy {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 8px auto 0;
}

.footer-copy p {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.4;
    color: #233238;
    font-weight: 600;
}

.cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.cta {
    min-width: 150px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
}

.cta.primary {
    color: #fff;
    background: linear-gradient(135deg, #1e8e51, #13663a);
    box-shadow: 0 12px 22px rgba(23,98,58,0.22);
}

.cta.secondary {
    color: #1d6c41;
    background: rgba(255,255,255,0.85);
    border-color: rgba(29,108,65,0.32);
}


/* ================= EXISTING TABLET ================= */

@media (max-width: 992px) {

    .main-content {
        grid-template-columns: 1fr;
    }

}


/* ================= MOBILE RESPONSIVE =================== */

@media (max-width: 768px) {

    .verification-page {
        padding: 20px 12px;
        align-items: flex-start;
    }

    .main-wrapper {
        width: 100%;
    }

    .hero-heading {
        margin-bottom: 22px;
    }

    .hero-heading h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-heading p {
        font-size: 12px;
        line-height: 1.45;
        padding: 0 5px;
    }

    .main-content {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .left-panel {
        width: 100%;
        padding: 0 4px 18px;
    }

    .left-panel::before {
        top: 35px;
        border-radius: 12px;
    }

    .top-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 22px;
    }

    .top-feature {
        min-height: 100px;
        padding: 12px 8px;
    }

    .top-feature i {
        font-size: 30px;
        margin-bottom: 7px;
    }

    .top-feature .title {
        font-size: 11px;
    }

    .process-flow {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px 5px;
        margin-bottom: 22px;
        padding: 0 2px;
    }

    .process-item {
        width: 100%;
    }

    .process-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .process-icon i {
        font-size: 17px;
    }

    .process-text {
        font-size: 8px;
    }

    .process-arrow {
        display: none;
    }

    .middle-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 18px;
    }

    .small-feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 7px;
    }

    .small-card {
        min-height: 82px;
        padding: 8px 2px;
    }

    .small-card i {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .small-card span {
        font-size: 7px;
    }

    .comparison-box {
        width: 100%;
    }

    .comparison-header {
        font-size: 8px;
    }

    .comparison-col {
        padding: 9px 8px;
    }

    .comparison-list li {
        font-size: 7px;
        gap: 4px;
        margin-bottom: 7px;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bottom-feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 7px;
    }

    .bottom-card {
        min-height: 82px;
        padding: 8px 2px;
    }

    .bottom-card i {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .bottom-card span {
        font-size: 6.5px;
    }

    .legend-area {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
        padding: 5px 4px;
    }

    .legend-item {
        font-size: 7px;
    }

    .right-panel {
        width: 100%;
        gap: 18px;
    }

    .visual-shell {
        min-height: 500px;
        padding: 15px;
        border-radius: 22px;
        width: 100%;
    }

    .verification-bg-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .visual-shell > img {
        max-width: 100%;
        height: auto !important;
        max-height: 400px;
        object-fit: contain;
        margin-top: -20px !important;
    }

    .detail-stack {
        width: 90%;
        max-width: 260px;
        margin-left: 0;
        margin-bottom: 45px;
        gap: 12px;
    }

    .exact-card {
        padding: 11px 12px;
    }

    .barcode-card {
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        height: auto;
        min-height: 125px;
        margin-bottom: -160px;
    }
    
    .footer-copy {
        margin-top: 0;
        padding: 0 5px;
    }

    .footer-copy p {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 15px;
    }

    .cta-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .cta {
        width: 100%;
        max-width: 260px;
        min-width: 0;
        padding: 10px 18px;
    }

}


/* ====================== SMALL MOBILE ===================== */

@media (max-width: 480px) {

    .verification-page {
        padding: 15px 8px;
    }

    .hero-heading h1 {
        font-size: 21px;
    }

    .hero-heading p {
        font-size: 11px;
    }

    .top-features {
        gap: 8px;
    }

    .top-feature {
        min-height: 92px;
    }

    .top-feature i {
        font-size: 27px;
    }

    .top-feature .title {
        font-size: 10px;
    }

    .process-flow {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px 3px;
    }

    .process-icon {
        width: 36px;
        height: 36px;
    }

    .process-icon i {
        font-size: 15px;
    }

    .process-text {
        font-size: 7px;
    }

    .small-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .small-card {
        min-height: 78px;
    }

    .small-card i {
        font-size: 18px;
    }

    .small-card span {
        font-size: 7.5px;
    }

    .comparison-header {
        font-size: 7.5px;
    }

    .comparison-col {
        padding: 8px 6px;
    }

    .comparison-list li {
        font-size: 6.7px;
    }

    .bottom-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .bottom-card {
        min-height: 78px;
    }

    .legend-area {
        grid-template-columns: 1fr 1fr;
    }

    .visual-shell {
        min-height: 470px;
        padding: 10px;
    }

    .visual-shell > img {
        max-height: 350px;
    }

    .detail-stack {
        width: 92%;
        margin-bottom: 35px;
    }

    .barcode-card {
        width: 165px;
        min-height: 115px;
        padding: 9px 10px;
    }

    .footer-copy p {
        font-size: 11px;
    }

    .cta {
        max-width: 240px;
        font-size: 11px;
    }

}

