html,
body {
    font-family: "Outfit", "Segoe UI", Tahoma, sans-serif;
    color: #1f2937;
    background: linear-gradient(180deg, #e8ebf0 0%, #e4e7ed 100%);
}

a,
.btn-link {
    color: #0f4fc6;
}

.tb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Outfit", "Segoe UI", Tahoma, sans-serif;
    font-weight: 600;
}

.module-shell {
    display: grid;
    gap: 0.95rem;
}

.module-head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.module-head h2,
.module-head .subtext {
    display: none;
}

.subtext {
    color: #5e6774;
    font-size: 0.86rem;
}

.surface {
    background: #f7f9fc;
    border: 1px solid #cfd7e2;
    border-radius: 0.48rem;
    box-shadow: 0 4px 14px rgba(19, 30, 46, 0.08);
    padding: 1rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.tb-metrics-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.tb-expense-strip,
.tb-invoice-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tb-metric-card {
    border: 1px solid #d1d8e2;
    border-radius: 0.42rem;
    background: #ffffff;
    padding: 0.72rem 0.86rem;
    box-shadow: 0 2px 10px rgba(16, 28, 42, 0.06);
}

.tb-metric-label {
    margin: 0;
    color: #4a5668;
    font-size: 0.76rem;
    font-weight: 600;
}

.tb-metric-value {
    margin: 0.2rem 0 0;
    color: #16263c;
    font-size: 1.12rem;
    font-weight: 700;
}

.tb-expense-report-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.tb-expense-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
}

.tb-expense-category-card {
    border: 1px solid #d1d8e2;
    border-radius: 0.42rem;
    background: #ffffff;
    padding: 0.75rem 0.86rem;
    box-shadow: 0 2px 10px rgba(16, 28, 42, 0.06);
    display: grid;
    gap: 0.45rem;
    justify-items: flex-start;
}

.kpi-card {
    border: 1px solid #d2d7df;
    border-radius: 0.34rem;
    padding: 0.82rem 0.9rem;
    background: #ffffff;
}

.kpi-card .label {
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6a7280;
    font-weight: 700;
}

.kpi-card .value {
    margin-top: 0.12rem;
    font-size: 1.95rem;
    line-height: 1.15;
    font-weight: 700;
    color: #1448b3;
}

.kpi-grid .kpi-card:nth-child(even) .value {
    color: #0d8f58;
}

.list-toolbar {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    flex-wrap: wrap;
}

.tb-table-toolbar {
    border-bottom: 1px solid #d8dfe9;
    padding-bottom: 0.62rem;
}

.tb-search-box {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: min(450px, 100%);
}

.tb-search-box i {
    color: #607189;
    font-size: 0.9rem;
}

.tb-toolbar-filters {
    display: flex;
    align-items: end;
    gap: 0.52rem;
    flex-wrap: wrap;
}

.tb-filter-item {
    display: grid;
    gap: 0.18rem;
}

.tb-filter-item > span {
    color: #5b6677;
    font-size: 0.72rem;
    font-weight: 600;
}

.tb-mini-select {
    min-width: 185px;
    min-height: 2.05rem;
    font-size: 0.8rem;
}

.tb-toolbar-select {
    min-width: 195px;
    min-height: 2.05rem;
    font-size: 0.82rem;
}

.list-toolbar .form-control,
.list-toolbar .form-select {
    max-width: 440px;
    min-height: 2.2rem;
}

.table-wrap {
    overflow: auto;
    border: 1px solid #ccd4df;
    border-radius: 0.44rem;
    background: #fff;
}

.table {
    margin-bottom: 0;
    background: #fff;
}

.table > :not(caption) > * > * {
    border-bottom-width: 1px;
    border-color: #d4dae3;
    padding: 0.62rem 0.76rem;
    font-size: 0.9rem;
}

.table thead th {
    background: #e7ecf4;
    font-size: 0.78rem;
    color: #223043;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 1px solid #d2d9e5;
}

.table tbody tr:hover {
    background: #f8fafc;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    background: #e8f6ef;
    color: #0a8f58;
}

.status-pill.status-paid {
    background: #e8f6ef;
    color: #0a8f58;
}

.status-pill.status-overdue {
    background: #fff1f1;
    color: #b42318;
}

.status-pill.status-unpaid {
    background: #fff7df;
    color: #9a6700;
}

.section-title {
    margin: 0 0 0.72rem;
    font-size: 1.03rem;
    color: #1d2633;
}

.compact-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
    align-items: end;
}

.compact-form .span-2 {
    grid-column: span 2;
}

.compact-form .span-4 {
    grid-column: span 4;
}

.form-label {
    margin-bottom: 0.3rem;
    color: #3f4a59;
    font-size: 0.8rem;
    font-weight: 600;
}

.form-control,
.form-select {
    border-color: #bfc9d8;
    border-radius: 0.32rem;
    min-height: 2.2rem;
    font-size: 0.88rem;
}

.form-control::placeholder {
    color: #7d8796;
}

.tb-auth-shell {
    position: fixed;
    top: 4.3rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    background: transparent;
}

