.nav-link {
     position: relative;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -2px;
     left: 0;
     background-color: #2563eb;
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: 100%;
 }

 .active-nav::after {
     width: 100%;
 }

 .calculator-container {
     background: #ffffff;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 }

 .result-box {
     background: #f8fafc;
     box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
 }

 .input-field:focus {
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
 }

.calculator-header {
    background: #3b82f6;
}

 .sidebar-widget {
     background: #ffffff;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 }

 .widget-link {
     transition: all 0.2s ease;
 }

 .widget-link:hover {
     background-color: #f3f4f6;
     padding-left: 1rem;
 }

.toc-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.toc-link-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #d7d7d7;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    flex: 0 0 auto;
}

.toc-link:hover,
.toc-link:focus-visible {
    color: #7bd2ff;
    border-color: rgba(123, 210, 255, 0.28);
    background: rgba(123, 210, 255, 0.08);
    transform: translateY(-1px);
}

 table {
     border-collapse: collapse;
     width: 100%;
 }

 th,
 td {
     border: 1px solid #e5e7eb;
     padding: 0.75rem;
     text-align: left;
 }

 th {
     background-color: #f3f4f6;
 }

tr:nth-child(even) {
     background-color: #f9fafb;
 }

:root {
    --page-bg: #0b0b0b;
    --surface: #171717;
    --surface-2: #1f1f1f;
    --surface-3: #242424;
    --text: #f4f4f4;
    --muted: #a3a3a3;
    --line: rgba(255, 255, 255, 0.08);
    --teal: #27d1c3;
    --teal-dark: #1f9f95;
}

html,
body {
    background: var(--page-bg) !important;
    color: var(--text) !important;
    font-family: "Poppins", sans-serif !important;
}

body {
    overflow-x: hidden;
}

.page-container {
    width: min(calc(100% - 32px), 1220px);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(11, 11, 11, 0.92) !important;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
}

.brand-text span {
    font-size: 0.84rem;
    color: var(--muted);
}

.desktop-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #151515;
    border: 1px solid var(--line);
}

.desktop-nav a {
    color: var(--muted);
    padding: 10px 18px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    background: #ffffff;
    color: #111111;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #151515;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-nav {
    width: min(calc(100% - 32px), 1220px);
    margin: 0 auto 14px;
    padding: 10px;
    background: #151515;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.mobile-nav.hidden {
    display: none;
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    color: var(--muted);
    border-radius: 12px;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto 22px;
}

.breadcrumb-scroll {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.breadcrumb-scroll::-webkit-scrollbar {
    display: none;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 0;
    margin: 0 auto;
    padding: 12px 18px;
    list-style: none;
    font-size: 0.92rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.breadcrumb-link,
.breadcrumb-current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    color: #7dd3fc;
    text-decoration: none;
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 600;
}

.breadcrumb-separator {
    color: #727272;
}

.breadcrumb-home-icon {
    width: 15px;
    height: 15px;
}

.page-layout {
    display: block;
}

.redesigned-main {
    width: 100% !important;
    max-width: 100% !important;
}

.page-hero-card,
.toc-card,
.sidebar-widget,
.related-calculators-section a:not(.related-inline-button),
.bg-gray-50,
.bg-white,
.bg-yellow-50,
.bg-green-50,
.result-box {
    background: var(--surface) !important;
    border-color: var(--line) !important;
    box-shadow: none !important;
}

.page-hero-card,
.toc-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
}

.page-hero-simple {
    margin-bottom: 24px;
    text-align: center;
    padding-top: 58px;
}

.section-eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #8a8a8a;
}

.section-label {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #8a8a8a;
}

