/* ==========================================================================
   EasyPos365 — Design Tokens
   Theme: Cloud POS & Billing for Hotels/Restaurants
   Signature: the "receipt" — line items, dashed tear-lines, mono totals
   ========================================================================== */

:root {
    /* Color */
    --navy: #16233F; /* primary ink — headers, nav */
    --navy-soft: #24345A;
    --teal: #0E7C7B; /* primary accent — CTAs, links, active states */
    --teal-dark: #0A5F5E;
    --amber: #D9A441; /* secondary accent — stamps, badges, highlights */
    --cloud: #F3F6F7; /* page background */
    --paper: #FFFFFF; /* card / "receipt paper" background */
    --slate: #4B5563; /* body text */
    --slate-light: #7A8694;
    --line: #E2E8EC; /* hairlines, dashed tear-lines */
    --line-strong: #C9D2D8;
    --success: #2E8B57;
    /* Type */
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', 'Consolas', monospace;
    /* Layout */
    --max-w: 1180px;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-card: 0 2px 10px rgba(22,35,63,0.06), 0 1px 2px rgba(22,35,63,0.05);
    --shadow-hover: 0 10px 30px rgba(22,35,63,0.12);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--slate);
    background: var(--cloud);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    margin: 0 0 .5em 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 1em 0;
}

a {
    color: var(--teal);
    text-decoration: none;
}

    a:hover {
        color: var(--teal-dark);
    }

img {
    max-width: 100%;
    display: block;
}

ul {
    padding-left: 1.2em;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* Focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Eyebrow / receipt-style labels ---------- */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .eyebrow::before, .eyebrow::after {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--teal);
        opacity: .5;
    }

/* ---------- Dashed tear-line divider (receipt motif) ---------- */
.tear-line {
    border: none;
    border-top: 2px dashed var(--line-strong);
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: var(--teal);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--teal-dark);
        color: #fff;
        box-shadow: var(--shadow-hover);
    }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--line-strong);
}

    .btn-outline:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.2);
        color: #fff;
    }

.btn-block {
    width: 100%;
}

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .85rem;
}

.brand span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links > li {
        position: relative;
    }

    .nav-links a {
        color: var(--navy);
        font-weight: 500;
        font-size: 0.95rem;
        padding: 8px 2px;
    }

        .nav-links a:hover {
            color: var(--teal);
        }

        .nav-links a.active {
            color: var(--teal);
        }


.has-dropdown > a::after {
    content: "\25BE"; 
    font-size: 12px;
    margin-left: 6px;
    color: var(--slate-light);
    display: inline-block;
    transition: transform .3s ease;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    min-width: 240px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .18s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--navy);
}

    .dropdown a:hover {
        background: var(--cloud);
        color: var(--teal);
    }

    .dropdown a small {
        color: var(--slate-light);
        font-weight: 400;
        font-size: .78rem;
    }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
    .nav-toggle span {
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
    }
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 24px 20px;
        border-bottom: 1px solid var(--line);
        display: none;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links > li {
            width: 100%;
        }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: none;
        padding-left: 10px;
        margin-top: 4px;
        background: var(--cloud);
    }

    .has-dropdown.open .dropdown {
        display: flex;
        flex-direction: column;
    }

    .nav-cta {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

    .hero .container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 30px;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .06em;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
    color: #CFE8E7;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 18px;
}

    .hero h1 .accent {
        color: #67D3C9;
    }

.hero p.lead {
    font-size: 1.08rem;
    color: #C7CFDA;
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: .85rem;
    color: #A9B4C4;
}

    .hero-trust span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hero-trust svg {
        flex-shrink: 0;
    }


.receipt {
    background: var(--paper);
    color: var(--navy);
    border-radius: 4px;
    padding: 26px 24px 22px;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    font-family: var(--font-mono);
    position: relative;
    transform: rotate(1.2deg);
}

    .receipt::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -8px;
        height: 16px;
        background: repeating-linear-gradient(-45deg, var(--paper) 0 8px, transparent 8px 16px);
    }

.receipt-head {
    text-align: center;
    margin-bottom: 14px;
}

    .receipt-head b {
        font-family: var(--font-display);
        font-size: 1rem;
        letter-spacing: .04em;
    }

    .receipt-head div {
        font-size: .68rem;
        color: var(--slate-light);
        margin-top: 3px;
    }


#heroReceipt .receipt-line {
    opacity: 0;
    animation: none;
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    padding: 5px 0;
    border-bottom: 1px dashed var(--line);
}
    .receipt-line span:last-child {
        font-weight: 600;
    }