.tb-auth-modal {
    width: min(560px, 100%);
    min-height: auto;
    max-height: calc(100dvh - 6.25rem);
    background: #f8fbff;
    border: 1px solid #cad6e6;
    border-radius: 0.85rem;
    box-shadow: 0 24px 52px rgba(15, 31, 53, 0.34);
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.tb-auth-header {
    padding: 1.1rem 1.2rem 0.85rem;
    border-bottom: 1px solid #d6e0ec;
    background: #ffffff;
    display: grid;
    gap: 0.8rem;
}

.tb-auth-brand {
    display: grid;
    align-items: start;
    gap: 0.18rem;
    width: fit-content;
    text-decoration: none;
}

.tb-auth-brand img {
    height: 2.35rem;
    width: auto;
    display: block;
}
    .tb-auth-brand-md img {
        height: 2.35rem;
        width: 250px;
        height:auto;
        display: block;
    }
.tb-auth-brand-tagline {
    color: #355173;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.tb-auth-tabs {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd8e7;
    border-radius: 999px;
    padding: 0.2rem;
    background: #edf3fb;
    width: fit-content;
}

.tb-auth-tab {
    min-width: 96px;
    text-align: center;
    text-decoration: none;
    color: #274463;
    font-weight: 700;
    font-size: 0.84rem;
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
}

.tb-auth-tab.is-active {
    color: #062a53;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(18, 38, 62, 0.12);
}

.tb-auth-body {
    padding: 1.3rem 1.2rem 1.6rem;
    display: grid;
    gap: 0.75rem;
    align-content: start;
    flex: 1;
}

.tb-auth-body h1 {
    margin: 0;
    color: #132c48;
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    line-height: 1.16;
}

.tb-auth-body p {
    margin: 0;
    color: #4a617d;
    line-height: 1.55;
}

.tb-auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.tb-auth-links a {
    text-decoration: none;
    color: #1f4f95;
    font-weight: 700;
    font-size: 0.79rem;
    border: 1px solid #c9d6e8;
    border-radius: 999px;
    padding: 0.16rem 0.58rem;
    background: #f2f7ff;
}

.tb-auth-links a:hover {
    color: #143f7f;
    background: #e8f1ff;
}

.tb-auth-form {
    display: grid;
    gap: 0.62rem;
}

.tb-auth-field {
    display: grid;
    gap: 0.24rem;
}

.tb-auth-form .btn {
    min-height: 2.5rem;
    border-radius: 0.62rem;
}

.tb-auth-footnote {
    margin-top: 0.15rem;
    color: #50657f;
    font-size: 0.84rem;
}

.tb-auth-footnote a {
    text-decoration: none;
    color: #0f4fb0;
    font-weight: 700;
}

.tb-auth-footnote a:hover {
    color: #0a428f;
}

@media (max-width: 768px) {
    .tb-auth-shell {
        top: 4.6rem;
        padding: 0.6rem;
    }

    .tb-auth-modal {
        min-height: auto;
        max-height: calc(100dvh - 5.8rem);
        border-radius: 0.72rem;
    }
}

.public-page {
    min-height: 100vh;
    padding: 1rem;
    background:
        radial-gradient(circle at 10% 20%, rgba(17, 88, 204, 0.13), transparent 44%),
        radial-gradient(circle at 84% 14%, rgba(12, 161, 97, 0.14), transparent 36%),
        linear-gradient(180deg, #edf1f6 0%, #e5eaf2 100%);
}

.public-header {
    max-width: 1120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.public-brand {
    text-decoration: none;
    color: #1d2b3d;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.public-link {
    text-decoration: none;
    color: #324255;
    border: 1px solid #c8d1dd;
    border-radius: 0.38rem;
    padding: 0.31rem 0.62rem;
    font-size: 0.82rem;
    font-weight: 600;
    background: #f7f9fc;
}

.public-link:hover {
    background: #eef2f8;
    color: #1e2c3f;
}

.public-hero {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 0.95rem;
}

.public-copy,
.public-card,
.public-content {
    border: 1px solid #cfd8e5;
    border-radius: 0.62rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(28, 44, 66, 0.11);
    padding: 1.1rem;
}

.public-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.19rem 0.52rem;
    border-radius: 999px;
    background: #e7efff;
    color: #1b4daa;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.public-copy h1,
.public-content h1 {
    margin: 0.45rem 0 0.5rem;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    color: #1b2b40;
}

.public-copy p,
.public-content p,
.public-card p {
    color: #425268;
    line-height: 1.55;
}

.public-cta {
    margin-top: 0.85rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.public-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    color: #1b2a3d;
}

.public-card ul {
    margin: 0;
    padding-left: 1rem;
    color: #3f4f64;
}

.public-content-page .public-content {
    max-width: 1120px;
    margin: 0 auto;
}

.public-content-grid {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
}

.tb-legal-shell {
    min-height: 100vh;
    background: linear-gradient(180deg, #f3f6fb 0%, #edf2f8 100%);
}

.tb-legal-top {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0.95rem 0 0.55rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.tb-legal-logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: #13263d;
}

.tb-legal-logo img {
    height: 2.05rem;
    width: auto;
    display: block;
}

.tb-legal-mobile-link {
    text-decoration: none;
    border: 0;
    border-radius: 0;
    color: #25384d;
    font-size: 0;
    padding: 0;
    background: transparent;
}

.tb-legal-mobile-link img {
    height: 2.05rem;
    width: auto;
    display: block;
}

.tb-legal-main {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 1.2rem;
}

.tb-legal-article {
    border: 1px solid #cfd8e6;
    border-radius: 0.7rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(24, 38, 56, 0.09);
    padding: 1rem;
    color: #25384d;
}

.tb-legal-article h1 {
    margin: 0;
    color: #14273d;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.tb-legal-updated {
    margin: 0.4rem 0 0.82rem;
    font-size: 0.81rem;
    font-weight: 600;
    color: #55657a;
}

.tb-legal-article h2 {
    margin: 0.92rem 0 0.34rem;
    color: #1a2e45;
    font-size: 1.02rem;
}

.tb-legal-article p {
    margin: 0;
    line-height: 1.58;
    color: #3d4e63;
}

.tb-legal-article p + p,
.tb-legal-article p + ul,
.tb-legal-article ul + p,
.tb-legal-article ul + ul,
.tb-legal-article h2 + ul,
.tb-legal-article h2 + p {
    margin-top: 0.45rem;
}

.tb-legal-article ul {
    margin: 0;
    padding-left: 1.08rem;
    color: #3d4e63;
    display: grid;
    gap: 0.22rem;
}

.tb-legal-article .privacy-title {
    margin: 0.92rem 0 0.34rem;
    color: #1a2e45;
    font-size: 1.02rem;
    font-weight: 600;
}

.tb-legal-article > .privacy-title:first-of-type {
    margin: 0;
    color: #14273d;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-weight: 700;
}

.tb-legal-article .updated-date {
    margin: 0.4rem 0 0.82rem;
    font-size: 0.81rem;
    font-weight: 600;
    color: #55657a;
}

.tb-legal-article .privacy-content-highlighted,
.tb-legal-article .privacy-para {
    font-weight: 600;
    color: #32465f;
}

.tb-legal-article .privacy-footer {
    margin-top: 0.45rem;
    color: #3d4e63;
    line-height: 1.58;
}

.tb-public-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #162334;
    background:
        radial-gradient(circle at 8% 12%, rgba(10, 78, 170, 0.14), transparent 36%),
        radial-gradient(circle at 92% 22%, rgba(16, 138, 93, 0.12), transparent 32%),
        linear-gradient(180deg, #edf2f8 0%, #e6ecf5 100%);
}

.tb-public-container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.tb-public-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(236, 242, 250, 0.9);
    backdrop-filter: blur(7px);
    border-bottom: 1px solid rgba(175, 187, 205, 0.65);
}

.tb-public-header-inner {
    min-height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.tb-public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    line-height: 0;
}

.tb-public-brand img {
    display: block;
    width: auto;
    height: 2.25rem;
}

.tb-public-brand-mark {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    background: linear-gradient(140deg, #0f56c8, #0d7e59);
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
}

.tb-public-brand-text {
    font-size: 1rem;
    line-height: 1;
}

.tb-public-nav {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    flex-wrap: wrap;
}

.tb-public-nav-link {
    text-decoration: none;
    color: #2f3f53;
    font-weight: 600;
    font-size: 0.84rem;
    border: 1px solid #c9d3e0;
    border-radius: 999px;
    padding: 0.34rem 0.72rem;
    background: rgba(255, 255, 255, 0.82);
}

.tb-public-nav-link:hover {
    color: #1f2f44;
    background: #fff;
}

.tb-public-nav-link.is-active {
    color: #093f90;
    border-color: #8ea7ca;
    background: #eaf0fb;
}

.tb-public-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tb-public-play {
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 0;
    line-height: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.tb-public-play-img {
    display: block;
    width: auto;
    height: 2.2rem;
}

.tb-public-main {
    flex: 1;
    padding: 1rem 0 2.3rem;
}

.tb-public-video-banner {
    margin-top: -1.15rem;
}

.tb-public-video-banner-inner {
    border: 1px solid #cdd7e6;
    border-radius: 0.72rem;
    background: linear-gradient(140deg, #f6f9ff 0%, #eef5ff 100%);
    box-shadow: 0 10px 24px rgba(22, 36, 56, 0.1);
    text-decoration: none;
    color: #1f3149;
    padding: 0.82rem 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.tb-public-video-play {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: linear-gradient(140deg, #0f56c8, #0d7e59);
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-size: 0.84rem;
    flex-shrink: 0;
}

.tb-public-video-banner-inner strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
}

.tb-public-video-banner-inner small {
    display: block;
    margin-top: 0.18rem;
    color: #4a5b71;
    font-size: 0.78rem;
}

.tb-public-breadcrumb {
    margin-bottom: 0.85rem;
    color: #4c5b70;
    font-size: 0.78rem;
    font-weight: 600;
}

.tb-public-hero,
.tb-home-hero,
.tb-home-stats,
.tb-home-section,
.tb-public-footer-cta,
.tb-public-policy,
.tb-public-contact-grid,
.tb-public-category-tabs,
.tb-public-faq-list,
.tb-public-blog-grid,
.tb-public-card-grid,
.tb-public-section {
    border: 1px solid #ccd6e5;
    border-radius: 0.74rem;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 12px 28px rgba(23, 39, 58, 0.1);
}

.tb-public-hero,
.tb-home-hero,
.tb-public-policy,
.tb-public-section,
.tb-public-faq-list,
.tb-public-blog-grid,
.tb-public-card-grid {
    padding: 1.15rem;
}

.tb-public-hero,
.tb-home-hero,
.tb-public-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 0.95rem;
}

.tb-vahan-search-mock {
    border: 1px solid #d2dbe7;
    border-radius: 0.6rem;
    background: #fff;
    padding: 0.92rem;
}

.tb-vahan-search-mock h3 {
    margin: 0 0 0.48rem;
    font-size: 1rem;
    color: #1c2d43;
}

.tb-vahan-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.48rem;
    margin-bottom: 0.45rem;
}

.tb-vahan-search-mock p {
    margin: 0;
    color: #52637a;
    font-size: 0.82rem;
}

.tb-public-kicker,
.tb-home-kicker {
    margin: 0;
    color: #0e4da5;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.73rem;
    letter-spacing: 0.04em;
}

.tb-public-hero h1,
.tb-home-hero h1,
.tb-public-policy h1 {
    margin: 0.42rem 0 0.52rem;
    font-size: clamp(1.45rem, 2.35vw, 2.05rem);
    color: #17263b;
}

.tb-home-highlight {
    margin: 0;
    color: #0f4ea8;
    font-size: clamp(1.25rem, 2.1vw, 1.65rem);
    font-weight: 700;
}

.tb-home-subhead {
    margin: 0;
    color: #1b2d44;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
}

.tb-public-hero p,
.tb-home-subtitle,
.tb-public-policy p,
.tb-public-faq-list p,
.tb-public-blog-grid p,
.tb-public-contact-card p,
.tb-public-section p,
.tb-public-card-grid p {
    margin: 0;
    color: #425266;
    line-height: 1.56;
}

.tb-public-hero-actions,
.tb-home-hero-actions {
    margin-top: 0.9rem;
    display: flex;
    gap: 0.58rem;
    flex-wrap: wrap;
}

.tb-home-hero-copy,
.tb-home-hero-card {
    border: 1px solid #d2dbe8;
    border-radius: 0.6rem;
    padding: 1rem;
    background: #fff;
}

.tb-home-hero-card {
    display: grid;
    place-items: center;
}

.tb-home-hero-image {
    width: 100%;
    max-width: 360px;
    border-radius: 0.55rem;
    border: 1px solid #d4dce8;
    box-shadow: 0 8px 20px rgba(16, 30, 48, 0.12);
}

.tb-public-hero-image-wrap {
    border: 1px solid #d2dbe8;
    border-radius: 0.6rem;
    background: #fff;
    padding: 0.85rem;
    display: grid;
    place-items: center;
}

.tb-public-hero-image {
    width: 100%;
    max-width: 520px;
    border-radius: 0.55rem;
    border: 1px solid #d4dce8;
}

.tb-home-desktop-tag {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid #cdd8e7;
    border-radius: 999px;
    background: #f3f7fd;
    color: #35506f;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 0.2rem 0.56rem;
}

.tb-home-hero-card h3 {
    margin: 0 0 0.45rem;
}

.tb-home-hero-card ul,
.tb-plan-card ul,
.tb-public-card-grid ul,
.tb-public-contact-card ul,
.tb-public-policy ul {
    margin: 0;
    padding-left: 1.05rem;
    color: #39495f;
    display: grid;
    gap: 0.25rem;
}

.tb-home-stats {
    margin-top: 0.9rem;
    padding: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.tb-home-stats article {
    border: 1px solid #d2dbe7;
    border-radius: 0.56rem;
    background: #fff;
    padding: 0.78rem;
    text-align: center;
}

.tb-home-stats h3 {
    margin: 0;
    color: #0b4ba8;
    font-size: 1.35rem;
}

.tb-home-stats p {
    margin: 0.16rem 0 0;
    color: #4d5e74;
    font-size: 0.84rem;
    font-weight: 600;
}

.tb-home-section {
    margin-top: 0.9rem;
}

.tb-home-section-head {
    margin-bottom: 0.75rem;
}

.tb-home-section-head h2,
.tb-public-section h2,
.tb-public-policy h2 {
    margin: 0;
    color: #1a2a3f;
    font-size: 1.2rem;
}

.tb-home-section-head p {
    margin: 0.3rem 0 0;
    color: #46566c;
}

.tb-home-plan-note {
    margin: 0.3rem 0 0;
    color: #44566c;
    font-size: 1rem;
    font-weight: 700;
}

.tb-home-benefits-grid,
.tb-home-plans-grid,
.tb-home-testimonial-grid,
.tb-public-card-grid,
.tb-public-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
}

.tb-home-benefits-grid article,
.tb-home-testimonial-grid article,
.tb-plan-card,
.tb-public-card-grid article,
.tb-public-blog-grid article,
.tb-public-contact-card {
    border: 1px solid #d3dce8;
    border-radius: 0.6rem;
    background: #fff;
    padding: 0.9rem;
}

.tb-home-benefits-grid h3,
.tb-home-testimonial-grid h4,
.tb-plan-card h3,
.tb-public-card-grid h3,
.tb-public-blog-grid h3,
.tb-public-contact-card h3,
.tb-public-faq-list h3 {
    margin: 0 0 0.38rem;
    color: #1d2e43;
    font-size: 1rem;
}

.tb-home-benefits-grid p,
.tb-home-testimonial-grid p,
.tb-plan-card p,
.tb-public-card-grid p,
.tb-public-blog-grid p {
    margin: 0;
    color: #47586d;
}

.tb-home-benefit-media {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 0.45rem;
    border: 1px solid #d4dce8;
    margin-bottom: 0.52rem;
}

.tb-plan-name {
    display: inline-block;
    margin: 0;
    color: #3c4d62;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.tb-plan-card-premium {
    border-color: #aebfda;
    background: linear-gradient(180deg, #f3f8ff 0%, #eef5ff 100%);
}

.tb-plan-card .btn {
    margin-top: 0.82rem;
}

.tb-plan-old-price {
    margin-left: 0.22rem;
    color: #6f7f95;
    font-size: 0.9rem;
    text-decoration: line-through;
}

.tb-home-testimonial-grid article {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafe 100%);
}

.tb-public-card-grid {
    margin-top: 0.9rem;
}

.tb-feature-list-grid {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.tb-feature-list-grid article,
.tb-feature-list-item {
    border: 1px solid #d3dce8;
    border-radius: 0.6rem;
    background: #fff;
    padding: 0.9rem;
    display: grid;
    gap: 0.55rem;
}

.tb-feature-list-grid img,
.tb-feature-list-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #d4dce8;
}

.tb-feature-list-grid h3,
.tb-feature-list-item h3 {
    margin: 0;
    color: #1d2e43;
    font-size: 1rem;
}

.tb-feature-list-grid ul,
.tb-feature-list-item ul {
    margin: 0;
    padding-left: 1.05rem;
    color: #415267;
    display: grid;
    gap: 0.24rem;
}

.tb-feature-list-grid a {
    display: inline-block;
    text-decoration: none;
    color: #0f4ea8;
    font-weight: 700;
}

.tb-public-card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tb-public-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tb-public-card-grid article a,
.tb-public-blog-grid article a {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #0f4ea8;
}

.tb-public-contact-grid {
    margin-top: 0.9rem;
    padding: 0.95rem;
}

.tb-public-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
    margin-top: 0.62rem;
}

.tb-public-form-grid-contact {
    grid-template-columns: 1fr;
}

.tb-public-form-grid-contact .tb-public-form-span-2 {
    grid-column: span 1;
}

.tb-public-form-field {
    display: grid;
    gap: 0.24rem;
}

.tb-public-form-field label {
    color: #3f4f63;
    font-size: 0.8rem;
    font-weight: 700;
}

.tb-public-contact-brand {
    margin: 0.66rem 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    min-height: 2.15rem;
    border: 1px solid #cdd8e7;
    border-radius: 0.55rem;
    background: #f7faff;
    color: #1d324d;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.tb-public-form-span-2 {
    grid-column: span 2;
}

.tb-public-section {
    margin-top: 0.9rem;
}

.tb-public-list-columns {
    margin-top: 0.82rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.tb-public-list-columns article {
    border: 1px solid #d3dce8;
    border-radius: 0.58rem;
    background: #fff;
    padding: 0.88rem;
}

.tb-public-list-columns h3 {
    margin: 0 0 0.42rem;
    font-size: 0.98rem;
    color: #1d2e43;
}

.tb-public-list-columns ul,
.tb-public-list-columns ol {
    margin: 0;
    padding-left: 1.06rem;
    color: #3f5065;
    display: grid;
    gap: 0.23rem;
}

.tb-public-small-note {
    margin-top: 0.74rem;
    color: #5a6a7f;
    font-size: 0.79rem;
}

.tb-contact-admin-summary {
    border: 1px solid #d3dce8;
    border-radius: 0.6rem;
    background: #fff;
    padding: 0.95rem;
    display: grid;
    gap: 0.45rem;
    align-content: start;
}

.tb-contact-admin-summary h3 {
    margin: 0;
    color: #1d2e43;
    font-size: 1rem;
}

.tb-contact-admin-summary p {
    margin: 0;
    color: #44546a;
}

.tb-contact-admin-summary .btn {
    justify-self: start;
}

.tb-contact-admin-panel {
    margin-top: 0.9rem;
    border: 1px solid #ccd6e5;
    border-radius: 0.74rem;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 12px 28px rgba(23, 39, 58, 0.1);
    padding: 0.95rem;
}

.tb-contact-admin-toolbar {
    margin-bottom: 0.72rem;
    display: grid;
    gap: 0.62rem;
}

.tb-contact-admin-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.58rem;
}

.tb-contact-admin-filter {
    display: grid;
    gap: 0.24rem;
}

.tb-contact-admin-filter > span {
    color: #55667b;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tb-contact-admin-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.tb-contact-admin-muted {
    margin: 0;
    color: #56667b;
}

.tb-contact-admin-table td {
    vertical-align: top;
}

.tb-contact-admin-ref {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c3d0e4;
    border-radius: 999px;
    padding: 0.18rem 0.52rem;
    background: #eef3fb;
    color: #0c4fa9;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.tb-contact-admin-message {
    min-width: 260px;
    max-width: 420px;
    color: #3f5065;
    line-height: 1.46;
}

.tb-public-policy {
    max-width: 920px;
    margin: 0 auto;
}

.tb-public-policy-updated {
    margin: 0 0 0.8rem;
    color: #56667a;
    font-size: 0.82rem;
    font-weight: 600;
}

.tb-public-policy h2 {
    margin-top: 1rem;
    margin-bottom: 0.35rem;
}

.tb-public-category-tabs {
    margin-top: 0.9rem;
    padding: 0.72rem;
    display: flex;
    gap: 0.42rem;
    flex-wrap: wrap;
}

.tb-public-category-tabs a {
    text-decoration: none;
    color: #2f3f54;
    border: 1px solid #c8d2e0;
    border-radius: 999px;
    padding: 0.3rem 0.72rem;
    font-size: 0.81rem;
    font-weight: 600;
    background: #f6f9fd;
}

.tb-public-category-tabs a.active {
    color: #fff;
    border-color: #0e58ca;
    background: #0e58ca;
}

.tb-public-faq-list,
.tb-public-blog-grid {
    margin-top: 0.9rem;
}

.tb-public-faq-list {
    display: grid;
    gap: 0.65rem;
}

.tb-public-faq-list article {
    border: 1px solid #d4dce8;
    border-radius: 0.56rem;
    background: #fff;
    padding: 0.86rem;
}

.tb-faq-category-grid {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
}

.tb-faq-category-card {
    border: 1px solid #d4dce8;
    border-radius: 0.6rem;
    background: #fff;
    padding: 0.9rem;
}

.tb-faq-category-card h2 {
    margin: 0 0 0.45rem;
    font-size: 1.04rem;
    color: #1c2d43;
}

.tb-faq-category-card ul {
    margin: 0;
    padding-left: 1.05rem;
    color: #425266;
    display: grid;
    gap: 0.24rem;
}

.tb-faq-category-card .btn {
    margin-top: 0.75rem;
}

.tb-public-faq-header {
    border: 1px solid #d4dce8;
    border-radius: 0.56rem;
    background: #f8fbff;
    padding: 0.86rem;
}

.tb-public-faq-header h2 {
    margin: 0;
    font-size: 1.08rem;
    color: #1c2d43;
}

.tb-public-faq-header p {
    margin: 0.28rem 0 0;
    color: #4a5a6f;
}

.tb-blog-category-block {
    margin-top: 0.9rem;
    border: 1px solid #ccd6e5;
    border-radius: 0.74rem;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 12px 28px rgba(23, 39, 58, 0.1);
    padding: 1rem;
}

.tb-blog-category-block header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.72rem;
    flex-wrap: wrap;
}

.tb-blog-category-block h2 {
    margin: 0;
    color: #1c2d43;
    font-size: 1.08rem;
}

.tb-blog-category-block header a {
    text-decoration: none;
    color: #0f4ea8;
    font-weight: 700;
    font-size: 0.82rem;
}

.tb-public-blog-meta {
    margin: 0.45rem 0 0;
    color: #5d6d81;
    font-size: 0.78rem;
    font-weight: 600;
}

.tb-public-blog-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #d4dce8;
    margin-bottom: 0.5rem;
}

.tb-blog-pager {
    margin-top: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
    border: 1px solid #ccd6e5;
    border-radius: 999px;
    padding: 0.26rem 0.58rem;
    color: #46566b;
    font-size: 0.82rem;
    font-weight: 600;
    background: #f7fbff;
}

.tb-public-checkbox-group {
    margin: 0;
    border: 1px solid #c5cfde;
    border-radius: 0.42rem;
    padding: 0.7rem 0.74rem;
    background: #fafcff;
    display: grid;
    gap: 0.45rem;
}

.tb-public-checkbox-group legend {
    margin: 0;
    float: none;
    width: auto;
    padding: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: #2f3f54;
}

.tb-public-checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #3b4b60;
    font-size: 0.85rem;
    font-weight: 600;
}

.tb-public-checkbox-group input {
    width: 1rem;
    height: 1rem;
}

.tb-public-blog-tag {
    margin: 0 0 0.22rem;
    color: #0f4ea8;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tb-public-footer-cta {
    margin-top: 1.15rem;
}

.tb-public-footer-cta-inner {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.82rem;
    flex-wrap: wrap;
}

.tb-public-footer-cta h3 {
    margin: 0;
}

.tb-public-footer-cta p {
    margin: 0.24rem 0 0;
    color: #43536a;
}

.tb-public-footer-cta-actions {
    display: flex;
    gap: 0.48rem;
    flex-wrap: wrap;
}

.tb-public-footer {
    border-top: 0;
    background: #192436;
    margin-top: 1.2rem;
    padding: 1rem 0 0.65rem;
}

.tb-public-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.15fr 1fr;
    gap: 0.95rem;
}