.page-hero-simple h1 {
    font-size: clamp(3.2rem, 6vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px auto 0 !important;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(65, 190, 120, 0.18);
    background: rgba(65, 190, 120, 0.08);
    color: #8ee3ab !important;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(65, 190, 120, 0.16);
    color: #8ee3ab;
    font-size: 0.9rem;
    line-height: 1;
}

.page-hero-simple > p.text-base {
    max-width: 940px;
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    line-height: 1.55;
    margin: 18px auto 0 !important;
}

.hero-intent-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.hero-intent-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 132px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-align: left;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.hero-intent-card strong {
    font-size: 1.12rem;
    line-height: 1.15;
    color: #fff;
    font-weight: 700;
}

.hero-intent-card span:last-child {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.hero-intent-label {
    color: #8a8a8a !important;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-intent-card:hover,
.hero-intent-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(123, 210, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.hero-intent-card-cta {
    border-color: rgba(123, 210, 255, 0.28);
    background: linear-gradient(180deg, rgba(123, 210, 255, 0.16), rgba(123, 210, 255, 0.07));
}

.hero-intent-card-cta strong {
    color: #c9eeff;
}

.assumption-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.how-it-works-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.flow-step-card {
    position: relative;
    padding: 22px 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.flow-step-card::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -18px;
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.flow-step-card:last-child::after {
    display: none;
}

.flow-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(123, 210, 255, 0.16);
    background: rgba(123, 210, 255, 0.08);
    color: #9ed9f1;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.flow-step-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.assumption-card {
    padding: 0px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.assumption-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.45;
}

.assumption-card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
}

.compact-rate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.compact-rate-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-rate-card {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.compact-rate-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(123, 210, 255, 0.16);
    background: rgba(123, 210, 255, 0.08);
    color: #9ed9f1;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compact-rate-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 0.96rem;
    line-height: 1.3;
}

.compact-rate-card p {
    margin: 0 0 12px;
    font-size: 0.92rem;
    line-height: 1.65;
}

.compact-rate-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 0.9rem;
    line-height: 1.65;
    list-style: disc;
    list-style-position: outside;
}

.compact-rate-card li + li {
    margin-top: 8px;
}

.compact-rate-note {
    margin: 18px 0 0;
    color: #bdbdbd;
    line-height: 1.7;
}

#hra-city-classification .compact-rate-grid {
    gap: 14px;
}

#hra-city-classification .compact-rate-card {
    padding: 15px 18px  0px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

#hra-city-classification .compact-rate-tag {
    margin-bottom: 10px;
    padding: 7px 11px;
    font-size: 0.72rem;
}

#hra-city-classification .compact-rate-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.45;
}

#hra-city-classification .compact-rate-card p {
    margin: 0 0 10px;
    font-size: 0.84rem;
    line-height: 1.55;
}

#hra-city-classification .compact-rate-card ul {
    font-size: 0.84rem;
    line-height: 1.55;
    list-style: disc;
    list-style-position: outside;
}

.example-grid,
.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.example-card,
.reference-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.example-card-head h3,
.reference-card h3 {
    margin: 10px 0 10px;
    color: #ffffff;
    font-size: 1.06rem;
    line-height: 1.25;
}

.example-card-head p,
.reference-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
}

.example-badge,
.reference-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(123, 210, 255, 0.08);
    border: 1px solid rgba(123, 210, 255, 0.16);
    color: #9ed9f1;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.example-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.example-meta-grid div {
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.example-meta-grid span {
    display: block;
    margin-bottom: 6px;
    color: #b6b6b6;
    font-size: 0.74rem;
    line-height: 1.3;
}

.example-meta-grid div > span:last-child {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0;
}

.example-formula-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.84rem;
}

.example-formula-list p {
    font-size: 14px;
}

.example-formula-list p {
    margin: 0;
}

.formula-emphasis {
    color: #8dd6ff !important;
    font-weight: 700;
}

.formula-total {
    color: #8ee3ab !important;
    font-weight: 700;
}

.site-footer {
    padding: 16px;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.footer-shell {
    width: 100%;
    padding: 28px 0 34px;
}

@media (min-width: 1121px) {
    .footer-shell {
        width: min(80vw, 1100px);
        margin: 0 auto;
    }
}

.footer-single h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.footer-brand-inline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-intro p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 1.75fr;
    gap: 28px;
}

