:root {
    --brand: #0c7a5e;
    --brand-strong: #075f4e;
    --brand-deep: #06443e;
    --brand-soft: #e9f8f2;
    --brand-soft-2: #f5fcfa;
    --accent: #126f9b;
    --accent-light: #9ed8e8;
    --accent-soft: #eef8fc;
    --success: #087a4b;
    --blue: #126f9b;
    --blue-strong: #0b5278;
    --blue-soft: #eaf6fb;
    --purple: #5b3b8f;
    --purple-strong: #41266f;
    --purple-soft: #f2eef9;
    --danger: #b42318;
    --warning: #b54708;
    --ink: #13282b;
    --ink-soft: #32474d;
    --muted: #6a777b;
    --surface: #ffffff;
    --surface-soft: #f6faf9;
    --border: #dce9e6;
    --border-strong: #c2d8d3;
    --shadow-xs: 0 2px 8px rgba(6, 68, 62, .05);
    --shadow-sm: 0 8px 24px rgba(6, 68, 62, .08);
    --shadow-md: 0 16px 44px rgba(6, 68, 62, .11);
    --shadow-lg: 0 28px 70px rgba(6, 68, 62, .16);
    --radius-sm: .75rem;
    --radius: 1rem;
    --radius-lg: 1.4rem;
    --radius-xl: 2rem;
    --nav-height: 76px;
    --chrome-font: "Manrope", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
    min-height: 100%;
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 15%, rgba(12, 122, 94, .045), transparent 24rem),
        linear-gradient(180deg, #f7fcfa 0%, #eff7f5 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
main { min-height: calc(100vh - 190px); }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-strong); }
::selection { background: rgba(12, 122, 94, .18); color: var(--brand-deep); }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 3000;
    padding: .7rem 1rem;
    border-radius: .7rem;
    background: #fff;
    color: var(--brand-deep);
    box-shadow: var(--shadow-md);
    font-weight: 800;
    transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* Header and navigation */
.app-navbar {
    min-height: var(--nav-height);
    padding: .55rem 0;
    background:
        radial-gradient(circle at 15% -80%, rgba(255,255,255,.18), transparent 38%),
        linear-gradient(118deg, var(--brand-deep) 0%, var(--brand-strong) 47%, var(--brand) 100%);
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 34px rgba(5, 55, 50, .21);
    backdrop-filter: blur(16px);
    font-family: var(--chrome-font);
}
.app-navbar::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 4%, rgba(158,216,232,.8) 42%, rgba(255,255,255,.55) 50%, rgba(158,216,232,.8) 58%, transparent 96%);
    opacity: .65;
}
.app-navbar-inner { position: relative; z-index: 1; }
.app-brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    min-width: 0;
    margin-right: 1.25rem;
    padding: .15rem 0;
    color: #fff !important;
    text-decoration: none;
}
.brand-copy { min-width: 0; line-height: 1.05; }
.brand-copy strong {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.brand-copy small {
    display: block;
    margin-top: .28rem;
    color: rgba(255,255,255,.82);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.brand-logo-shell {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #e9f3f1);
    border: 2px solid rgba(255,255,255,.88);
    box-shadow:
        0 8px 17px rgba(4, 46, 43, .32),
        inset 0 2px 3px rgba(255,255,255,.9),
        inset 0 -4px 9px rgba(8, 82, 77, .12);
    transform: perspective(300px) rotateX(2deg) rotateY(-3deg);
}
.brand-logo-shell::before {
    content: "";
    position: absolute;
    inset: 4%;
    z-index: 2;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(18,111,155,.45);
    pointer-events: none;
}
.brand-logo-shell::after {
    content: "";
    position: absolute;
    z-index: 3;
    width: 80%;
    height: 35%;
    top: 4%;
    left: 10%;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.56), transparent);
    pointer-events: none;
}
.brand-logo-shell img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.brand-logo-shell-sm { width: 52px; height: 52px; }