#heroReceipt.play .receipt-line {
    animation: lineIn .45s ease forwards;
}

    #heroReceipt.play .receipt-line:nth-child(2) {
        animation-delay: .15s;
    }

    #heroReceipt.play .receipt-line:nth-child(3) {
        animation-delay: .55s;
    }

    #heroReceipt.play .receipt-line:nth-child(4) {
        animation-delay: .95s;
    }

    #heroReceipt.play .receipt-line:nth-child(5) {
        animation-delay: 1.35s;
    }

#heroReceipt .receipt-total {
    opacity: 0;
    transition: opacity .3s ease;
}

#heroReceipt.play .receipt-total {
    opacity: 1;
    transition-delay: 1.7s;
}

#heroReceipt .receipt-foot {
    opacity: 0;
    transition: opacity .4s ease;
}

#heroReceipt.play .receipt-foot {
    opacity: 1;
    transition-delay: 2.1s;
}

.receipt-total {
    opacity: 0;
    transition: opacity .3s ease;
}

.receipt.play .receipt-total {
    opacity: 1;
    transition-delay: 1.7s;
}

.receipt-foot {
    opacity: 0;
    transition: opacity .4s ease;
}

.receipt.play .receipt-foot {
    opacity: 1;
    transition-delay: 2.1s;
}

.receipt-total {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--navy);
    font-size: 1rem;
    font-weight: 700;
}

    .receipt-total span:last-child {
        color: var(--teal-dark);
    }

.receipt-foot {
    text-align: center;
    font-size: .68rem;
    color: var(--slate-light);
    margin-top: 16px;
    letter-spacing: .05em;
}

@keyframes lineIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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

/* ---------- Sections generic ---------- */
section {
    padding: 84px 0;
}

.section-head {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

    .section-head p {
        color: var(--slate-light);
        font-size: 1.05rem;
    }

.section-alt {
    background: var(--paper);
}

/* ---------- Grids / Cards ---------- */
.grid {
    display: grid;
    gap: 24px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

    .card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
        border-color: var(--line-strong);
    }

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
}

.card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.card p {
    font-size: .93rem;
    color: var(--slate);
    margin-bottom: 0;
}

.card .learn {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    font-size: .88rem;
}

/* palette rotation for icons */
.ic-teal {
    background: var(--teal);
}

.ic-navy {
    background: var(--navy);
}

.ic-amber {
    background: var(--amber);
}

.ic-slate {
    background: var(--slate);
}

/* ---------- Stats strip ---------- */
.stats-strip {
    background: var(--navy);
    color: #fff;
    padding: 40px 0;
}

    .stats-strip .grid-4 {
        text-align: center;
    }

.stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: #67D3C9;
}

.stat span {
    font-size: .85rem;
    color: #A9B4C4;
}






/*==========================
Software Gallery
==========================*/
.software-preview {
    padding: 30px 0;
    background: #f4f9fc;
}

.preview-top {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
    margin-top: 50px;
}

.preview-bottom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.preview-box {
    text-align: center;
}

    .preview-box h3 {
        font-size: 32px;
        margin-bottom: 20px;
        color: #0d1b42;
        font-weight: 700;
    }

   


    .preview-box img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 18px;
        border: 1px solid #ddd;
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

        .preview-box img:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 55px rgba(0,0,0,.18);
        }

.report-box {
    width: 70%;
}

@media(max-width:991px) {

    .preview-top {
        grid-template-columns: 1fr;
    }

    .report-box {
        width: 100%;
    }

    .preview-box img {
        height: auto;
    }
}

/* ---------- Logo strip ---------- */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

    .logo-track:hover {
        animation-play-state: paused;
    }