.footer-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer-group {
    min-width: 0;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: var(--muted);
    padding: 0;
    border: 0;
    background: transparent;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom-bar {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.footer-bottom-bar p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.reference-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
}

.reference-table th,
.reference-table td {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
    vertical-align: top;
    background: transparent;
}

.reference-table thead th {
    background: #2d2e2e;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
}

.reference-table tbody tr:last-child td {
    border-bottom: 0;
}

.reference-table td:first-child {
    width: 28%;
    color: #ffffff;
    font-weight: 600;
}

.reference-table td:last-child {
    width: 16%;
}

.reference-table a {
    color: #8dd6ff;
    font-weight: 600;
    text-decoration: none;
}

.reference-table a:hover,
.reference-table a:focus-visible {
    text-decoration: underline;
}

.content-shell {
    margin-top: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #1d1e1e;
}

.content-shell > section {
    margin-bottom: 0 !important;
    padding: 34px 0;
}

.content-shell > section + section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.content-shell h3 {
    margin-top: 50px;
}

.content-shell h3:first-of-type {
    margin-top: 0;
}

.content-shell .bg-white,
.content-shell .bg-gray-50,
.content-shell .bg-blue-50,
.content-shell .bg-green-50,
.content-shell .bg-yellow-50 {
    background: rgba(255, 255, 255, 0.035) !important;
    box-shadow: none !important;
}

.content-shell a {
    color: #8dd6ff !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.content-shell a:hover,
.content-shell a:focus-visible {
    color: #b9ebff !important;
}

.content-shell .border-l-4 {
    border-left-color: rgba(123, 210, 255, 0.4) !important;
}

.content-shell .rounded-lg,
.content-shell .rounded-r-lg {
    border-radius: 20px !important;
}

.content-shell .font-mono {
    background: rgba(0, 0, 0, 0.16) !important;
}

.content-shell h2 {
    font-size: clamp(1.85rem, 3vw, 2.45rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em;
    margin: 0 0 18px !important;
}

.content-shell h3 {
    font-size: 18px;
    line-height: 1.32 !important;
    margin: 28px 0 14px !important;
    color: #dfe5e5 !important;
}

.content-shell p,
.content-shell li {
    font-size: 16px;
    line-height: 1.82;
    color: #e3e3e3;
}

.content-shell p {
    margin-bottom: 16px !important;
    max-width: 100%;
}

.content-shell ul,
.content-shell ol {
    margin: 0 0 18px !important;
}

.content-shell li + li {
    margin-top: 8px;
}

.content-shell .overflow-x-auto {
    margin-top: 16px;
    margin-bottom: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.content-shell table {
    font-size: 0.97rem;
}

.content-shell th {
    background: #2d2e2e !important;
    color: #c5cccc !important;
    font-weight: 600;
}

.content-shell td,
.content-shell th {
    padding: 13px 14px !important;
}

.content-shell .my-8.text-center,
.content-shell .bg-blue-50.border-l-4,
.content-shell .bg-green-50.border-l-4,
.content-shell .bg-gray-50.p-4.rounded-lg,
.content-shell .bg-gray-50.border-l-4 {
    margin-top: 18px;
    margin-bottom: 22px !important;
}

.seven-page .text-gray-900,
.seven-page .text-gray-800,
.seven-page h1,
.seven-page h2,
.seven-page h3,
.seven-page h4,
.related-calculators-section .text-gray-900 {
    color: var(--text) !important;
}

.seven-page .text-gray-700,
.seven-page .text-gray-600,
.seven-page .text-gray-500,
.related-calculators-section .text-gray-600,
footer .text-gray-300,
footer .text-gray-400,
footer .text-gray-500 {
    color: #e3e3e3 !important;
}

.seven-page .text-blue-600,
.seven-page .text-blue-500,
.seven-page .hover\:text-blue-800:hover,
.related-calculators-section .text-blue-600 {
    color: #8fc5de !important;
}

.seven-page .bg-blue-600,
.related-calculators-section .bg-blue-600,
footer .bg-blue-600,
.calculator-header {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal)) !important;
}

.seven-page .bg-gray-800 {
    background: #111111 !important;
}

.seven-page .border-gray-200,
.seven-page .border-gray-100,
.seven-page .border-gray-300,
.seven-page .border-t,
.related-calculators-section .border-gray-200,
footer .border-gray-700 {
    border-color: var(--line) !important;
}

.seven-page .text-green-600 {
    color: #73c7ac !important;
}

.seven-page .text-yellow-700,
.seven-page .text-yellow-400,
.seven-page .text-green-700,
.seven-page .text-green-800 {
    color: var(--text) !important;
}

.content-shell .text-blue-800,
.content-shell .text-green-800 {
    color: var(--text) !important;
}

.seven-page main,
.seven-page section,
.seven-page article {
    max-width: 100%;
}

#calculator {
    margin-top: 12px;
}

#main-calculator,
.calculator-container {
    width: 100% !important;
    max-width: 100% !important;
}

.calculator-container {
    border: 1px solid var(--line) !important;
    border-radius: 30px !important;
    overflow: hidden;
    background: var(--surface) !important;
}

.calculator-container .p-4,
.calculator-container .p-6,
.calculator-container .sm\:p-6 {
    background: var(--surface) !important;
}

.calculator-body-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
    gap: 22px;
    align-items: start;
}

