:root {
    --usa-navy: #002147;
    --usa-navy-light: #003366;
    --usa-navy-dark: #001a38;
    --usa-red: #A6192E;
    --usa-red-light: #c41e3a;
    --usa-red-dark: #8b1526;
    --usa-white: #FFFFFF;
    --usa-off-white: #f8f9fc;
    --usa-muted: rgba(0, 33, 71, 0.7);
    --shadow-sm: 0 2px 8px rgba(0, 33, 71, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 33, 71, 0.12);
    --shadow-lg: 0 24px 64px rgba(0, 33, 71, 0.16);
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--usa-navy);
    background: var(--usa-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.btn-usa {
    background: var(--usa-red);
    color: var(--usa-white);
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(166, 25, 46, 0.35);
}
.btn-usa:hover {
    background: var(--usa-red-light);
    color: var(--usa-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(166, 25, 46, 0.4);
}
.btn-outline-usa {
    border: 2px solid var(--usa-red);
    color: var(--usa-red);
    background: transparent;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: var(--transition);
}
.btn-outline-usa:hover {
    background: var(--usa-red);
    color: var(--usa-white);
    border-color: var(--usa-red);
}

.bg-usa-navy { background-color: var(--usa-navy) !important; }
.bg-usa-red { background-color: var(--usa-red) !important; }
.text-usa-navy { color: var(--usa-navy) !important; }
.text-usa-red { color: var(--usa-red) !important; }

.navbar-usa {
    background: rgba(0, 33, 71, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.4s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar-usa .navbar-brand img {
    height: 42px;
    width: auto;
    transition: height 0.3s ease, filter 0.35s ease;
}
.navbar-usa.navbar-scrolled .navbar-brand img {
    height: 38px;
    filter: brightness(0) invert(1);
}
.navbar-usa.navbar-over-hero {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(0,33,71,0.08);
    box-shadow: 0 1px 0 rgba(0,33,71,0.06);
}
.navbar-usa.navbar-scrolled {
    background: rgba(0, 33, 71, 0.98);
    padding: 0.4rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
    border-bottom-color: rgba(255,255,255,0.08);
}
.navbar-usa .navbar-brand { padding: 0; }
.navbar-usa.navbar-at-top .navbar-brand img {
    filter: brightness(0) saturate(100%);
}
.navbar-usa .navbar-nav .nav-link {
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}
.navbar-usa.navbar-over-hero .navbar-nav .nav-link { color: rgba(0, 33, 71, 0.88); }
.navbar-usa.navbar-at-top .navbar-nav .nav-link:hover { color: var(--usa-navy); background: rgba(0,33,71,0.06); }
.navbar-usa .navbar-nav .nav-link:hover { color: var(--usa-white); background: rgba(255,255,255,0.12); }
.navbar-usa.navbar-scrolled .navbar-nav .nav-link { color: rgba(255,255,255,0.95); }
.navbar-usa.navbar-scrolled .navbar-nav .nav-link:hover { background: rgba(255,255,255,0.1); }
.navbar-usa .navbar-nav .btn { font-weight: 600; padding: 0.45rem 1rem; }
.navbar-usa.navbar-at-top .navbar-nav .btn-outline-usa { color: #1e3a5f; border-color: #1e3a5f; }
.navbar-usa.navbar-at-top .navbar-nav .btn-outline-usa:hover { color: var(--usa-white); border-color: var(--usa-red); background: var(--usa-red); }
.navbar-usa.navbar-at-top .navbar-nav .btn-usa { background: var(--usa-red); color: var(--usa-white); border-color: var(--usa-red); }
.navbar-usa .navbar-toggler { border-color: rgba(255,255,255,0.5); padding: 0.4rem 0.5rem; }
.navbar-usa.navbar-over-hero .navbar-toggler { border-color: rgba(0,33,71,0.5); }
.navbar-usa.navbar-at-top .navbar-toggler { border-color: rgba(0,33,71,0.5); }
.navbar-usa .navbar-toggler-icon { filter: brightness(0) invert(1); }
.navbar-usa.navbar-over-hero .navbar-toggler-icon,
.navbar-usa.navbar-at-top .navbar-toggler-icon { filter: none; }
.navbar-usa .navbar-collapse { margin-top: 0.5rem; }
@media (min-width: 992px) {
    .navbar-usa .navbar-collapse { margin-top: 0; }
}
.dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.35rem;
}
.dropdown-item {
    border-radius: 0.5rem;
    padding: 0.55rem 1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover { background: rgba(166, 25, 46, 0.12); color: var(--usa-red); }
.dropdown-toggle::after { transition: transform 0.25s ease; }
.show .dropdown-toggle::after { transform: rotate(180deg); }

footer.usa-footer {
    background: linear-gradient(180deg, #001a33 0%, var(--usa-navy-dark) 50%, #000d1a 100%);
    color: var(--usa-white);
    padding: 4.5rem 0 0;
    position: relative;
}
footer.usa-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--usa-red), rgba(166,25,46,0.6));
}
footer.usa-footer .footer-brand-block {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: inline-block;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
}
footer.usa-footer .footer-brand-block img { max-width: 160px; height: auto; display: block; filter: brightness(0) invert(1); }
footer.usa-footer .footer-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--usa-white);
    margin-bottom: 1.25rem;
}
footer.usa-footer ul.list-unstyled li { margin-bottom: 0.5rem; }
footer.usa-footer ul.list-unstyled a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
footer.usa-footer ul.list-unstyled a:hover { color: var(--usa-white); padding-left: 4px; }
footer.usa-footer .footer-contact p { color: rgba(255,255,255,0.85); margin-bottom: 0.4rem; }
footer.usa-footer .footer-contact a { color: rgba(255,255,255,0.9); }
footer.usa-footer .footer-contact a:hover { color: var(--usa-white); }
footer.usa-footer .footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
footer.usa-footer .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--usa-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.2s;
}
footer.usa-footer .footer-social a:hover { background: var(--usa-red); transform: translateY(-2px); }
footer.usa-footer .footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
footer.usa-footer .footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
footer.usa-footer .footer-legal a { color: rgba(255,255,255,0.75); }
footer.usa-footer .footer-legal a:hover { color: var(--usa-white); }
footer.usa-footer .footer-disclaimer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.7rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}
footer.usa-footer a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
footer.usa-footer a:hover { color: var(--usa-white); }
footer.usa-footer .border-secondary { border-color: rgba(255,255,255,0.12) !important; }

.hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--usa-white);
    overflow: hidden;
}
.hero-full .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-full .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 33, 71, 0.92) 0%, rgba(0, 51, 102, 0.85) 50%, rgba(0, 33, 71, 0.75) 100%);
}
.hero-full .hero-content { position: relative; z-index: 2; }
.hero-full .hero-badge {
    display: inline-block;
    background: rgba(166, 25, 46, 0.9);
    color: var(--usa-white);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-full .hero-title { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.1; letter-spacing: -0.02em; }
.hero-full .hero-sub { font-size: 1.15rem; opacity: 0.95; max-width: 28rem; }

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--usa-red);
    margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.02em; }

.category-card {
    display: block;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--usa-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 33, 71, 0.08);
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(166, 25, 46, 0.2);
}
.category-card .cat-img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s ease;
}
.category-card .cat-img-windows {
    object-position: 70% center;
}
.category-card:hover .cat-img { transform: scale(1.06); }
.category-card .cat-body { padding: 1.25rem; }
.category-card .cat-title { font-size: 1.1rem; font-weight: 700; color: var(--usa-navy); margin: 0; }

.stats-row {
    position: relative;
    z-index: 2;
    overflow: visible;
    margin-top: 1.25rem;
    margin-bottom: 0;
}
.stats-row .col-6,
.stats-row .col-sm-3 { overflow: visible; }
.stat-card {
    background: var(--usa-white);
    border-radius: var(--radius);
    padding: 1.25rem 0.75rem;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 33, 71, 0.15);
    border: 2px solid rgba(166, 25, 46, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: visible;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.stat-card:hover { box-shadow: 0 10px 32px rgba(0, 33, 71, 0.2); transform: translateY(-6px); border-color: rgba(166, 25, 46, 0.4); }
.stat-num-wrap {
    min-height: 1.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    flex-wrap: nowrap;
    overflow: visible;
}
.stat-num {
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: var(--usa-red);
    font-family: 'Syne', sans-serif;
    line-height: 1;
    display: inline-block;
    visibility: visible;
    opacity: 1;
    text-align: center;
}
.stat-suffix {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    font-weight: 700;
    color: var(--usa-red);
    font-family: 'Syne', sans-serif;
    opacity: 1;
    line-height: 1;
    margin-left: 0.25em;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--usa-navy);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: center;
    max-width: 100%;
}
.why-section .stats-row { padding: 0 0.25rem; }