.app-nav-list .nav-link,
.btn-nav-signout {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 42px;
    padding: .58rem .78rem;
    border: 1px solid transparent;
    border-radius: .82rem;
    color: rgba(255,255,255,.86);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.app-nav-list svg,
.btn-nav-signout svg,
.mobile-app-nav svg,
.btn-with-icon svg,
.step-icon svg {
    width: 1.08rem;
    height: 1.08rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.app-nav-list .nav-link:hover,
.app-nav-list .nav-link:focus-visible,
.app-nav-list .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.13);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.11);
}
.app-nav-list .nav-link.active::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: .28rem;
    height: 2px;
    border-radius: 10px;
    background: var(--accent-light);
    box-shadow: 0 0 9px rgba(158,216,232,.8);
}
.btn-nav-signout {
    color: var(--brand-deep);
    background: linear-gradient(180deg, #fff, #edf7f4);
    border-color: rgba(255,255,255,.9);
    box-shadow: 0 7px 16px rgba(4,46,43,.16);
}
.btn-nav-signout:hover { color: var(--brand); transform: translateY(-2px); background: #fff; }
.app-menu-button {
    width: 46px;
    height: 44px;
    padding: .55rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: .85rem;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.app-menu-button:focus { box-shadow: 0 0 0 .22rem rgba(255,255,255,.18); }

/* Global surfaces */
.card,
.form-control,
.form-select,
.btn,
.alert { border-radius: var(--radius); }
.card {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-sm);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.card:not(.no-hover-card):hover { border-color: rgba(12,122,94,.2); box-shadow: var(--shadow-md); }
.card-header {
    background: linear-gradient(180deg, #fff, #fbfefd);
    border-bottom: 1px solid var(--border);
}
.card-footer { border-top-color: var(--border); }

.btn {
    position: relative;
    overflow: hidden;
    min-height: 45px;
    padding: .7rem 1.1rem;
    border-width: 1px;
    font-weight: 780;
    letter-spacing: -.005em;
    box-shadow: var(--shadow-xs);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
    -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active,
.btn.is-pressed { transform: translateY(1px) scale(.985); box-shadow: 0 2px 7px rgba(6,68,62,.12); }
.btn:focus-visible { box-shadow: 0 0 0 .25rem rgba(12,122,94,.18), var(--shadow-sm); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    border-color: var(--brand-strong);
    box-shadow: 0 10px 22px rgba(12,122,94,.22);
}
.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, #11916f 0%, #075346 100%);
    border-color: var(--brand-deep);
    box-shadow: 0 14px 28px rgba(12,122,94,.28);
}
.btn-outline-primary { color: var(--brand); border-color: rgba(12,122,94,.5); background: #fff; }
.btn-outline-primary:hover { color: #fff; background: var(--brand); border-color: var(--brand); }
.btn-light { color: var(--ink-soft); background: #fff; }
.btn-light:hover { color: var(--brand); background: var(--brand-soft-2); border-color: var(--border-strong) !important; }
.btn-lg { min-height: 54px; padding: .86rem 1.35rem; border-radius: 1rem; font-size: 1rem; }
.btn-sm { min-height: 36px; padding: .45rem .75rem; border-radius: .72rem; font-size: .8rem; }
.btn-with-icon { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; }
.btn-with-icon svg { width: 1.15rem; height: 1.15rem; }
.ripple-wave {
    position: absolute;
    z-index: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,.42);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple .58s ease-out forwards;
}
.btn-light .ripple-wave,
.nav-link .ripple-wave,
.paper-box .ripple-wave { background: rgba(12,122,94,.14); }
@keyframes ripple { to { opacity: 0; transform: translate(-50%, -50%) scale(18); } }

.form-label {
    margin-bottom: .48rem;
    color: #314a4d;
    font-size: .88rem;
    font-weight: 780;
}
.form-control,
.form-select {
    min-height: 50px;
    border: 1px solid #d1e1de;
    background-color: #fff;
    color: var(--ink);
    font-size: .95rem;
    box-shadow: inset 0 1px 2px rgba(6,68,62,.025);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}
.form-control:hover,
.form-select:hover { border-color: #a8c7c1; }
.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    background-color: #fff;
    box-shadow: 0 0 0 .23rem rgba(12,122,94,.11), 0 8px 18px rgba(6,68,62,.05);
}
.form-control::placeholder { color: #90a09f; }
.form-text { color: #708286; font-size: .78rem; }
textarea.form-control { min-height: 110px; }

.app-alert {
    position: relative;
    display: flex;
    align-items: center;
    gap: .75rem;
    min-height: 58px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    box-shadow: var(--shadow-md);
}
.alert-indicator { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 12%, transparent); }
.notification-stack { position: relative; z-index: 15; }

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 690px;
    padding: 5.3rem 0 5rem;
    background:
        linear-gradient(125deg, rgba(255,255,255,.98) 0%, rgba(244,250,249,.96) 50%, rgba(237,247,246,.9) 100%);
    border-bottom: 1px solid var(--border);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .55;
    background-image:
        linear-gradient(rgba(12,122,94,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12,122,94,.035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to right, #000, transparent 84%);
}
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 700px;
    height: 700px;
    right: -260px;
    top: -230px;
    border-radius: 50%;
    border: 105px solid rgba(12,122,94,.045);
    box-shadow: 0 0 0 70px rgba(18,111,155,.035), 0 0 0 145px rgba(12,122,94,.022);
}
.hero-container { z-index: 2; }
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-orb-one { width: 240px; height: 240px; left: -120px; bottom: -70px; background: radial-gradient(circle, rgba(18,111,155,.16), transparent 70%); }
.hero-orb-two { width: 170px; height: 170px; left: 48%; top: 8%; background: radial-gradient(circle, rgba(12,122,94,.1), transparent 70%); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 36px;
    padding: .4rem .7rem;
    border: 1px solid rgba(12,122,94,.11);
    border-radius: 999px;
    color: var(--brand-strong);
    background: rgba(255,255,255,.76);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(12px);
    font-size: .76rem;
    font-weight: 800;
}
.hero-badge-divider { width: 1px; height: 18px; background: var(--border-strong); }
.live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #0c8a55; box-shadow: 0 0 0 5px rgba(12,138,85,.1); }
.live-dot::after { content: ""; position: absolute; inset: -4px; border: 1px solid rgba(12,138,85,.4); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(.8); opacity: .2; } 50% { transform: scale(1.35); opacity: .7; } }
.organization-kicker {
    color: var(--brand);
    font-size: clamp(.78rem, 1.2vw, .94rem);
    font-weight: 850;
    letter-spacing: .105em;
    line-height: 1.45;
    text-transform: uppercase;
}
.hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.65rem, 5.3vw, 5.1rem);
    font-weight: 900;
    line-height: .99;
    letter-spacing: -.062em;
}
.hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, var(--brand) 5%, #126f9b 58%, #5b3b8f 100%);
    background-clip: text;
    -webkit-background-clip: text;
}
.hero-lead { max-width: 700px; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.16rem); line-height: 1.82; }
.btn-glass { color: var(--brand-strong); border: 1px solid rgba(12,122,94,.18); background: rgba(255,255,255,.72); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.btn-glass:hover { color: var(--brand); background: #fff; border-color: rgba(12,122,94,.3); }
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 2.2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(12,122,94,.1);
}
.hero-trust-row > div { min-width: 145px; padding: .15rem 1.4rem .15rem 0; margin-right: 1.4rem; border-right: 1px solid var(--border); }
.hero-trust-row > div:last-child { border-right: 0; }
.hero-trust-row strong { display: block; color: var(--brand-strong); font-size: 1.03rem; font-weight: 900; }
.hero-trust-row span { display: block; color: var(--muted); font-size: .75rem; font-weight: 650; }
.hero-emblem-stage { position: relative; display: grid; min-height: 470px; place-items: center; }
.emblem-halo {
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(12,122,94,.11);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.9), rgba(233,247,243,.42) 56%, transparent 57%);
    box-shadow: 0 0 0 28px rgba(12,122,94,.025), 0 0 0 58px rgba(18,111,155,.025);
}
.emblem-halo::before,
.emblem-halo::after { content: ""; position: absolute; inset: 9%; border: 1px dashed rgba(18,111,155,.34); border-radius: 50%; animation: spinSlow 28s linear infinite; }
.emblem-halo::after { inset: -8%; border-color: rgba(12,122,94,.12); animation-direction: reverse; animation-duration: 38s; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero-logo-card {
    position: relative;
    z-index: 2;
    width: min(380px, 84vw);
    aspect-ratio: 1;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(227,241,237,.94));
    box-shadow:
        0 40px 70px rgba(8,82,77,.2),
        0 12px 25px rgba(6,68,62,.12),
        inset 0 3px 6px rgba(255,255,255,.98),
        inset 0 -12px 24px rgba(12,122,94,.1);
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
    transition: transform .4s ease, box-shadow .4s ease;
}
.hero-logo-card:hover { transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(-6px); box-shadow: 0 48px 90px rgba(8,82,77,.24), inset 0 3px 6px rgba(255,255,255,.98); }
.hero-logo-card::before { content: ""; position: absolute; inset: 8px; z-index: 2; border: 2px solid rgba(18,111,155,.48); border-radius: 50%; pointer-events: none; }
.hero-logo-card::after { content: ""; position: absolute; top: 4%; left: 15%; z-index: 3; width: 70%; height: 27%; border-radius: 50%; background: linear-gradient(180deg, rgba(255,255,255,.72), transparent); pointer-events: none; }
.hero-logo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; transform: scale(1.01); }
.hero-logo-glow { position: absolute; inset: -18px; z-index: -1; border-radius: 50%; background: radial-gradient(circle at 50% 70%, rgba(18,111,155,.28), rgba(12,122,94,.1) 52%, transparent 70%); filter: blur(18px); }
.floating-chip {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: .7rem;
    min-width: 170px;
    padding: .78rem .95rem;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 1rem;
    background: rgba(255,255,255,.87);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    animation: floatChip 4s ease-in-out infinite;
}
.floating-chip strong { display: block; color: var(--ink-soft); font-size: .82rem; font-weight: 850; line-height: 1.2; }
.floating-chip small { display: block; margin-top: .15rem; color: var(--muted); font-size: .68rem; white-space: nowrap; }
.floating-chip-top { top: 11%; right: -1%; }
.floating-chip-bottom { left: -5%; bottom: 10%; animation-delay: -2s; }
.chip-icon { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #16a36a, #087a4b); box-shadow: 0 8px 15px rgba(8,122,75,.2); font-weight: 900; }
@keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Home content */
.process-section { position: relative; background: rgba(255,255,255,.62); }
.section-heading { max-width: 700px; }
.eyebrow { display: inline-block; margin-bottom: .45rem; color: var(--brand); font-size: .74rem; font-weight: 850; letter-spacing: .105em; text-transform: uppercase; }
.section-title { margin-bottom: .55rem; color: var(--ink); font-weight: 900; letter-spacing: -.035em; }
.section-heading .section-title { font-size: clamp(1.85rem, 3vw, 2.6rem); }
.section-heading p { color: var(--muted); }
.step-card { position: relative; isolation: isolate; height: 100%; min-height: 270px; overflow: hidden; padding: 1.65rem; }
.step-card::before { content: ""; position: absolute; z-index: -1; width: 190px; height: 190px; right: -85px; bottom: -95px; border-radius: 50%; background: radial-gradient(circle, rgba(12,122,94,.095), transparent 67%); transition: transform .3s ease; }
.step-card:hover { transform: translateY(-8px); }
.step-card:hover::before { transform: scale(1.25); }
.step-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.1rem; }
.step-number { color: rgba(12,122,94,.2); font-size: 2rem; font-weight: 950; letter-spacing: -.07em; }
.step-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(12,122,94,.1); border-radius: 1rem; color: var(--brand); background: var(--brand-soft); box-shadow: inset 0 1px 0 #fff; }
.step-icon svg { width: 1.5rem; height: 1.5rem; stroke-width: 1.7; }
.step-card h3 { margin-bottom: .65rem; font-size: 1.16rem; font-weight: 850; }
.step-card p { margin: 0; color: var(--muted); }
.step-line { position: absolute; left: 1.65rem; bottom: 0; width: 68px; height: 4px; border-radius: 6px 6px 0 0; background: linear-gradient(90deg, var(--brand), var(--accent)); transition: width .3s ease; }
.step-card:hover .step-line { width: calc(100% - 3.3rem); }
.showcase-card { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.showcase-content { background: linear-gradient(145deg, #fff, #f6fbfa); }
.guidance-list { display: grid; gap: .85rem; }
.guidance-list > div { display: grid; grid-template-columns: 38px 1fr; gap: .85rem; align-items: start; }
.guidance-list > div > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: .7rem; color: var(--brand); background: var(--brand-soft); font-size: .7rem; font-weight: 900; }
.guidance-list p { margin: .1rem 0 0; color: var(--muted); }
.payment-panel { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--brand-deep), var(--brand) 68%, #5b3b8f); }
.payment-panel::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 88% 10%, rgba(158,216,232,.22), transparent 28%), radial-gradient(circle at 15% 95%, rgba(255,255,255,.1), transparent 30%); }
.payment-panel-grid { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 28px 28px; }
.payment-panel .section-title { color: #fff; }
.payment-panel p { color: rgba(255,255,255,.72); line-height: 1.8; }
.payment-features { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.payment-features span { padding: .42rem .68rem; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); font-size: .72rem; font-weight: 700; }
.onebill-mark { display: inline-flex; align-items: center; gap: .25rem; width: max-content; padding: .3rem .56rem; border: 1px solid rgba(255,255,255,.08); border-radius: .58rem; color: #fff; background: #131019; box-shadow: 0 7px 15px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.1); font-size: .84rem; font-weight: 950; letter-spacing: -.035em; line-height: 1; }
.onebill-mark b { color: #f4b400; font-size: 1.1em; }
.onebill-mark-lg { padding: .55rem .78rem; border-radius: .8rem; font-size: 1.12rem; }

/* Page headings */
.page-head {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 2.8rem 0 2.55rem;
    background:
        radial-gradient(circle at 88% 10%, rgba(18,111,155,.15), transparent 22rem),
        linear-gradient(132deg, #f6fbfa 0%, #eaf6f4 55%, #fff 100%);
    border-bottom: 1px solid var(--border);
}
.page-head::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 410px;
    height: 410px;
    right: -145px;
    top: -285px;
    border: 58px solid rgba(12,122,94,.045);
    border-radius: 50%;
}
.page-head::after { content: ""; position: absolute; z-index: -1; left: 0; bottom: 0; width: 130px; height: 3px; background: linear-gradient(90deg, var(--brand), var(--accent)); }
.page-head h1 { margin: 0 0 .35rem; color: var(--ink); font-size: clamp(1.8rem, 3.4vw, 2.75rem); font-weight: 900; line-height: 1.08; letter-spacing: -.048em; }
.page-head p { font-size: .96rem; }
.admin-body .page-head { background: radial-gradient(circle at 88% 10%, rgba(12,122,94,.09), transparent 22rem), linear-gradient(132deg, #f1f8f6, #fff); }

/* Application, status and content components */
.paper-option { position: relative; display: block; }
.paper-option input { position: absolute; opacity: 0; pointer-events: none; }
.paper-option .paper-box {
    position: relative;
    overflow: hidden;
    min-height: 92px;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 1rem;
    background: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-xs);
    transition: border-color .17s ease, background .17s ease, transform .17s ease, box-shadow .17s ease;
    -webkit-tap-highlight-color: transparent;
}
.paper-option .paper-box:hover { border-color: rgba(12,122,94,.42); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.paper-option input:focus-visible + .paper-box { box-shadow: 0 0 0 .25rem rgba(12,122,94,.13); }
.paper-option input:checked + .paper-box { border-color: var(--brand); background: linear-gradient(145deg, #fff, var(--brand-soft)); box-shadow: 0 0 0 3px rgba(12,122,94,.08), var(--shadow-sm); }
.paper-check { display: grid; width: 25px; height: 25px; flex: 0 0 auto; place-items: center; border: 2px solid #aebfbc; border-radius: 50%; color: transparent; background: #fff; font-size: .75rem; font-weight: 900; transition: all .17s ease; }
.paper-option input:checked + .paper-box .paper-check { color: #fff; background: var(--brand); border-color: var(--brand); box-shadow: 0 4px 10px rgba(12,122,94,.25); }
.summary-list dt { margin-bottom: .25rem; color: var(--muted); font-size: .84rem; font-weight: 650; }
.summary-list dd { margin-bottom: .72rem; color: var(--ink-soft); font-weight: 820; }
.status-timeline { position: relative; padding-left: 1.9rem; }
.status-timeline::before { content: ""; position: absolute; left: .5rem; top: .5rem; bottom: .5rem; width: 2px; border-radius: 2px; background: #d6e3e1; }
.status-step { position: relative; margin-bottom: 1.45rem; }
.status-step:last-child { margin-bottom: 0; }
.status-step::before { content: ""; position: absolute; left: -1.82rem; top: .2rem; width: .95rem; height: .95rem; border: 3px solid #fff; border-radius: 50%; background: #cadad7; box-shadow: 0 0 0 2px #cadad7; }
.status-step.done::before { background: var(--brand); box-shadow: 0 0 0 2px var(--brand), 0 4px 10px rgba(12,122,94,.22); }
.status-step.done::after { content: ""; position: absolute; left: -1.48rem; top: .48rem; width: .27rem; height: .16rem; border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(-45deg); }
.info-tile { position: relative; isolation: isolate; overflow: hidden; height: 100%; padding: 1.35rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.info-tile::after { content: ""; position: absolute; z-index: -1; width: 115px; height: 115px; right: -55px; bottom: -62px; border-radius: 50%; background: rgba(12,122,94,.06); }
.info-tile strong { display: block; margin: .15rem 0; color: var(--brand-strong); font-size: 1.75rem; font-weight: 950; letter-spacing: -.04em; }
.stat-card { position: relative; overflow: hidden; border: 0; }
.stat-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -42px; top: -45px; border-radius: 50%; background: linear-gradient(135deg, rgba(12,122,94,.12), rgba(18,111,155,.08)); }
.stat-card:hover { transform: translateY(-5px); }
.stat-card .stat-value { color: var(--brand-strong); font-size: 2rem; font-weight: 950; letter-spacing: -.05em; }
.code-number { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; letter-spacing: .025em; }
.payment-paid { color: var(--success); font-weight: 850; }
.payment-pending { color: var(--warning); font-weight: 850; }
.badge { padding: .46rem .67rem; border-radius: 999px; font-weight: 750; letter-spacing: .01em; }

/* Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: 0 0 var(--radius) var(--radius);
    scrollbar-width: thin;
    scrollbar-color: rgba(12,122,94,.28) transparent;
    -webkit-overflow-scrolling: touch;
}
.table { --bs-table-bg: transparent; margin-bottom: 0; }
.table thead th {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--border-strong);
    color: #5c7074;
    background: #f5faf9;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.table tbody td { padding: .95rem 1rem; border-bottom-color: #e8f0ee; vertical-align: middle; }
.table-hover > tbody > tr { transition: background .16s ease, box-shadow .16s ease; }
.table-hover > tbody > tr:hover > * { --bs-table-bg-state: rgba(12,122,94,.035); }
.table tbody tr:last-child td { border-bottom: 0; }
.table code { color: var(--brand); }

/* Footer */
.app-footer {
    position: relative;
    overflow: hidden;
    padding: 1.8rem 0;
    color: rgba(255,255,255,.68);
    background: linear-gradient(120deg, #043631, var(--brand-deep) 55%, #3d2365);
    border-top: 1px solid rgba(255,255,255,.08);
    font-family: var(--chrome-font);
    font-size: .84rem;
}
.app-footer::before { content: ""; position: absolute; width: 340px; height: 340px; right: -160px; top: -250px; border: 50px solid rgba(255,255,255,.035); border-radius: 50%; }
.footer-main { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.brand-logo-shell-footer { width: 48px; height: 48px; border-width: 1px; }
.footer-brand strong { display: block; color: #fff; font-size: .92rem; font-weight: 800; letter-spacing: -.015em; }
.footer-brand small,
.footer-copy small { display: block; color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 600; }
.footer-copy { text-align: right; }
.footer-copy span { display: block; color: rgba(255,255,255,.86); font-size: .82rem; font-weight: 600; }
.developer-credit {
    display: inline-block;
    margin-top: .3rem;
    color: #75e0cb;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .015em;
    text-decoration: none;
    transition: color .2s ease, text-shadow .2s ease;
}
.developer-credit:hover,
.developer-credit:focus-visible { color: #fff; text-shadow: 0 0 14px rgba(117,224,203,.55); }
.mobile-app-nav { display: none; }

/* Challan */
.challan-sheet { max-width: 1000px; margin: auto; }
.challan-copy { overflow: hidden; border: 1px solid #c4d8d4; border-radius: 1.15rem; background: #fff; box-shadow: var(--shadow-md); }
.challan-head { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 1.25rem 1.4rem; border-bottom: 1px solid #d1e1de; background: linear-gradient(135deg, #fff, #eef8f6); }
.challan-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand)); }
.challan-brand { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.challan-brand-logo { width: 70px; height: 70px; }
.challan-brand-copy strong { display: block; color: var(--brand-deep); font-size: 1.03rem; font-weight: 900; line-height: 1.25; }
.challan-brand-copy span { color: var(--muted); font-size: .82rem; }
.challan-grid { display: grid; grid-template-columns: 1fr 1fr; }
.challan-cell { min-width: 0; padding: .72rem .9rem; border-right: 1px solid #dbe7e5; border-bottom: 1px solid #dbe7e5; }
.challan-cell:nth-child(2n) { border-right: 0; }
.challan-cell small { font-size: .72rem; }
.consumer { overflow-wrap: anywhere; color: var(--brand-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: clamp(1.1rem, 3.2vw, 1.55rem); font-weight: 950; letter-spacing: .075em; }
.consumer-panel { padding: 1.05rem; text-align: center; border-bottom: 1px solid #d4e2df; background: linear-gradient(180deg, #fff, #fbf8fd); }
.paper-table { width: 100%; border-collapse: collapse; }
.paper-table th,
.paper-table td { padding: .55rem .65rem; border: 1px solid #d4e1de; text-align: left; }
.paper-table th { color: #415b5f; background: #f2f8f7; font-size: .75rem; text-transform: uppercase; }
.challan-foot { padding: .9rem 1rem; color: #53686c; background: #f7fbfa; font-size: .82rem; }

/* Mobile app navigation and responsive layout */
@media (max-width: 991.98px) {
    :root { --nav-height: 70px; }
    .app-navbar .navbar-collapse { margin-top: .75rem; padding: .7rem; border: 1px solid rgba(255,255,255,.12); border-radius: 1rem; background: rgba(4,54,49,.54); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(18px); }
    .app-nav-list .nav-link,
    .btn-nav-signout { width: 100%; justify-content: flex-start; padding: .72rem .82rem; }
    .app-nav-list .nav-link.active::after { left: .8rem; right: auto; top: 22%; bottom: 22%; width: 3px; height: auto; }
    .hero { min-height: auto; padding: 4rem 0 4.5rem; }
    .hero-copy-column { text-align: center; }
    .hero-badge { margin-inline: auto; }
    .hero-lead { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust-row { justify-content: center; }
    .hero-trust-row > div { padding-inline: 1.2rem; margin: 0; }
    .hero-emblem-stage { min-height: 430px; margin-top: .4rem; }
    .floating-chip-top { right: 7%; }
    .floating-chip-bottom { left: 5%; }
    .page-head .d-flex { align-items: flex-start !important; }
}

@media (max-width: 767.98px) {
    body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); font-size: 14px; }
    .container { --bs-gutter-x: 1.35rem; }
    .app-navbar { min-height: 65px; padding: .42rem 0; }
    .brand-logo-shell-sm { width: 44px; height: 44px; }
    .brand-copy strong { font-size: .96rem; }
    .brand-copy small { font-size: .57rem; letter-spacing: .045em; }
    .app-menu-button { width: 43px; height: 42px; }
    .app-navbar .navbar-collapse { display: none !important; }
    .hero { padding: 3rem 0 3.6rem; }
    .hero::before { background-size: 25px 25px; }
    .hero h1 { font-size: clamp(2.3rem, 12vw, 3.6rem); line-height: 1.02; letter-spacing: -.052em; }
    .organization-kicker { font-size: .69rem; letter-spacing: .075em; }
    .hero-lead { font-size: .96rem; line-height: 1.72; }
    .hero-actions { display: grid !important; grid-template-columns: 1fr; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .hero-trust-row { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
    .hero-trust-row > div { min-width: 0; padding: .1rem .5rem; border-right: 1px solid var(--border); }
    .hero-trust-row strong { font-size: .9rem; }
    .hero-trust-row span { font-size: .64rem; }
    .hero-emblem-stage { min-height: 350px; margin-top: -.4rem; }
    .emblem-halo { width: 300px; height: 300px; }
    .hero-logo-card { width: 275px; padding: 12px; }
    .floating-chip { min-width: 142px; padding: .6rem .7rem; border-radius: .85rem; }
    .floating-chip strong { font-size: .72rem; }
    .floating-chip small { font-size: .6rem; }
    .floating-chip-top { right: 0; top: 7%; }
    .floating-chip-bottom { left: 0; bottom: 6%; }
    .chip-icon { width: 30px; height: 30px; }
    .process-section { padding-top: 3.2rem !important; padding-bottom: 3.2rem !important; }
    .section-heading { margin-bottom: 2rem !important; }
    .step-card { min-height: 230px; padding: 1.35rem; }
    .step-top { margin-bottom: 1.35rem; }
    .showcase-card { border-radius: 1.25rem; }
    .payment-panel { min-height: 330px; }
    .page-head { padding: 2.1rem 0 1.9rem; }
    .page-head h1 { font-size: 1.85rem; }
    .page-head .btn { width: 100%; margin-top: .35rem; }
    .card-body.p-4,
    .card-header.p-4,
    .card-footer.p-4 { padding: 1.15rem !important; }
    .card-body.p-lg-5 { padding: 1.25rem !important; }
    .btn { min-height: 47px; }
    .btn-sm { min-height: 38px; }
    .form-control,
    .form-select { min-height: 51px; font-size: 16px; }
    .table-responsive { border-radius: 0 0 var(--radius) var(--radius); }
    .table { min-width: 720px; }
    .table thead th,
    .table tbody td { padding: .78rem .8rem; }
    .summary-list dt { margin-bottom: .08rem; }
    .summary-list dd { margin-bottom: .9rem; }
    .footer-main { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
    .footer-copy { text-align: left; }
    .app-footer { margin-bottom: 0; padding: 1.5rem 0; }
    .mobile-app-nav {
        position: fixed;
        z-index: 1060;
        left: .65rem;
        right: .65rem;
        bottom: max(.55rem, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: 66px;
        padding: .38rem;
        border: 1px solid rgba(255,255,255,.8);
        border-radius: 1.25rem;
        background: rgba(255,255,255,.91);
        box-shadow: 0 18px 45px rgba(6,68,62,.24), inset 0 1px 0 #fff;
        backdrop-filter: blur(22px) saturate(1.35);
    }
    .mobile-app-nav a {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .18rem;
        min-width: 0;
        padding: .35rem .15rem;
        border-radius: .9rem;
        color: #6b7d80;
        font-size: .62rem;
        font-weight: 760;
        text-decoration: none;
        transition: color .18s ease, background .18s ease, transform .18s ease;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-app-nav a svg { width: 1.28rem; height: 1.28rem; }
    .mobile-app-nav a.active { color: var(--brand); background: var(--brand-soft); }
    .mobile-app-nav a.active::after { content: ""; position: absolute; top: .2rem; width: 17px; height: 3px; border-radius: 999px; background: var(--brand); }
    .mobile-app-nav a:active { transform: scale(.94); }
    .challan-grid { grid-template-columns: 1fr; }
    .challan-cell { border-right: 0; }
    .challan-head { align-items: flex-start; flex-direction: column; }
    .challan-head > .text-end { width: 100%; text-align: left !important; }
    .challan-brand-logo { width: 58px; height: 58px; }
    .challan-brand-copy strong { font-size: .88rem; }
    .paper-table { min-width: 560px; }
    .challan-copy > .p-3 { overflow-x: auto; }
}
    .onebill-logo {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            color: #08783e;
            font-family: Arial, sans-serif;
            font-size: 1.1em;
            font-weight: 800;
            letter-spacing: -0.5px;
            white-space: nowrap;
          }
        
          .onebill-one {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.35em;
            height: 1.35em;
            color: #08783e;
            background: #f8cf22;
            border-radius: 50%;
            line-height: 1;
          }
@media (max-width: 430px) {
    .brand-copy strong { max-width: 190px; }
    .brand-copy small { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .hero-badge { gap: .38rem; padding-inline: .55rem; font-size: .68rem; }
    .hero-emblem-stage { min-height: 320px; }
    .hero-logo-card { width: 245px; }
    .emblem-halo { width: 265px; height: 265px; }
    .floating-chip { min-width: 125px; }
    .floating-chip-bottom { bottom: 0; }
    .floating-chip-top { top: 3%; }
    .floating-chip .onebill-mark { font-size: .7rem; }
    .floating-chip small { max-width: 95px; overflow: hidden; text-overflow: ellipsis; }
    .hero-trust-row span { line-height: 1.2; }
}

@media print {
    @page { margin: 8mm; }
    .no-print,
    .app-navbar,
    .app-footer,
    .mobile-app-nav { display: none !important; }
    body { padding: 0 !important; color: #111; background: #fff; font-size: 12px; }
    main { min-height: 0; }
    .card { border-color: #bbb; box-shadow: none; }
    .challan-sheet { max-width: none; padding: 0 !important; }
    .challan-copy { border: 1.5px solid #333; border-radius: 0; box-shadow: none; }
    .challan-head { padding: 9px 11px; background: #fff; }
    .challan-brand-logo { width: 54px; height: 54px; }
    .challan-cell { padding: 5px 8px; }
    .consumer { font-size: 1.12rem; }
    .consumer-panel { padding: 7px; }
    .paper-table th,
    .paper-table td { padding: 5px; }
    .challan-foot { padding: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (max-width: 767.98px) {
    .app-menu-button { display: none; }
}
@media (max-width: 767.98px) {
    .mobile-app-nav.admin-five { grid-template-columns: repeat(5, 1fr); }
    .mobile-app-nav.admin-five a { font-size: .57rem; }
    .mobile-app-nav.admin-six { grid-template-columns: repeat(6, 1fr); }
    .mobile-app-nav.admin-six a { font-size: .52rem; }
    .mobile-app-nav.admin-six a svg { width: 1.12rem; height: 1.12rem; }
}

/* Green / blue / purple professional palette — design-only override */
body {
    background:
        radial-gradient(circle at 8% 12%, rgba(12,122,94,.075), transparent 25rem),
        radial-gradient(circle at 92% 10%, rgba(18,111,155,.055), transparent 23rem),
        radial-gradient(circle at 84% 92%, rgba(91,59,143,.04), transparent 24rem),
        linear-gradient(180deg, #f8fcfb 0%, #eff7f5 100%);
}

.app-navbar {
    background:
        radial-gradient(circle at 16% -75%, rgba(255,255,255,.17), transparent 38%),
        linear-gradient(112deg, #042b38 0%, #07505a 48%, #123a5d 100%);
    border-bottom-color: rgba(103,218,197,.28);
    box-shadow: 0 12px 34px rgba(3,32,46,.27);
}
.app-navbar::after {
    background: linear-gradient(90deg, transparent 3%, rgba(75,210,185,.9) 31%, rgba(104,183,220,.88) 70%, transparent 97%);
}
.btn-nav-signout {
    background: linear-gradient(180deg, #ffffff, #eef8f5);
    box-shadow: 0 7px 16px rgba(4,54,49,.17);
}

.btn-primary {
    background: linear-gradient(135deg, #0c7a5e 0%, #08705c 54%, #126f9b 100%);
    border-color: #075f4e;
    box-shadow: 0 10px 22px rgba(12,122,94,.23);
}
.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #11916f 0%, #08705c 48%, #0b5278 100%);
    border-color: #06443e;
    box-shadow: 0 14px 28px rgba(12,122,94,.29);
}
.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--brand), var(--blue));
    border-color: var(--brand);
}

.hero {
    background:
        linear-gradient(125deg, rgba(255,255,255,.98) 0%, rgba(239,250,246,.97) 44%, rgba(232,246,250,.94) 72%, rgba(243,238,250,.9) 100%);
}
.hero::after {
    border-color: rgba(12,122,94,.05);
    box-shadow: 0 0 0 70px rgba(18,111,155,.035), 0 0 0 145px rgba(91,59,143,.025);
}
.hero-orb-one { background: radial-gradient(circle, rgba(12,122,94,.18), transparent 70%); }
.hero-orb-two { background: radial-gradient(circle, rgba(91,59,143,.13), transparent 70%); }
.hero h1 span {
    background: linear-gradient(100deg, #08705c 4%, #0f7f8f 48%, #126f9b 66%, #5b3b8f 100%);
    background-clip: text;
    -webkit-background-clip: text;
}
.emblem-halo {
    border-color: rgba(18,111,155,.14);
    background: radial-gradient(circle, rgba(255,255,255,.94), rgba(231,247,241,.54) 47%, rgba(232,246,250,.34) 58%, transparent 59%);
    box-shadow: 0 0 0 28px rgba(12,122,94,.03), 0 0 0 58px rgba(91,59,143,.025);
}
.emblem-halo::before { border-color: rgba(18,111,155,.38); }
.emblem-halo::after { border-color: rgba(91,59,143,.16); }
.hero-logo-card {
    background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(228,244,238,.95) 62%, rgba(235,243,250,.94));
    box-shadow:
        0 40px 70px rgba(6,68,62,.2),
        0 12px 25px rgba(18,111,155,.11),
        inset 0 3px 6px rgba(255,255,255,.98),
        inset 0 -12px 24px rgba(12,122,94,.1);
}
.hero-logo-card:hover { box-shadow: 0 48px 90px rgba(6,68,62,.23), 0 15px 32px rgba(91,59,143,.09), inset 0 3px 6px rgba(255,255,255,.98); }
.hero-logo-card::before { border-color: rgba(18,111,155,.5); }
.hero-logo-glow { background: radial-gradient(circle at 48% 72%, rgba(12,122,94,.26), rgba(18,111,155,.13) 45%, rgba(91,59,143,.09) 59%, transparent 72%); }

.process-grid > div:nth-child(1) .step-icon { color: var(--brand); background: var(--brand-soft); border-color: rgba(12,122,94,.12); }
.process-grid > div:nth-child(1) .step-line { background: linear-gradient(90deg, var(--brand), #32aa82); }
.process-grid > div:nth-child(2) .step-icon { color: var(--blue); background: var(--blue-soft); border-color: rgba(18,111,155,.14); }
.process-grid > div:nth-child(2) .step-line { background: linear-gradient(90deg, var(--blue), #4aa9c8); }
.process-grid > div:nth-child(2) .step-card::before { background: radial-gradient(circle, rgba(18,111,155,.10), transparent 67%); }
.process-grid > div:nth-child(3) .step-icon { color: var(--purple); background: var(--purple-soft); border-color: rgba(91,59,143,.14); }
.process-grid > div:nth-child(3) .step-line { background: linear-gradient(90deg, var(--purple), #8a69b7); }
.process-grid > div:nth-child(3) .step-card::before { background: radial-gradient(circle, rgba(91,59,143,.10), transparent 67%); }

.guidance-list > div:nth-child(2) > span { color: var(--blue); background: var(--blue-soft); }
.guidance-list > div:nth-child(3) > span { color: var(--purple); background: var(--purple-soft); }
.guidance-list > div:nth-child(4) > span { color: var(--blue-strong); background: linear-gradient(135deg, var(--brand-soft), var(--blue-soft)); }

.payment-panel {
    background: linear-gradient(145deg, #053f38 0%, #08705c 43%, #126f9b 76%, #5b3b8f 112%);
}
.payment-panel::before {
    background: radial-gradient(circle at 88% 10%, rgba(169,143,219,.24), transparent 30%), radial-gradient(circle at 12% 95%, rgba(96,205,164,.16), transparent 32%);
}

.page-head {
    background:
        radial-gradient(circle at 88% 10%, rgba(91,59,143,.11), transparent 22rem),
        radial-gradient(circle at 8% 90%, rgba(12,122,94,.10), transparent 18rem),
        linear-gradient(132deg, #f6fcfa 0%, #eaf7f3 48%, #eaf5fa 78%, #f5f1fa 100%);
}
.page-head::after { width: 180px; background: linear-gradient(90deg, var(--brand), var(--blue), var(--purple)); }
.admin-body .page-head {
    background: radial-gradient(circle at 88% 10%, rgba(18,111,155,.1), transparent 22rem), linear-gradient(132deg, #eef8f5, #f2f8fb 68%, #f7f3fb);
}

.stat-card::after { background: linear-gradient(135deg, rgba(12,122,94,.13), rgba(18,111,155,.10), rgba(91,59,143,.08)); }

.app-footer {
    background: linear-gradient(115deg, #031d29 0%, #063842 52%, #102d4c 100%);
    border-top-color: rgba(103,218,197,.24);
}

.challan-head {
    background: linear-gradient(135deg, #ffffff 0%, #eef8f5 54%, #eef6fa 82%, #f5f1fa 100%);
}
.challan-head::after { background: linear-gradient(90deg, var(--brand), var(--blue), var(--purple)); }
.consumer-panel { background: linear-gradient(180deg, #ffffff, #f2faf7 55%, #f1f7fa); }

@media (max-width: 991.98px) {
    .app-navbar .navbar-collapse { background: rgba(4,54,49,.64); }
}
@media (max-width: 767.98px) {
    .mobile-app-nav {
        border-color: rgba(255,255,255,.86);
        background: rgba(251,255,253,.93);
        box-shadow: 0 18px 45px rgba(6,68,62,.22), inset 0 1px 0 #fff;
    }
    .mobile-app-nav a.active {
        color: var(--brand);
        background: linear-gradient(135deg, var(--brand-soft), var(--blue-soft));
    }
    .mobile-app-nav a.active::after { background: linear-gradient(90deg, var(--brand), var(--blue)); }
}


/* Preserve the existing clean monochrome challan print layout. */
@media print {
    body { padding: 0 !important; color: #111; background: #fff !important; font-size: 12px; }
    .challan-head { padding: 9px 11px; background: #fff !important; }
    .challan-head::after { background: #333 !important; }
    .consumer-panel { background: #fff !important; }
}


/* Payment status colors */
.payment-paid {
    color: #28a745 !important;
    font-weight: 600;
}

.payment-pending {
    color: #dc3545 !important;
    font-weight: 600;
}

.btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

.btn-success:hover {
    background-color: #218838 !important;
    border-color: #1e7e34 !important;
}

.btn-secondary.disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

/* Status timeline */
.status-timeline {
    position: relative;
    padding-left: 20px;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e4eeeb;
}

.status-step {
    position: relative;
    padding: 10px 0 10px 20px;
    opacity: 0.5;
}

.status-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1e1de;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #d1e1de;
}

.status-step.done {
    opacity: 1;
}

.status-step.done::before {
    background: var(--brand);
    box-shadow: 0 0 0 1px var(--brand);
}

.status-step strong {
    display: block;
    font-size: 14px;
}

.status-step small {
    font-size: 12px;
}

/* Notification print styles */
@media print {
    .no-print {
        display: none !important;
    }
    .notification-container {
        border: none !important;
        padding: 20px !important;
    }
    .filter-section {
        display: none !important;
    }
}