.tb-public-footer-col-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.tb-public-footer-col-contact {
    display: grid;
    align-content: start;
    gap: 0.58rem;
}

.tb-public-footer-brand {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.tb-public-footer-address,
.tb-public-footer-email {
    margin: 0;
    color: #d5deeb;
    font-size: 0.86rem;
    line-height: 1.5;
}

.tb-public-footer-social {
    display: flex;
    align-items: center;
    gap: 0.46rem;
}

.tb-public-footer-social a {
    width: auto;
    height: auto;
    display: inline-grid;
    place-items: center;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #e7eef8;
    font-size: 0;
    font-weight: 700;
    text-decoration: none;
}

.tb-public-footer-social img {
    width: 1.8rem;
    height: 1.8rem;
    display: block;
}

.tb-public-footer-email {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.tb-public-footer-email img {
    width: 0.92rem;
    height: 0.92rem;
    display: block;
}

.tb-public-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.34rem;
}

.tb-public-footer-links a {
    text-decoration: none;
    color: #dce6f5;
    font-size: 0.84rem;
    font-weight: 600;
}

.tb-public-footer-note {
    margin-top: 0.72rem;
    border-top: 1px solid rgba(203, 217, 236, 0.28);
    padding-top: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    color: #d1dbea;
    font-size: 0.78rem;
}

.tb-public-footer-note a {
    text-decoration: none;
    color: #f4f7ff;
    font-weight: 600;
}

.tb-home-page {
    display: grid;
    gap: 1.05rem;
}

.tb-home-page h1,
.tb-home-page h2,
.tb-home-page h3,
.tb-home-page h4,
.tb-home-hero h1,
.tb-home-subhead,
.tb-home-highlight,
.tb-home-section-head h2,
.tb-home-section-head h3,
.tb-home-testimonial-grid h4,
.tb-home-plans-grid .tb-plan-card h3 {
    font-family: "Manrope", "Outfit", "Segoe UI", sans-serif;
}

.tb-home-hero {
    margin-top: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-color: #bfd1e8;
    border-radius: 0.9rem;
    padding: 1.35rem;
    gap: 1.1rem;
    background: linear-gradient(132deg, #f7fbff 0%, #eef5ff 58%, #ebf8f2 100%);
    box-shadow: 0 18px 34px rgba(17, 39, 66, 0.14);
}

.tb-home-hero::before,
.tb-home-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.tb-home-hero::before {
    width: 360px;
    height: 360px;
    right: -165px;
    top: -145px;
    background: radial-gradient(circle at center, rgba(18, 100, 202, 0.2) 0%, rgba(18, 100, 202, 0) 72%);
}

.tb-home-hero::after {
    width: 300px;
    height: 300px;
    left: -145px;
    bottom: -180px;
    background: radial-gradient(circle at center, rgba(17, 139, 100, 0.15) 0%, rgba(17, 139, 100, 0) 72%);
}

.tb-home-hero-copy {
    border-color: rgba(194, 210, 229, 0.95);
    border-radius: 0.75rem;
    padding: 1.14rem 1.16rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 251, 255, 0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.tb-home-hero h1 {
    margin: 0 0 0.45rem;
    color: #112740;
    font-size: clamp(1.68rem, 2.7vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.tb-home-subhead {
    color: #18334f;
    font-size: clamp(1.1rem, 1.8vw, 1.42rem);
}

.tb-home-highlight {
    margin-top: 0.3rem;
    color: #0d5abf;
    font-size: clamp(1.28rem, 2vw, 1.68rem);
    letter-spacing: -0.01em;
}

.tb-home-subtitle {
    margin-top: 0.38rem;
    max-width: 35ch;
    color: #405267;
    line-height: 1.58;
}

.tb-home-desktop-tag {
    margin-top: 0.78rem;
    border-color: #b7cbe4;
    background: #edf5ff;
    color: #234e7f;
    font-size: 0.76rem;
    padding: 0.24rem 0.64rem;
}

.tb-home-hero-actions {
    margin-top: 1rem;
    gap: 0.62rem;
}

.tb-home-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.56rem 1.04rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.tb-home-hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(16, 37, 63, 0.18);
}

.tb-home-hero-card {
    border-color: #c6d7ea;
    border-radius: 0.75rem;
    padding: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 252, 255, 0.94) 100%);
}

.tb-home-hero-image {
    max-width: 385px;
    border-radius: 0.78rem;
    border-color: #c9d7e8;
    box-shadow: 0 16px 32px rgba(15, 35, 60, 0.18);
    animation: tb-home-float 6.2s ease-in-out infinite;
}

.tb-home-stats {
    margin-top: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    gap: 0.8rem;
}

.tb-home-stats article {
    position: relative;
    overflow: hidden;
    border-color: #c8d8ea;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    padding: 0.95rem 0.78rem;
    box-shadow: 0 12px 22px rgba(18, 36, 58, 0.11);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tb-home-stats article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f58c6 0%, #0f8a5f 100%);
}

.tb-home-stats article:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(18, 36, 58, 0.16);
}

.tb-home-stats h3 {
    color: #0d4eac;
    font-size: 1.42rem;
}

.tb-home-stats p {
    margin-top: 0.18rem;
    color: #45576c;
}

.tb-home-section {
    margin-top: 0;
    border-color: #c4d5e8;
    border-radius: 0.86rem;
    padding: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.98) 100%);
    box-shadow: 0 16px 28px rgba(17, 38, 62, 0.11);
}