.why-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.why-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 33, 71, 0.3) 100%);
    pointer-events: none;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.why-section {
    background: linear-gradient(180deg, var(--usa-white) 0%, var(--usa-off-white) 50%, var(--usa-white) 100%);
    overflow: visible;
}
.why-section .section-label-accent {
    position: relative;
    padding-left: 1.25rem;
}
.why-section .section-label-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.25rem;
    background: var(--usa-red);
    border-radius: 2px;
}
.why-section .why-lead {
    color: var(--usa-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}
.why-section .why-list { margin-bottom: 1.75rem !important; }
.why-section .why-list-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    font-weight: 500;
    color: var(--usa-navy);
}
.why-section .why-check {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 50%;
    background: var(--usa-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.why-section .why-check::after {
    content: '✓';
    color: var(--usa-white);
    font-size: 0.7rem;
    font-weight: 700;
}
.why-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(166, 25, 46, 0.15);
    position: relative;
}
.why-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    pointer-events: none;
    z-index: 1;
}
.why-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}
.cta-pro-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    aspect-ratio: 1;
    border: 3px solid rgba(255,255,255,0.2);
}
.cta-pro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-block {
    background: linear-gradient(135deg, var(--usa-navy) 0%, var(--usa-navy-light) 100%);
    color: var(--usa-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.cta-block .cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}
.cta-block .cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 33, 71, 0.95) 0%, rgba(0, 33, 71, 0.8) 100%); }
.cta-block .cta-inner { position: relative; z-index: 2; }

