/* Custom Style */
:root {
    --ink: #000000;
    --paper: #ffffff;
    --brand-yellow: #ffdd00;
    --yellow-tint: #ffeb66;
    --green: #66bf8a;
    --green-tint: #c8e8d4;
    --blue-tint: #b3d4ff;
    --gray-light: #f4f4f4;
    --gray-mid: #e0e0e0;
    --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* !important patches — production maintenance */
.Cta__ButtonOneSecondary {
    display: flex !important;
}

.ButtonCtaContainer--Desktop {
    margin: 5rem 0 !important;
}

input:focus,
textarea:focus {
    outline: none !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== HEADER ===== */
.HeaderContainer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 0 2rem;
}

.StandardHeader__upper-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
}

.StandardHeader__Primary a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.StandardHeader__Primary span {
    font-size: 1.1rem;
    font-weight: 700;
}

.InternalNavigation__List {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.InternalNavigation__List a {
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.InternalNavigation__List a:hover {
    opacity: 0.55;
}

.StandardHeader__CtaCol .btn-nav {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.StandardHeader__CtaCol .btn-nav:hover {
    background: #333;
}

.HeaderContainer__ToggleNavigation {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* ===== HERO ===== */
.HeroVideo {
    position: relative;
    min-height: 88vh;
    background: var(--ink);
    overflow: hidden;
}

.HeroVideo__Bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}

.HeroVideo__Overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    min-height: 88vh;
    padding: 0 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.HeroVideo__Content {
    max-width: 680px;
    color: var(--paper);
}

.HeroVideo__Title {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.HeroVideo__StrapLine {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
}

.Cta__ButtonOneSecondary {
    background: var(--paper);
    color: var(--ink);
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: background 0.2s;
    text-decoration: none;
}

.Cta__ButtonOneSecondary:hover {
    background: var(--brand-yellow);
}

.arrow {
    display: inline-flex;
    position: relative;
    transition: right 0.3s ease;
    right: 0;
}

a:hover .arrow,
button:hover .arrow {
    right: -6px;
}

/* ===== MODULE WRAP ===== */
.ModuleWrap {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== ACTION PANEL ===== */
.BackgroundColorContainer__White {
    background: var(--paper);
}

.BackgroundColorContainer__SecondaryYellowTint {
    background: var(--yellow-tint);
}

.BackgroundColorContainer__SecondaryBlueTint {
    background: var(--blue-tint);
}

.BackgroundColorContainer__SecondaryGreenTint {
    background: var(--green-tint);
}

.ActionPanel {
    padding: 5rem 2rem;
}

.ActionPanel .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ActionPanel__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.ActionPanel__Title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.ActionPanel__RichText p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ActionPanel__Button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--paper);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.5rem;
    transition: background 0.2s;
}

.ActionPanel__Button:hover {
    background: #333;
}

/* ===== IMAGE CTA GRID ===== */
.imageCTArow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-bottom: 60px;
}

@media (max-width: 900px) {
    .imageCTArow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .imageCTArow {
        grid-template-columns: 1fr;
    }
}

.imageCTAitem {
    background: var(--gray-light);
    overflow: hidden;
}

.CtaPanel__ImageLink {
    display: block;
    overflow: hidden;
}

.CtaPanel__ImageLink img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.imageCTAitem:hover .CtaPanel__ImageLink img {
    transform: scale(1.04);
}

.imageCTAitem h3 {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1rem 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.CtaPanel__Link {
    font-size: 1.05rem;
    font-weight: 700;
}

.CtaPanel__Link:hover {
    text-decoration: underline;
}

.imageCTAitem p {
    font-size: 0.9rem;
    padding: 0.3rem 1rem 1.2rem;
    color: #444;
    line-height: 1.5;
}

/* ===== PRODUCT PROMO LARGE ===== */
.ProductPromoLarge {
    padding: 5rem 2rem;
}

.ProductPromoLarge__SecondaryYellow {
    background: var(--brand-yellow);
}

.ProductPromoLarge__SecondaryGreenTint {
    background: var(--green-tint);
}

.ProductPromoLarge__grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ProductPromoLarge--ImageRight .ProductPromoLarge__grid {
    direction: ltr;
}

@media (max-width: 768px) {
    .ProductPromoLarge__grid {
        grid-template-columns: 1fr;
    }
}

.ProductPromoLarge__kicker {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.TextContent__ProductTitle {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.TextContent__Description p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.TextContent__CTA {
    margin-top: 1.8rem;
}

.Cta__ButtonTwoPrimary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--paper);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.Cta__ButtonTwoPrimary:hover {
    background: #333;
}

.ImageContainer img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .ImageContainer img {
        height: 260px;
    }
}

/* ===== PRICING ===== */
.PricingSection {
    background: var(--paper);
    padding: 5rem 2rem;
}

.PricingSection__title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.6rem;
}

.PricingSection__sub {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 3rem;
}

.PricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .PricingGrid {
        grid-template-columns: 1fr;
    }
}

.PricingCard {
    border: 2px solid var(--ink);
    padding: 2rem 1.5rem;
    position: relative;
}

.PricingCard--Featured {
    background: var(--brand-yellow);
    border-color: var(--ink);
}

.PricingCard__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.PricingCard__name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.PricingCard__price {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.3rem;
}

.PricingCard__period {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.PricingCard--Featured .PricingCard__period {
    color: #333;
}

.PricingCard__features {
    margin-bottom: 2rem;
}

.PricingCard__features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.PricingCard__features li i {
    font-size: 0.8rem;
}

.PricingCard__cta {
    display: block;
    text-align: center;
    background: var(--ink);
    color: var(--paper);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.PricingCard__cta:hover {
    background: #333;
}

/* ===== TESTIMONIALS ===== */
.TestimonialsSection {
    background: var(--green);
    padding: 5rem 2rem;
}

.TestimonialsSection__title {
    text-align: center;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.TestimonialsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .TestimonialsGrid {
        grid-template-columns: 1fr;
    }
}

.TestimonialCard {
    background: var(--paper);
    padding: 1.8rem;
}

.TestimonialCard__text {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.TestimonialCard__author {
    font-weight: 700;
    font-size: 0.9rem;
}

.TestimonialCard__role {
    font-size: 0.82rem;
    color: #555;
}

/* ===== BUTTON CTA CONTAINER (icon cards) ===== */
.ButtonCtaContainer--Desktop {
    padding: 0 2rem;
    margin: 5rem 0 !important;
}

.IconCardsRow {
    display: flex;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ButtonCtaContainer--Desktop {
        display: none;
    }
}

.IconCard {
    flex: 1;
    background: var(--gray-light);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.IconCard__svg {
    margin: 0 auto 1.2rem;
}

.IconCard__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.CtaPanel__description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* ===== NEWSLETTER ===== */
.ActionPanelNewsletter__ActionPanel {
    background: var(--blue-tint);
    padding: 5rem 2rem;
    text-align: center;
}

.ActionPanelNewsletter__Title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
}

.ActionPanelNewsletter__Text {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.FormGroup--Panel {
    display: flex;
    max-width: 460px;
    margin: 0 auto 1rem;
    border: 2px solid var(--ink);
}

.FormGroup__Label {
    display: none;
}

.FormGroup--Panel input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 1rem;
    background: var(--paper);
    font-family: var(--font-main);
}

.FormGroup__SubmitIcon {
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.FormGroup__SubmitIcon:hover {
    background: #333;
}

.ActionPanelNewsletter__TermsBg {
    font-size: 0.8rem;
    color: #444;
}

.ActionPanelNewsletter__TermsBg a {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.Footer__Wrapper {
    background: var(--paper);
    border-top: 2px solid var(--ink);
    padding: 4rem 2rem 0;
}

.Footer__grid {
    display: grid;
    grid-template-columns: 3fr 6fr 3fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    .Footer__grid {
        grid-template-columns: 1fr;
    }
}

.Footer__col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.Footer__col p,
.Footer__col address {
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: normal;
    color: #444;
}

.Footer__col a:hover {
    text-decoration: underline;
}

.Footer__center {
    text-align: center;
}

.Footer__logo {
    margin: 0 auto 1rem;
}

.Footer__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.Footer__social a {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.Footer__social a:hover {
    background: var(--ink);
    color: var(--paper);
}

.Footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.2rem;
    font-size: 0.82rem;
    margin-bottom: 0.8rem;
}

.Footer__legal a:hover {
    text-decoration: underline;
}

.Footer__copyright {
    font-size: 0.8rem;
    color: #555;
}

.Footer__TaglineWrapper {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 2rem;
}

.Footer__Tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== COOKIES GDPR ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    color: var(--paper);
    padding: 1.2rem 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
}

#cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 700px;
}

#cookie-banner a {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--brand-yellow);
    color: var(--ink);
    border: none;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-cookie-decline {
    background: transparent;
    color: var(--paper);
    border: 1.5px solid var(--paper);
    padding: 10px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

/* ===== MOBILE NAV ===== */
.MobileNav {
    display: none;
    background: var(--paper);
    border-top: 1px solid var(--gray-mid);
    padding: 1.5rem 2rem;
}

.MobileNav.open {
    display: block;
}

.MobileNav ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.MobileNav ul a {
    font-weight: 600;
    font-size: 1.05rem;
}

@media (max-width: 768px) {

    .InternalNavigation,
    .StandardHeader__CtaCol {
        display: none;
    }

    .HeaderContainer__ToggleNavigation {
        display: block;
    }
}

/* ===== INNER PAGES ===== */
.PageHero {
    background: var(--ink);
    color: var(--paper);
    padding: 5rem 2rem 4rem;
}

.PageHero__inner {
    max-width: 800px;
}

.PageHero__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.PageHero__h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.PageHero__desc {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 560px;
    line-height: 1.6;
}

.PageContent {
    padding: 4rem 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.PageContent h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 2.5rem 0 0.8rem;
    letter-spacing: -0.4px;
}

.PageContent h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.8rem 0 0.5rem;
}

.PageContent p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    color: #222;
}

.PageContent ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.PageContent ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
    color: #222;
}

/* ===== ABOUT PAGE ===== */
.AboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .AboutGrid {
        grid-template-columns: 1fr;
    }
}

.AboutGrid__text h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.6px;
    margin-bottom: 1rem;
}