.calculator-form-panel {
    min-width: 0;
}

.calculator-panel-copy {
    margin-bottom: 24px;
}

.calculator-panel-copy p {
    margin: 0 !important;
}

#calculateBtn {
    margin-top: 16px;
}

.share-inline-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0 28px;
}

.share-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.share-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.share-chip:hover,
.share-chip:focus-visible {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.share-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.share-inline-icon:hover,
.share-inline-icon:focus-visible {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.share-inline-icon.is-copied {
    color: #7bd2ff;
    border-color: rgba(123, 210, 255, 0.3);
    background: rgba(123, 210, 255, 0.1);
}

.calculator-results-panel {
    position: sticky;
    top: 108px;
    display: block;
}

.result-summary-card {
    background: #121212;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
}

.result-hero-panel {
    padding: 18px 20px 20px;
    border-radius: 22px;
    border: 1px solid rgba(123, 210, 255, 0.16);
    background: linear-gradient(180deg, rgba(123, 210, 255, 0.12), rgba(123, 210, 255, 0.04));
    margin-bottom: 14px;
}

.result-hero-label {
    display: inline-block;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8fcfe7;
}

.result-hero-total {
    margin: 10px 0 8px !important;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #f5fbff;
}

.result-hero-meta {
    margin: 0 !important;
    color: #bdd6e1 !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

.result-topline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.result-topline-card {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.result-topline-card span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.result-topline-card p {
    margin: 7px 0 0 !important;
}

.result-breakdown-note {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.result-breakdown-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #d0d0d0;
    font-size: 0.82rem;
    font-weight: 600;
}

.result-breakdown-title {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #f3f3f3;
}

.result-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.result-stat-card {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.result-stat-card span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.35;
}

.result-stat-card p {
    margin: 5px 0 0 !important;
    font-size: 1rem !important;
    line-height: 1.25;
}

.result-total-row {
    padding-top: 14px;
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
}

.calculator-container label,
.calculator-container .text-sm,
.calculator-container .text-xs,
.calculator-container p {
    color: var(--muted) !important;
}

.calculator-container input,
.calculator-container select {
    background: #202020 !important;
    color: var(--text) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    border-radius: 999px !important;
    min-height: 54px;
    padding: 0 18px !important;
    box-shadow: none !important;
}

.calculator-container input::placeholder {
    color: #808080 !important;
}

.calculator-container input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.calculator-container input[type="number"]::-webkit-outer-spin-button,
.calculator-container input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calculator-container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 62px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26' fill='none'%3E%3Cpath d='M8 11L13 16L18 11' stroke='%23FFFFFF' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 18px) center !important;
    background-size: 22px !important;
    cursor: pointer;
    text-overflow: ellipsis;
}

.calculator-card {
    margin-top: 24px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--surface);
}

.calculator-head {
    margin-bottom: 22px;
}

.calculator-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.calculator-head p:last-child {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
    max-width: 900px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.calculator-grid > div {
    min-width: 0;
}

.calculator-grid label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.calculator-grid input,
.calculator-grid select {
    width: 100%;
    background: #202020;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    min-height: 54px;
    padding: 0 18px;
    box-shadow: none;
}

.calculator-grid input::placeholder {
    color: #808080;
}

.calculator-grid input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.calculator-grid input[type="number"]::-webkit-outer-spin-button,
.calculator-grid input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calculator-grid select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 62px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26' fill='none'%3E%3Cpath d='M8 11L13 16L18 11' stroke='%23FFFFFF' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 18px) center;
    background-size: 22px;
    cursor: pointer;
    text-overflow: ellipsis;
}

.calculator-grid input:focus,
.calculator-grid select:focus {
    outline: none;
    border-color: rgba(123, 210, 255, 0.36);
    box-shadow: 0 0 0 3px rgba(123, 210, 255, 0.14);
}

.calculator-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    margin-top: 4px;
}

.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--teal), #68e2d6);
    color: #062b28;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    box-shadow: 0 12px 28px rgba(39, 209, 195, 0.22);
}

.primary-action:hover,
.primary-action:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 14px 30px rgba(39, 209, 195, 0.28);
}

.result-shell {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #121212;
}

.result-hero-card {
    padding: 18px 20px 20px;
    border-radius: 22px;
    border: 1px solid rgba(123, 210, 255, 0.16);
    background: linear-gradient(180deg, rgba(123, 210, 255, 0.12), rgba(123, 210, 255, 0.04));
    margin-bottom: 14px;
}