.logo-item {
    min-width: 220px; /* Sab boxes same width */
    height: 70px; /* Same height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px dashed var(--line-strong);
    border-radius: 12px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

    .logo-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: var(--teal);
        color: var(--teal);
    }

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/* ---------- Testimonial ---------- */
/* =========================
   TESTIMONIAL SLIDER
========================= */

.testimonial-section {
    padding: 80px 0;
    background: var(--cloud);
    overflow: hidden;
}

.testimonial-slider {
    width: 100%;
    max-width: 1180px;
    margin: auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease;
}

.testimonial {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


/* LEFT CONTENT */

.testimonial-left {
    min-width: 0;
}

    .testimonial-left blockquote {
        font-family: var(--font-display);
        font-size: 1.35rem;
        line-height: 1.5;
        margin: 0 0 20px;
        color: white;
    }


    /* AUTHOR */

    .testimonial-left cite {
        font-style: normal;
        color: #A9B4C4;
        font-size: .95rem;
    }

        .testimonial-left cite b {
            display: block;
            color: white;
            font-size: 1rem;
            margin-bottom: 5px;
        }


/* RIGHT METRICS */

.testimonial-right {
    width: 100%;
}

.metric-row {
    margin-bottom: 18px;
}

.metric-label {
    display: flex;
    justify-content: space-between;
    color: #C7CFDA;
    font-size: .9rem;
    margin-bottom: 8px;
}


.metric-bar {
    height: 8px;
    background: rgba(255,255,255,.15);
    border-radius: 20px;
    overflow: hidden;
}


.metric-fill {
    height: 100%;
    background: linear-gradient( 90deg, #67D3C9, var(--teal) );
    border-radius: 20px;
}


/* MOBILE */

@media(max-width:900px) {

    .testimonial {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
}
.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}
/* ---------- Pricing ---------- */
.price-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .price-card.featured {
        border: 2px solid var(--teal);
        box-shadow: var(--shadow-hover);
    }

.price-tag {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--amber);
    color: #fff;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

.price-card h3 {
    margin-bottom: 4px;
}

.price-card .price-sub {
    color: var(--slate-light);
    font-size: .88rem;
    margin-bottom: 18px;
}

.price-amount {
    font-family: var(--font-mono);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

    .price-amount span {
        font-size: 1rem;
        font-weight: 500;
        color: var(--slate-light);
    }

.price-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 26px;
    flex-grow: 1;
}

    .price-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0;
        border-bottom: 1px dashed var(--line);
    }

        .price-list li:last-child {
            border-bottom: none;
        }
        .price-list li::before {
            content: "\f00c"; /* Check icon */
            font: var(--fa-font-solid);
            color: #22c55e;
            font-size: 15px;
            margin-right: 10px;
        }

       
/* ---------- FAQ accordion ---------- */
.faq-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
}

    .faq-q::after {
        content: "+";
        font-size: 1.3rem;
        color: var(--teal);
        transition: transform .2s ease;
        flex-shrink: 0;
        margin-left: 12px;
    }

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding: 0 22px;
    font-size: .93rem;
    color: var(--slate);
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 20px;
}

/* ---------- Forms ---------- */
.form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    display: block;
    margin-bottom: 6px;
}

input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: .95rem;
    margin-bottom: 18px;
    background: #fff;
    color: var(--navy);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--teal);
    }

.form-note {
    font-size: .8rem;
    color: var(--slate-light);
}

.form-success {
    display: none;
    background: #E9F6EF;
    color: var(--success);
    border: 1px solid #BFE6CF;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: .9rem;
    margin-bottom: 18px;
}

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

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--teal-dark), var(--teal));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
}

    .cta-band h2 {
        color: #fff;
        margin-bottom: 10px;
    }

    .cta-band p {
        color: rgba(255,255,255,0.88);
        max-width: 520px;
        margin: 0 auto 26px;
    }

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

/* ---------- Location chips ---------- */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: .88rem;
    color: var(--navy);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy);
    color: #B9C2D0;
    padding: 60px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .footer-grid h4 {
        color: #fff;
        font-size: .95rem;
        margin-bottom: 16px;
    }

    .footer-grid ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-grid li {
        margin-bottom: 10px;
    }

    .footer-grid a {
        color: #B9C2D0;
        font-size: .9rem;
    }

        .footer-grid a:hover {
            color: #67D3C9;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    font-size: .82rem;
    color: #8994A6;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 14px;
}

/* ---------- Breadcrumb / page hero (inner pages) ---------- */
.page-hero {
    background: linear-gradient(180deg, var(--navy), var(--navy-soft));
    color: #fff;
    padding: 60px 0 70px;
    text-align: center;
}

    .page-hero h1 {
        color: #fff;
    }

    .page-hero p {
        color: #C7CFDA;
        max-width: 600px;
        margin: 0 auto;
    }

/* ---------- Utility ---------- */
.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.badge-soft {
    display: inline-block;
    background: rgba(14,124,123,0.1);
    color: var(--teal-dark);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .receipt {
        margin: 0 auto;
        transform: rotate(0);
        max-width: 320px;
    }

    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .testimonial {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .grid-4, .grid-3 {
        grid-template-columns: 1fr;
    }

    section {
        padding: 56px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 36px 22px;
    }
}




















.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
}

    .popup-overlay.show {
        opacity: 1;
        visibility: visible;
    }



@keyframes popup {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box {
    position: relative; /* <-- Ye line add karo */
    width: 620px;
    height: 360px;
    max-width: 90%;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    animation: popup .35s ease;
}
.popup-left {
    width: 42%;
    padding: 28px;
    background: #fff;
}

.popup-right {
    width: 58%;
    background: #eef6ff;
}

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

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
}

    .popup-close:hover {
        background: #f3f4f6;
    }

.popup-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

.tag {
    color: #ff7b00;
    font-weight: 700;
}

@media(max-width:768px) {

    .popup-box {
        flex-direction: column;
    }

    .popup-left,
    .popup-right {
        width: 100%;
    }
}