.tb-home-section-head {
    margin-bottom: 0.88rem;
}

.tb-home-section-head h2 {
    font-size: clamp(1.24rem, 1.9vw, 1.56rem);
    color: #172d46;
}

.tb-home-section-head p {
    margin-top: 0.34rem;
    color: #44576d;
}

.tb-home-plan-note {
    margin-top: 0.34rem;
    color: #1e4875;
    font-size: 1.02rem;
    line-height: 1.42;
}

.tb-home-benefits-grid,
.tb-home-testimonial-grid,
.tb-home-plans-grid {
    gap: 0.9rem;
}

.tb-home-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tb-home-benefits-grid article,
.tb-home-testimonial-grid article,
.tb-home-plans-grid .tb-plan-card {
    height: 100%;
    border-color: #cddbe9;
    border-radius: 0.72rem;
    padding: 0.98rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 18px rgba(18, 36, 58, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tb-home-benefits-grid article:hover,
.tb-home-testimonial-grid article:hover,
.tb-home-plans-grid .tb-plan-card:hover {
    transform: translateY(-4px);
    border-color: #b8cde4;
    box-shadow: 0 16px 26px rgba(18, 36, 58, 0.16);
}

.tb-home-benefits-grid h3,
.tb-home-testimonial-grid h4,
.tb-home-plans-grid .tb-plan-card h3 {
    color: #19324c;
}

.tb-home-benefits-grid p,
.tb-home-testimonial-grid p,
.tb-home-plans-grid .tb-plan-card p,
.tb-home-plans-grid .tb-plan-card ul {
    color: #44566c;
}

.tb-home-benefit-media {
    height: 168px;
    border-radius: 0.58rem;
    border-color: #ccd9e8;
}

/* Outshipper public refresh */
:root {
    --tb-brand-ink: #071a2c;
    --tb-brand-blue: #1096d4;
    --tb-brand-cyan: #2bcad7;
    --tb-brand-red: #ff164c;
    --tb-brand-ice: #f4f9ff;
    --tb-brand-line: #d8e5f2;
    --tb-brand-muted: #56718d;
    --tb-brand-card: #ffffff;
}

.tb-public-shell,
.tb-legal-shell {
    color: var(--tb-brand-ink);
    background:
        radial-gradient(1200px 420px at -10% -20%, rgba(43, 202, 215, 0.3), transparent 70%),
        radial-gradient(740px 340px at 110% -10%, rgba(255, 22, 76, 0.16), transparent 72%),
        linear-gradient(180deg, #f6fbff 0%, #eef5fd 100%);
}

.tb-public-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(16, 150, 212, 0.14);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
}

.tb-public-header-inner {
    min-height: 84px;
    gap: 1rem;
}

.tb-public-brand img {
    width: auto;
    height: 42px;
    max-width: 100%;
}

.tb-public-nav-link {
    color: #23415d;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    transition: all 160ms ease;
}

.tb-public-nav-link:hover,
.tb-public-nav-link.is-active {
    color: #062242;
    background: rgba(16, 150, 212, 0.11);
}

.tb-public-header-actions {
    gap: 0.55rem;
}

.tb-public-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0 0.95rem;
    color: #06325f;
    border: 1px solid rgba(16, 150, 212, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #eaf7ff 100%);
    border-radius: 0.65rem;
    font-weight: 600;
    text-decoration: none;
}

.tb-public-main {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
}

.tb-public-breadcrumb {
    color: #5f7b96;
    font-weight: 600;
}

.tb-public-video-banner-inner {
    border: 1px solid rgba(16, 150, 212, 0.16);
    background: linear-gradient(90deg, #ffffff 0%, #eaf8ff 100%);
    box-shadow: 0 10px 24px rgba(10, 32, 56, 0.08);
}

.tb-public-video-play {
    color: var(--tb-brand-red);
}

.tb-home-page {
    gap: 1.25rem;
}

.tb-home-hero,
.tb-home-section,
.tb-public-hero,
.tb-public-section,
.tb-blog-category-block,
.tb-public-faq-list,
.tb-public-contact-card,
.tb-faq-category-card,
.tb-feature-list-grid > article,
.tb-feature-list-item,
.tb-public-blog-grid > article {
    border: 1px solid var(--tb-brand-line);
    background: var(--tb-brand-card);
    box-shadow: 0 12px 30px rgba(10, 30, 54, 0.07);
}

.tb-home-hero {
    background:
        radial-gradient(260px 180px at 16% 8%, rgba(255, 22, 76, 0.12), transparent 72%),
        radial-gradient(360px 210px at 90% 14%, rgba(43, 202, 215, 0.2), transparent 72%),
        #ffffff;
}

.tb-home-hero-copy h1 {
    margin-bottom: 0.35rem;
    font-size: clamp(2rem, 3.4vw, 3rem);
    letter-spacing: 0.01em;
}

.tb-home-subhead {
    color: #1f4060;
    font-weight: 700;
}

.tb-home-highlight {
    color: var(--tb-brand-red);
}

.tb-home-subtitle {
    color: #3a5875;
}

.tb-home-desktop-tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    color: #0c5a87;
    border: 1px solid rgba(16, 150, 212, 0.28);
    background: #ebf8ff;
}

.tb-home-hero-actions .btn {
    min-height: 2.5rem;
    border-radius: 0.62rem;
}

.tb-home-hero-image {
    border-radius: 0.9rem;
    border: 1px solid #dbe8f6;
    box-shadow: 0 16px 28px rgba(10, 30, 52, 0.16);
}

.tb-home-stats article {
    border-radius: 0.8rem;
    border: 1px solid rgba(16, 150, 212, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.tb-home-stats h3 {
    color: #0a2f57;
}

.tb-home-section-head h2 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.tb-home-section-head p {
    margin: 0;
    color: var(--tb-brand-muted);
}

.tb-home-benefits-grid article {
    border-radius: 0.9rem;
}

.tb-home-icon {
    width: 82px;
    height: 82px;
    border-radius: 16px;
    padding: 0.95rem;
    object-fit: contain;
    background: linear-gradient(180deg, #0a2a4f 0%, #08213f 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.tb-home-plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tb-plan-card,
.tb-plan-card-premium {
    border-radius: 0.95rem;
    border: 1px solid #d4e3f1;
    background: #ffffff;
}

.tb-plan-card-premium {
    background: linear-gradient(180deg, #ffffff 0%, #ecf8ff 100%);
}

.tb-home-dashboard-shot {
    width: 100%;
    margin: 0.45rem 0 0.7rem;
    border-radius: 0.72rem;
    border: 1px solid #d8e4f2;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.tb-home-testimonial-grid article {
    border-radius: 0.85rem;
}

.tb-public-hero {
    background:
        radial-gradient(260px 160px at 92% 12%, rgba(43, 202, 215, 0.22), transparent 70%),
        #ffffff;
}

.tb-public-kicker {
    color: #0c6ea3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.tb-public-hero h1 {
    color: #062242;
}

.tb-public-hero p {
    color: #3e5e7b;
}

.tb-public-hero-image {
    border-radius: 0.85rem;
    border: 1px solid #d8e4f3;
    box-shadow: 0 14px 26px rgba(9, 31, 58, 0.11);
}

.tb-public-category-tabs a {
    border-radius: 999px;
    border: 1px solid #d1dfef;
    color: #1f4668;
    background: #fff;
}

.tb-public-category-tabs a.active {
    color: #fff;
    border-color: #0a7ab0;
    background: linear-gradient(135deg, #0a7ab0 0%, #18a3d5 100%);
}

.tb-public-blog-tag {
    color: #fff;
    background: linear-gradient(135deg, #0f6fba 0%, #2bcad7 100%);
    border-radius: 999px;
    display: inline-flex;
    padding: 0.2rem 0.62rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tb-public-blog-image {
    border-radius: 0.75rem;
    border: 1px solid #dae7f4;
}

.tb-faq-category-card,
.tb-public-faq-list article {
    border-radius: 0.85rem;
}

.tb-vahan-search-mock {
    border: 1px solid #d4e3f2;
    box-shadow: 0 10px 26px rgba(8, 31, 53, 0.08);
}

.tb-public-contact-card {
    border-radius: 0.92rem;
}

.tb-public-contact-brand {
    color: #051f3d;
    border: 1px dashed rgba(16, 150, 212, 0.45);
    background: #eff8ff;
}

.tb-public-footer {
    margin-top: 1.1rem;
    border-top: 1px solid rgba(16, 150, 212, 0.18);
    background: linear-gradient(180deg, #081d34 0%, #07172a 100%);
}

.tb-public-footer-brand {
    color: #ffffff;
}

.tb-public-footer-address,
.tb-public-footer-links a,
.tb-public-footer-email {
    color: #b3c7da;
}

.tb-public-footer-links a:hover,
.tb-public-footer-email a:hover {
    color: #ffffff;
}

.tb-public-footer-social a {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #ffffff;
    text-decoration: none;
}

.tb-public-footer-social a:hover {
    border-color: #2bcad7;
    background: rgba(43, 202, 215, 0.2);
}

.tb-public-footer-social a i {
    font-size: 1rem;
    line-height: 1;
}

.tb-public-footer-email i {
    margin-right: 0.35rem;
}

.tb-legal-top {
    border-bottom: 1px solid #dce9f5;
}

.tb-legal-logo img {
    height: 38px;
    width: auto;
}

.tb-legal-mobile-link {
    color: #0b4d7e;
    text-decoration: none;
    font-weight: 600;
}

.tb-legal-article {
    border: 1px solid #d8e5f2;
    box-shadow: 0 12px 30px rgba(10, 30, 52, 0.07);
    background: #ffffff;
}

.tb-reveal {
    animation: tb-reveal-up 520ms ease both;
}

.tb-home-page > .tb-reveal:nth-child(2) {
    animation-delay: 80ms;
}

.tb-home-page > .tb-reveal:nth-child(3) {
    animation-delay: 140ms;
}

.tb-home-page > .tb-reveal:nth-child(4) {
    animation-delay: 200ms;
}

.tb-home-page > .tb-reveal:nth-child(5) {
    animation-delay: 260ms;
}

@keyframes tb-reveal-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 950px) {
    .tb-public-brand img {
        height: 36px;
    }

    .tb-home-icon {
        width: 70px;
        height: 70px;
    }
}

.tb-home-dashboard-shot {
    margin-bottom: 0.58rem;
}

.tb-plan-card {
    display: grid;
    align-content: start;
    gap: 0.24rem;
}

.tb-plan-card ul {
    margin-top: 0.28rem;
}

.tb-plan-card .btn {
    margin-top: 0.86rem;
    width: fit-content;
    border-radius: 999px;
}

.tb-plan-card-premium {
    border-color: #9eb8dc;
    background: linear-gradient(160deg, #eff6ff 0%, #f4fbff 56%, #edf8f3 100%);
}

.tb-plan-name {
    color: #2f4c6f;
    letter-spacing: 0.05em;
}

.tb-plan-old-price {
    font-size: 0.86rem;
}

.tb-home-testimonial-grid article {
    position: relative;
    padding-top: 1.18rem;
}

.tb-home-testimonial-grid article::before {
    content: "\"";
    position: absolute;
    top: 0.54rem;
    left: 0.8rem;
    font-size: 1.52rem;
    line-height: 1;
    color: #a7bfdc;
    font-weight: 700;
}

.tb-home-testimonial-grid h4 {
    margin-top: 0.66rem;
    margin-bottom: 0;
    font-size: 0.94rem;
    color: #29486b;
}

.tb-reveal,
.tb-home-hero,
.tb-home-stats,
.tb-home-section {
    opacity: 0;
    transform: translateY(18px);
    animation: tb-home-reveal 0.74s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tb-home-hero,
.tb-home-page > .tb-reveal:nth-child(1) {
    animation-delay: 0.04s;
}

.tb-home-stats,
.tb-home-page > .tb-reveal:nth-child(2) {
    animation-delay: 0.14s;
}

.tb-home-section,
.tb-home-page > .tb-reveal:nth-child(3) {
    animation-delay: 0.24s;
}

.tb-home-section + .tb-home-section,
.tb-home-page > .tb-reveal:nth-child(4) {
    animation-delay: 0.34s;
}

.tb-home-section + .tb-home-section + .tb-home-section,
.tb-home-page > .tb-reveal:nth-child(5) {
    animation-delay: 0.44s;
}

@keyframes tb-home-reveal {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tb-home-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tb-reveal,
    .tb-home-hero,
    .tb-home-stats,
    .tb-home-section,
    .tb-home-hero-image {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .tb-home-stats article,
    .tb-home-benefits-grid article,
    .tb-home-testimonial-grid article,
    .tb-home-plans-grid .tb-plan-card,
    .tb-home-hero-actions .btn {
        transition: none;
    }
}

.tb-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(9, 18, 33, 0.4);
    display: grid;
    place-items: center;
    padding: 1rem;
}

.tb-modal-panel {
    width: min(100%, 740px);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border: 1px solid #c4ceda;
    border-radius: 0.62rem;
    background: #f6f8fb;
    box-shadow: 0 26px 50px rgba(19, 29, 44, 0.33);
}

.tb-modal-sm {
    max-width: 520px;
}

.tb-modal-md {
    max-width: 740px;
}

.tb-modal-lg {
    max-width: 920px;
}

.tb-modal-xl {
    max-width: 1080px;
}

.tb-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.72rem 0.88rem;
    border-bottom: 1px solid #d8dee8;
    background: #edf2f8;
}

.tb-modal-header h3 {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 600;
    color: #172133;
}

.tb-modal-close {
    border: 1px solid #c8d0dc;
    background: #ffffff;
    color: #2b3443;
    border-radius: 0.35rem;
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.9rem;
    line-height: 1;
}

.tb-modal-body {
    padding: 1rem 0.95rem;
}

.tb-modal-body .compact-form {
    gap: 0.62rem;
}

.tb-modal-body .compact-form .span-4.d-grid {
    display: flex !important;
    justify-content: flex-end;
}

.tb-modal-body .compact-form .span-4.d-grid .btn {
    width: auto;
    min-width: 176px;
}

.tb-modal-footer {
    padding: 0.72rem 0.88rem;
    border-top: 1px solid #d7deea;
    background: #eff3f8;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.premium-shell {
    display: block;
}

.premium-hero {
    background: #f7f8fb;
}

.premium-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.premium-grid article {
    border: 1px solid #d2d8e2;
    border-radius: 0.45rem;
    padding: 0.85rem;
    background: #fff;
}

.premium-grid h4 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.premium-grid p {
    margin: 0;
    color: #4e5a6b;
}

.premium-cta {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.premium-note {
    margin-top: 0.65rem;
    color: #5a6677;
    font-size: 0.8rem;
}

.profile-user-id {
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.79rem;
    word-break: break-all;
}

.btn {
    border-radius: 0.32rem;
    font-weight: 600;
    font-size: 0.86rem;
    line-height: 1.2;
    padding: 0.43rem 0.88rem;
}

.btn-primary {
    color: #fff;
    background-color: #0c5bd2;
    border-color: #0a4cb2;
}

.btn-primary:hover {
    background-color: #0a50bd;
    border-color: #0846a6;
}

.btn-dark {
    color: #fff;
    background-color: #111827;
    border-color: #0d1320;
}

.btn-dark:hover {
    background-color: #0c121f;
    border-color: #090f1a;
}

.btn-outline-primary {
    color: #0d5ece;
    border-color: #9caece;
}

.btn-outline-primary:hover {
    color: #fff;
    background: #0d5ece;
    border-color: #0d5ece;
}

.btn-outline-secondary {
    color: #364152;
    border-color: #aeb7c5;
}

.btn-outline-secondary:hover {
    color: #1f2937;
    background: #ecf0f5;
    border-color: #a3acba;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.1rem #ffffff, 0 0 0 0.23rem #7f9bcf;
    border-color: #6c88be;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

@media (max-width: 1200px) {
    .kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tb-metrics-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tb-expense-strip,
    .tb-invoice-strip,
    .tb-expense-category-grid {
        grid-template-columns: 1fr;
    }

    .public-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tb-home-benefits-grid,
    .tb-home-plans-grid,
    .tb-home-testimonial-grid,
    .tb-feature-list-grid,
    .tb-public-card-grid,
    .tb-public-blog-grid,
    .tb-public-card-grid-3,
    .tb-faq-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tb-public-hero,
    .tb-home-hero,
    .tb-public-contact-grid,
    .tb-public-footer-grid {
        grid-template-columns: 1fr;
    }

    .tb-public-footer-col-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tb-home-hero,
    .tb-home-section {
        padding: 1rem;
    }

    .tb-home-hero-copy,
    .tb-home-hero-card {
        padding: 0.9rem;
    }

    .tb-home-benefit-media {
        height: 154px;
    }

    .tb-public-list-columns {
        grid-template-columns: 1fr;
    }

    .tb-contact-admin-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compact-form .span-2,
    .compact-form .span-4 {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .kpi-grid,
    .compact-form {
        grid-template-columns: 1fr;
    }

    .tb-metrics-strip,
    .tb-expense-category-grid {
        grid-template-columns: 1fr;
    }

    .tb-search-box {
        min-width: 100%;
    }

    .tb-toolbar-filters {
        width: 100%;
        justify-content: flex-start;
    }

    .tb-mini-select {
        min-width: 100%;
    }

    .tb-toolbar-select {
        min-width: 100%;
    }

    .public-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .public-hero,
    .public-content-grid {
        grid-template-columns: 1fr;
    }

    .tb-public-container {
        width: calc(100% - 1rem);
    }

    .tb-legal-top,
    .tb-legal-main {
        width: calc(100% - 1rem);
    }

    .tb-legal-top {
        padding: 0.7rem 0 0.45rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .tb-legal-mobile-link {
        width: 100%;
        text-align: center;
    }

    .tb-legal-article {
        padding: 0.8rem;
    }

    .tb-public-header-inner {
        padding: 0.55rem 0;
        align-items: flex-start;
    }

    .tb-public-nav {
        width: 100%;
    }

    .tb-public-nav-link {
        flex: 1 1 auto;
        text-align: center;
    }

    .tb-public-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .tb-public-play {
        flex: 0 0 auto;
    }

    .tb-public-header-actions .btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .tb-home-page {
        gap: 0.86rem;
    }

    .tb-home-hero,
    .tb-home-section {
        padding: 0.82rem;
        border-radius: 0.75rem;
    }

    .tb-home-hero-copy,
    .tb-home-hero-card {
        padding: 0.82rem;
    }

    .tb-home-hero-actions {
        width: 100%;
    }

    .tb-home-hero-actions .btn {
        flex: 1 1 100%;
    }

    .tb-home-plans-grid .tb-plan-card .btn {
        width: 100%;
    }

    .tb-home-benefit-media {
        height: 162px;
    }

    .tb-home-testimonial-grid article::before {
        top: 0.42rem;
        left: 0.7rem;
    }

    .tb-public-brand img {
        height: 2.05rem;
    }

    .tb-public-play-img {
        height: 2.05rem;
    }

    .tb-public-video-banner-inner {
        align-items: flex-start;
    }

    .tb-vahan-search-row {
        grid-template-columns: 1fr;
    }

    .tb-home-stats,
    .tb-home-benefits-grid,
    .tb-home-plans-grid,
    .tb-home-testimonial-grid,
    .tb-feature-list-grid,
    .tb-public-card-grid,
    .tb-public-card-grid-2,
    .tb-public-card-grid-3,
    .tb-faq-category-grid,
    .tb-public-blog-grid,
    .tb-public-footer-grid,
    .tb-public-hero,
    .tb-home-hero,
    .tb-public-contact-grid,
    .tb-public-form-grid {
        grid-template-columns: 1fr;
    }

    .tb-public-footer-col-links {
        grid-template-columns: 1fr;
    }

    .tb-public-form-span-2 {
        grid-column: span 1;
    }

    .tb-contact-admin-filters {
        grid-template-columns: 1fr;
    }

    .tb-contact-admin-actions .btn {
        flex: 1 1 auto;
    }

    .tb-blog-category-block header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tb-contact-admin-message {
        min-width: 190px;
    }

    .public-nav {
        width: 100%;
    }

    .public-link {
        flex: 1 1 auto;
        text-align: center;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .compact-form .span-2,
    .compact-form .span-4 {
        grid-column: span 1;
    }
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4MDU0NyAyNjMuNTc2IDg2LjA1NDdaIiBmaWxsPSIjRkZFNTAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L2c+PC9zdmc+) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

/* Second visual pass: typography spacing and mobile nav behavior */
.tb-public-nav-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    flex: 1 1 auto;
    margin-left: 0.35rem;
}

.tb-public-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border: 1px solid #cfe0f2;
    background: #ffffff;
    color: #0c355a;
    border-radius: 0.65rem;
    box-shadow: 0 2px 10px rgba(9, 35, 58, 0.08);
}

.tb-public-nav-toggle i {
    font-size: 1.18rem;
    line-height: 1;
}

.tb-public-shell h1,
.tb-public-shell h2,
.tb-public-shell h3,
.tb-public-shell h4 {
    line-height: 1.18;
    letter-spacing: -0.01em;
}

.tb-public-shell p,
.tb-public-shell li,
.tb-public-shell label,
.tb-public-shell .btn {
    line-height: 1.62;
}

.tb-public-main {
    padding-top: 1.3rem;
    padding-bottom: 1.7rem;
}

.tb-home-page {
    gap: 1.45rem;
}

.tb-home-hero,
.tb-home-section,
.tb-public-hero,
.tb-public-section,
.tb-blog-category-block,
.tb-public-faq-list,
.tb-public-contact-card,
.tb-faq-category-card,
.tb-feature-list-grid > article,
.tb-feature-list-item,
.tb-public-blog-grid > article {
    padding: 1.35rem;
}

.tb-home-section-head h2,
.tb-public-section h2,
.tb-blog-category-block h1,
.tb-public-hero h1 {
    margin-bottom: 0.5rem;
}

.tb-home-benefits-grid,
.tb-home-plans-grid,
.tb-home-testimonial-grid,
.tb-feature-list-grid,
.tb-public-blog-grid,
.tb-faq-category-grid,
.tb-public-contact-grid {
    gap: 1.05rem;
}

.tb-home-benefits-grid article h3,
.tb-home-plans-grid article h3,
.tb-public-blog-grid article h3,
.tb-feature-list-grid article h3,
.tb-faq-category-card h2 {
    margin-top: 0.62rem;
    margin-bottom: 0.4rem;
}

.tb-home-testimonial-grid article {
    padding: 1.15rem 1rem 1rem;
}

.tb-public-breadcrumb {
    margin-bottom: 0.8rem;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .tb-public-header-inner {
        position: relative;
        min-height: 4.2rem;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0.5rem 0;
    }

    .tb-public-brand {
        flex: 1 1 auto;
    }

    .tb-public-brand img {
        height: 5rem;
    }

    .tb-public-nav-toggle {
        display: inline-flex;
    }

    .tb-public-nav-panel {
        position: absolute;
        top: calc(100% + 0.4rem);
        left: 0;
        right: 0;
        margin-left: 0;
        display: grid;
        gap: 0.65rem;
        border-radius: 0.82rem;
        border: 1px solid transparent;
        background: #ffffff;
        box-shadow: none;
        padding: 0 0.92rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition:
            max-height 240ms ease,
            opacity 180ms ease,
            transform 200ms ease,
            padding 180ms ease,
            border-color 180ms ease,
            box-shadow 180ms ease;
    }

    .tb-public-nav-panel.is-open {
        max-height: 34rem;
        padding: 0.92rem;
        border-color: #d5e4f3;
        box-shadow: 0 16px 30px rgba(9, 34, 56, 0.15);
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .tb-public-nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.42rem;
    }

    .tb-public-nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 2.45rem;
        border-radius: 0.64rem;
        padding: 0.5rem 0.75rem;
        border: 1px solid #d8e5f2;
        background: #f8fcff;
    }

    .tb-public-header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .tb-public-header-actions .btn,
    .tb-public-header-actions .tb-public-play {
        width: 100%;
        min-height: 2.5rem;
        justify-content: center;
        text-align: center;
    }

    .tb-public-main {
        padding-top: 0.9rem;
        padding-bottom: 1.15rem;
    }

    .tb-home-page {
        gap: 1rem;
    }

    .tb-home-hero,
    .tb-home-section,
    .tb-public-hero,
    .tb-public-section,
    .tb-blog-category-block,
    .tb-public-faq-list,
    .tb-public-contact-card,
    .tb-faq-category-card,
    .tb-feature-list-grid > article,
    .tb-feature-list-item,
    .tb-public-blog-grid > article {
        padding: 1rem;
    }

    .tb-public-shell p,
    .tb-public-shell li,
    .tb-public-shell label,
    .tb-public-shell .btn {
        line-height: 1.58;
    }

    .tb-home-hero-copy h1,
    .tb-public-hero h1 {
        font-size: clamp(1.6rem, 6.4vw, 2.2rem);
    }
}

@media (max-width: 560px) {
    .tb-public-container {
        width: calc(100% - 0.8rem);
    }

    .tb-public-nav-panel.is-open {
        max-height: 36rem;
    }

    .tb-public-breadcrumb {
        margin-bottom: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Prevent reconnect UI from blocking clicks on public forms when circuit drops. */
#components-reconnect-modal,
.components-reconnect-modal {
    display: none !important;
    pointer-events: none !important;
}

.tb-trip-intent-form {
    margin-top: 0;
}

.tb-trip-intent-note {
    margin-top: 0.25rem;
    color: #4f647b;
    font-size: 0.8rem;
}