.result-hero-card h3 {
    margin: 10px 0 8px;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #f5fbff;
}

.result-hero-card p:last-child {
    margin: 0;
    color: #bdd6e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.result-mini-card,
.result-topline-card {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.result-mini-card span,
.result-topline-card span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.result-mini-card strong,
.result-topline-card strong,
.result-topline-card p {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
}

.result-summary-grid,
.salary-breakup-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.result-summary-grid {
    margin-bottom: 14px;
}

.summary-item,
.salary-breakup-item {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.summary-item span,
.salary-breakup-item span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.summary-item strong,
.salary-breakup-item strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
}

.salary-breakup-grid.compact-breakup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.toc-card ul,
.toc-card li {
    color: var(--muted);
}

.toc-section {
    padding: 24px !important;
    border-radius: 24px !important;
    border: 1px solid var(--line) !important;
    background: #121212 !important;
}

.toc-heading-row {
    max-width: 760px;
    margin-bottom: 20px;
}

.toc-heading-row h2 {
    margin: 0 0 8px !important;
    color: var(--text);
}

.toc-heading-row p {
    margin: 0 !important;
    color: var(--muted);
    line-height: 1.7;
}

.toc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.faq-heading {
    margin-bottom: 18px;
}

.faq-heading h2 {
    margin: 0 0 10px !important;
    color: var(--text);
}

.faq-heading p {
    margin: 0;
    color: #e3e3e3;
    line-height: 1.7;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    background: #101010;
    border: 1px solid var(--line);
    border-radius: 28px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
    background: var(--surface);
    border-color: rgba(255, 255, 255, 0.14);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";
    flex: 0 0 auto;
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
}

.faq-item[open] summary::before {
    content: "−";
}

.faq-answer {
    padding: 0 28px 24px 74px;
}

.faq-answer p {
    margin: 0;
    color: #e3e3e3;
    line-height: 1.8;
}

.faq-answer a {
    color: #ffffff;
}

.related-inline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.related-inline-shell {
    padding: 18px 0 8px;
    margin-top: 42px;
}

.related-inline-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.related-inline-header h2 {
    margin-bottom: 12px !important;
}

.related-inline-header p {
    margin: 0 auto !important;
    color: #e3e3e3;
    line-height: 1.7;
}

.related-inline-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 214px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.related-inline-card:hover,
.related-inline-card:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.related-inline-card h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
    line-height: 1.3;
}

.related-inline-card p {
    margin: 0 0 18px !important;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.related-inline-card span {
    margin-top: auto;
    color: #62c8ff;
    font-weight: 600;
    font-size: 0.94rem;
}

.related-inline-footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.related-inline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-direction: row;
    flex-wrap: nowrap;
    min-width: 0;
    padding: 12px 18px;
    border-radius: 999px;
    background: #f4f2f7;
    color: #161616;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.related-inline-button:hover,
.related-inline-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
    background: #ffffff;
}

.related-inline-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #d8c6f0;
    color: #5a3b78;
    font-size: 0.62rem;
    line-height: 1;
}

.related-inline-button-label {
    color: #161616;
    white-space: nowrap;
}

.related-inline-button-arrow {
    color: #161616;
    font-size: 1.1rem;
    line-height: 1;
}

.sidebar-widget,
.related-calculators-section a:not(.related-inline-button) {
    border-radius: 24px !important;
}

.redesigned-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.redesigned-sidebar > div {
    margin: 0 !important;
}

.related-calculators-section {
    background: transparent !important;
}