.our-story-section { background: var(--usa-off-white); }
.our-story-section .story-check {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    border-radius: 50%;
    background: var(--usa-red);
    flex-shrink: 0;
    margin-top: 0.2rem;
    position: relative;
}
.our-story-section .story-check::after {
    content: '✓';
    position: absolute;
    inset: 0;
    color: var(--usa-white);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-stats { align-items: stretch; }
.story-stat-card {
    background: var(--usa-white);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 33, 71, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.story-stat-card:hover { box-shadow: var(--shadow-md); border-color: rgba(166, 25, 46, 0.2); }
.story-stat-num {
    display: block;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--usa-red);
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.35rem;
    line-height: 1.1;
    text-align: center;
}
.story-stat-label {
    font-size: 0.8rem;
    color: var(--usa-muted);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}
.story-value-card {
    background: var(--usa-white);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 33, 71, 0.06);
    transition: var(--transition);
}
.story-value-card:hover { box-shadow: var(--shadow-md); border-color: rgba(166, 25, 46, 0.15); transform: translateY(-2px); }
.story-value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(166, 25, 46, 0.12);
    color: var(--usa-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.story-value-icon i {
    font-size: 1.35rem;
    line-height: 1;
    display: block;
    font-style: normal;
    font-weight: normal;
}
.story-value-icon .bi::before { vertical-align: middle; }
.story-value-card h4,
.story-value-card h5 { text-align: left; }
.story-value-card p { text-align: left; }

.page-hero {
    background: linear-gradient(135deg, var(--usa-navy) 0%, var(--usa-navy-light) 50%, #002855 100%);
    color: var(--usa-white);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
}
.page-hero .hero-title { font-size: clamp(1.85rem, 4vw, 2.65rem); margin-bottom: 0.5rem; font-weight: 700; }
.page-hero .lead { font-size: 1.1rem; opacity: 0.92; }
.card-usa .form-control, .card-usa .form-select { border-radius: 0.5rem; border: 1px solid rgba(0, 33, 71, 0.12); }
.card-usa .form-control:focus { border-color: var(--usa-red); box-shadow: 0 0 0 0.2rem rgba(166, 25, 46, 0.15); }
.page-hero .display-5 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.legal-content { color: var(--usa-muted); line-height: 1.75; }
.legal-content h2, .legal-content h3 { color: var(--usa-navy); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.form-label { font-weight: 600; color: var(--usa-navy); }
.btn-usa { font-weight: 600; }

.card-usa {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 33, 71, 0.06);
}
.card-usa .card-body { padding: 1.5rem 1.5rem; }
.card-usa:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
section.py-5 .container { max-width: 1140px; }
.bg-light { background: var(--usa-off-white) !important; }
.accordion-usa .accordion-button {
    background: var(--usa-white);
    color: var(--usa-navy);
    font-weight: 600;
    border: 1px solid rgba(0, 33, 71, 0.08);
    border-radius: var(--radius) !important;
}
.accordion-usa .accordion-button:not(.collapsed) { background: var(--usa-navy); color: var(--usa-white); border-color: var(--usa-navy); }
.accordion-usa .accordion-button:focus { box-shadow: 0 0 0 3px rgba(166, 25, 46, 0.2); }
.form-control:focus, .form-select:focus { border-color: var(--usa-red); box-shadow: 0 0 0 3px rgba(166, 25, 46, 0.15); }
.card-usa .form-control.is-invalid { border-color: var(--usa-red); }
.card-usa .form-control.is-invalid:focus { box-shadow: 0 0 0 0.2rem rgba(166, 25, 46, 0.25); }
.invalid-feedback { color: var(--usa-red); }

#join-pro-form { scroll-margin-top: 5.5rem; }

#back-to-top.back-to-top-btn,
.back-to-top-btn#back-to-top {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1050;
    transition: var(--transition);
    background: #fff;
    color: #002147;
    border: 2px solid rgba(0, 33, 71, 0.25);
    box-shadow: 0 4px 20px rgba(0, 33, 71, 0.2);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
}
#back-to-top.back-to-top-btn:hover,
.back-to-top-btn#back-to-top:hover {
    background: #f8f9fc;
    color: #A6192E;
    border-color: #A6192E;
}
#back-to-top.back-to-top-btn.show,
.back-to-top-btn#back-to-top.show { display: flex !important; }
#back-to-top.back-to-top-btn:hover,
.back-to-top-btn#back-to-top:hover { transform: translateY(-4px); }
#back-to-top.back-to-top-on-light {
    background: #A6192E !important;
    color: #fff !important;
    border-color: #A6192E;
    box-shadow: 0 4px 20px rgba(166, 25, 46, 0.4);
}
#back-to-top.back-to-top-on-light:hover {
    background: #c41e3a !important;
    color: #fff !important;
    border-color: #c41e3a;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 33, 71, 0.98);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 0.75rem;
        box-shadow: var(--shadow-lg);
    }
    .hero-full .hero-title { font-size: 2rem; }
    .hero-full .hero-sub { font-size: 1rem; }
}
@media (max-width: 767.98px) {
    .cta-block .cta-inner { text-align: center; }
    .cta-block .cta-inner .btn { width: 100%; max-width: 320px; }
}
@media (max-width: 575.98px) {
    .category-card .cat-body { padding: 1rem; }
    .category-card .cat-title { font-size: 1rem; }
    .stat-card { padding: 1.25rem; }
    .hero-full .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; }
}