.AboutGrid__text p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    color: #222;
}

.AboutGrid__img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ===== CONTACT FORM ===== */
.ContactSection {
    padding: 5rem 2rem;
    background: var(--gray-light);
}

.ContactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ContactGrid {
        grid-template-columns: 1fr;
    }
}

.ContactInfo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.ContactInfo p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.8rem;
}

.ContactInfo a:hover {
    text-decoration: underline;
}

.ContactForm h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.FormField {
    margin-bottom: 1.2rem;
}

.FormField label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.FormField input,
.FormField select,
.FormField textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--ink);
    font-size: 1rem;
    font-family: var(--font-main);
    background: var(--paper);
    transition: border-color 0.2s;
}

.FormField textarea {
    resize: vertical;
    min-height: 120px;
}

.FormField input:focus,
.FormField select:focus,
.FormField textarea:focus {
    border-color: #555;
    outline: none !important;
}

.btn-submit {
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #333;
}

/* ===== FAQ ===== */
.FaqSection {
    padding: 5rem 2rem;
    background: var(--paper);
}

.FaqSection__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
}

.FaqList {
    max-width: 720px;
    margin: 0 auto;
}

.FaqItem {
    border-bottom: 1.5px solid var(--gray-mid);
}

.FaqItem__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    gap: 1rem;
}

.FaqItem__question i {
    transition: transform 0.3s;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.FaqItem.open .FaqItem__question i {
    transform: rotate(180deg);
}

.FaqItem__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.FaqItem.open .FaqItem__answer {
    max-height: 400px;
}

.FaqItem__answer p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: #333;
    padding-bottom: 1.2rem;
}

/* ===== STATS BAR ===== */
.StatsBar {
    background: var(--ink);
    color: var(--paper);
    padding: 3rem 2rem;
}

.StatsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 600px) {
    .StatsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.StatItem__number {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.StatItem__label {
    font-size: 0.88rem;
    opacity: 0.7;
    margin-top: 0.2rem;
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
    background: var(--green-tint);
    border: 1.5px solid var(--green);
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
    margin-top: 1rem;
}