.related-calculators-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.related-calculators-header h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.related-calculators-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.related-calculators-section a:not(.related-inline-button) {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    min-height: 178px;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.related-calculators-section a:not(.related-inline-button) strong {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.3;
    font-weight: 700;
}

.related-calculators-section a:not(.related-inline-button) span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.related-calculators-section a:not(.related-inline-button):hover,
.related-calculators-section a:not(.related-inline-button):focus-visible {
    transform: translateY(-2px);
    border-color: rgba(123, 210, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
}

table,
th,
td {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

th {
    background: #111111 !important;
    color: var(--text) !important;
}

tr,
tr:nth-child(even),
tr:hover {
    background: transparent !important;
}

tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-header .page-container.topbar {
        position: relative;
        display: block;
        min-height: 88px;
        padding: 18px 0;
    }

    .brand {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 64px;
    }

    .menu-toggle {
        position: absolute;
        top: 14px;
        right: 0;
    }

    .mobile-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        width: auto;
        margin: 0;
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
        z-index: 2;
    }

    .redesigned-sidebar {
        grid-template-columns: 1fr;
    }

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

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

    .related-calculators-grid {
        grid-template-columns: 1fr;
    }

    .faq-item summary {
        padding: 22px 24px;
        font-size: 1.08rem;
    }

    .faq-answer {
        padding: 0 24px 22px 64px;
    }

    .page-hero-card,
    .toc-card {
        padding: 22px;
    }

    .hero-intent-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-shell {
        padding: 24px;
    }

    .content-shell > section {
        padding: 28px 0;
    }

    .page-hero-simple h1 {
        font-size: 2.8rem;
    }

    .hero-trust-badge {
        padding: 9px 14px;
        font-size: 0.9rem;
    }

    .calculator-body-layout {
        grid-template-columns: 1fr;
    }

    .calculator-results-panel {
        position: static;
    }

    .share-inline-bar {
        gap: 10px;
        margin-bottom: 24px;
    }

    .share-inline-icon {
        width: 38px;
        height: 38px;
    }

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

    .result-topline-grid {
        grid-template-columns: 1fr;
    }

    .calculator-card {
        padding: 24px;
    }

    .calculator-grid,
    .result-summary-grid,
    .salary-breakup-grid,
    .salary-breakup-grid.compact-breakup {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .how-it-works-flow,
    .compact-rate-grid,
    .compact-rate-grid-two,
    .example-grid,
    .reference-grid {
        grid-template-columns: 1fr;
    }

    .flow-step-card::after {
        display: none;
    }

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

@media (max-width: 720px) {
    .calculator-card {
        padding: 20px;
        border-radius: 24px;
    }

    .calculator-grid,
    .result-summary-grid,
    .salary-breakup-grid,
    .salary-breakup-grid.compact-breakup {
        grid-template-columns: 1fr;
    }

    .calculator-actions {
        justify-content: stretch;
    }

    .primary-action {
        width: 100%;
    }

    .related-calculators-section a:not(.related-inline-button) {
        min-height: 0;
        padding: 20px;
    }

    .result-shell {
        padding: 20px;
        border-radius: 24px;
    }

    .result-hero-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 560px) {
    .site-header .page-container.topbar {
        min-height: 70px;
        padding: 20px 0;
    }

    .brand-logo {
        display: none;
    }

    .brand-text strong {
        font-size: 18px;
        line-height: 1.2;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .brand-text span {
        display: none;
    }

    .page-hero-simple h1 {
        font-size: clamp(2.35rem, 10vw, 3.2rem);
        line-height: 1.04;
    }

    .page-hero-simple > p.text-base {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .hero-trust-badge {
        width: 100%;
        max-width: 100%;
        font-size: 0.88rem;
        padding: 10px 12px;
    }

    .hero-intent-strip {
        grid-template-columns: 1fr;
    }

    .hero-intent-card {
        min-height: 0;
        padding: 16px;
    }

    .result-stat-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-single {
        padding: 0;
    }

    .footer-bottom-bar {
        padding: 18px 0 0;
    }

    .page-breadcrumb {
        justify-content: flex-start;
    }

    .breadcrumb-scroll {
        padding-bottom: 6px;
    }

    .breadcrumb-list {
        gap: 8px;
        font-size: 0.86rem;
        margin: 0;
    }

    .related-inline-grid {
        grid-template-columns: 1fr;
    }

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

    .content-shell {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
        max-width: 100vw;
        padding: 22px 18px;
        border: 0;
        border-radius: 0;
        background: #1d1e1e;
    }

    .content-shell > section {
        padding: 24px 0;
    }

    .content-shell h2 {
        font-size: 1.6rem !important;
    }

    .content-shell h3 {
        font-size: 1.08rem !important;
    }

    .content-shell p,
    .content-shell li {
        font-size: 0.98rem;
    }

    .faq-item summary {
        padding: 20px 20px;
        gap: 14px;
        font-size: 1rem;
    }

    .faq-item summary::before {
        font-size: 1.7rem;
    }

    .faq-answer {
        padding: 0 20px 20px 54px;
    }

    .related-inline-card {
        min-height: 0;
    }

    .related-inline-card h3 {
        font-size: 1.08rem;
    }
}

@media (min-width: 427px) and (max-width: 560px) {
    .brand-text span {
        display: block;
    }
}
