*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Root defaults */
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
}

/* Body defaults */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
        "Open Sans", "Helvetica Neue", sans-serif;
    color: #0f172a;
    background-color: #ffffff;
}

/* Base body styles */
.site-body {
    background-color: #f6f7f8;
    /* background-light */
    color: #0f172a;
    /* slate-900 */
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.5;
}

/* Dark mode */
.dark .site-body {
    background-color: #101822;
    /* background-dark */
    color: #ffffff;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}

/* Layout */
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.brand {
    align-items: center;
}

.brand-icon {

    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon img {
    height: 60px;
    width: auto;
}


/* Right side */
.header-cta {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

/* Contact */
.contact {
    text-align: right;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: #64748b;
}

.contact-phone {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
}

/* Button */
.btn-primary {
    background: #136dec;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 150ms ease, box-shadow 150ms ease;
    box-shadow: 0 10px 20px rgba(19, 109, 236, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 20px 25px rgba(19, 109, 236, 0.3);
}

/* Responsive */
@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}




/* HERO SECTION */
.hero {
    position: relative;
    background-color: #0f172a;
    padding: 5rem 0;
    overflow: hidden;
    color: #ffffff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTAINER */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* LAYOUT */
.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-layout {
        flex-direction: row;
    }
}

/* MOBILE DEFAULT */
.hero-text,
.hero-form {
    width: 100%;
    max-width: 100%;
}

/* DESKTOP ONLY */
@media (min-width: 1024px) {
    .hero-text {
        max-width: 60%;
    }

    .hero-form {
        max-width: 40%;
    }
}


.hero-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(19, 109, 236, 0.2);
    border: 1px solid rgba(19, 109, 236, 0.3);
    border-radius: 9999px;
    color: #136dec;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 42rem;
    margin-bottom: 2rem;
}

/* STATS */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stat {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    align-items: center;
}

.stat-icon {
    font-size: 1.875rem;
    color: #136dec;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
}


.form-card {
    background: #ffffff;
    color: #0f172a;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 3rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    padding: 0 0.75rem;
    font-size: 1rem;
}

.form-group textarea {
    height: auto;
    padding: 0.75rem;
}

.form-button {
    margin-top: 1rem;
    background: #136dec;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}

.form-button:hover {
    background: #1d4ed8;
}

.form-note {
    font-size: 10px;
    text-align: center;
    color: #94a3b8;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* TRUST SECTION */
.trust-section {
    padding: 3rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

/* TITLE */
.trust-title {
    text-align: center;
    font-size: 0.90rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

/* LOGO WRAPPER */
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    /* opacity: 0.5; */

    transition: all 0.15s ease;
}

/* HOVER EFFECT */
.trust-logos:hover {
    filter: grayscale(0%);
}

/* LOGO BOX */
.trust-logo {
    /* height: 2.5rem; */
    /* visual consistency */
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* RESPONSIVE GAP */
@media (min-width: 768px) {
    .trust-logos {
        gap: 5rem;
    }
}

/* LEGACY SECTION */
.legacy-section {
    padding: 6rem 0;
    background-color: #f6f7f8;
}

/* LAYOUT */
.legacy-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .legacy-layout {
        flex-direction: row;
    }
}

/* IMAGE */
.legacy-image {
    width: 100%;
}

.legacy-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.legacy-content {
    width: 100%;
}

.legacy-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    color: #136dec;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.legacy-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

/* TEXT */
.legacy-text {
    font-size: 1.125rem;
    color: #475569;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legacy-text .highlight {
    font-weight: 700;
    color: #0f172a;
}

/* STATS */
.legacy-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.legacy-stat {
    padding-left: 1rem;
    border-left: 4px solid #136dec;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 900;
    color: #0f172a;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

/* HEADER */
.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
}

.benefits-subtitle {
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    color: #64748b;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* CARD */
.benefit-card {
    background-color: #f6f7f8;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    transition: all 0.15s ease;
}

.benefit-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* ICON */
.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(19, 109, 236, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #136dec;
    margin-bottom: 1.5rem;
}

.benefit-icon span {
    font-size: 1.875rem;
}

/* TEXT */
.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.benefit-text {
    color: #475569;
    font-size: 1rem;
}

/* STANDARDS SECTION */
.standards-section {
    padding: 6rem 0;
    background-color: #0f172a;
    color: #ffffff;
}

/* HEADER */
.standards-header {
    text-align: center;
    margin-bottom: 4rem;
}

.standards-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.standards-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 42rem;
    margin: 0 auto;
}

/* GRID */
.standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .standards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CARD */
.standard-card {
    background-color: #161e2a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.15s ease;
    cursor: default;
}

.standard-card:hover {
    background-color: rgba(30, 41, 59, 0.5);
}

.standard-card p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.625;
}

/* HEADER ROW */
.standard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.standard-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

/* BADGE */
.standard-badge {
    padding: 0.375rem 0.75rem;
    background-color: #136dec;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(19, 109, 236, 0.2);
    white-space: nowrap;
}

/* HIGHLIGHT */
.standard-card.highlighted {
    border-color: rgba(19, 109, 236, 0.3);
    box-shadow: 0 0 0 1px rgba(19, 109, 236, 0.2);
}

/* CTA */
.standards-cta {
    background-color: rgba(19, 109, 236, 0.05);
    border: 1px dashed rgba(19, 109, 236, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #cbd5f5;
    margin-bottom: 0.75rem;
}

.cta-text .material-symbols-outlined {
    color: #136dec;
}

/* BUTTON */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #136dec;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease;
    box-shadow: 0 20px 25px -5px rgba(19, 109, 236, 0.4);
    animation: pulse-custom 1s infinite;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

/* SECTION */
.why-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

/* LAYOUT */
.why-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .why-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* LEFT */
.why-content {
    width: 100%;
}

@media (min-width: 1024px) {
    .why-content {
        width: 60%;
    }
}

.why-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .why-title {
        text-align: left;
    }
}

/* GRID */
.why-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
    }
}

/* ITEM */
.why-item {
    display: flex;
    gap: 1rem;
}

.why-icon {
    width: 2rem;
    height: 2rem;
    background-color: #dcfce7;
    color: #16a34a;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.why-item p {
    font-size: 0.875rem;
    color: #475569;
    margin-top: 0.25rem;
}

.why-item .highlight {
    color: #136dec;
    text-transform: uppercase;
}

/* RIGHT / TESTIMONIAL */
.testimonial-wrapper {
    width: 100%;
    position: relative;
    background-color: rgba(19, 109, 236, 0.05);
    padding: 2rem;
    border-radius: 1.5rem;
}

@media (min-width: 1024px) {
    .testimonial-wrapper {
        width: 40%;
        padding: 3rem;
    }
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

/* STARS */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.material-symbols-outlined.filled {
    color: #facc15;
    font-variation-settings: 'FILL' 1;
}

/* TEXT */
.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #334155;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: #e5e7eb;
}

.name {
    font-weight: 700;
    color: #0f172a;
}

.role {
    font-size: 0.875rem;
    color: #64748b;
}

/* DECOR */
.decor-1 {
    position: absolute;
    width: 8rem;
    height: 8rem;
    background-color: rgba(19, 109, 236, 0.1);
    border-radius: 9999px;
    bottom: -1.5rem;
    right: -1.5rem;
}

.decor-2 {
    position: absolute;
    width: 16rem;
    height: 16rem;
    background-color: rgba(19, 109, 236, 0.05);
    border-radius: 9999px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(64px);
}

/* FOOTER BASE */
.footer {
    background-color: #0f172a;
    color: #ffffff;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

/* TOP GRID */
.footer-top {
    display: grid;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TITLE */
.footer-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* CONTACT */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-primary {
    color: #136dec;
}

.contact-heading {
    font-size: 1.125rem;
    font-weight: 700;
}

.contact-text {
    color: #94a3b8;
    line-height: 1.5;
}

/* MAP */
.footer-map {
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.5;
}

/* DIVIDER */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* BRAND */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #cbd5f5;
}



/* COPYRIGHT */
.footer-copy {
    font-size: 0.875rem;
    color: #64748b;
}

/* LINKS */
.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* MOBILE CTA BAR */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    z-index: 50;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* HIDE ON MD+ */
@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

/* CALL BUTTON */
.cta-call {
    flex: 1;
    background-color: #f1f5f9;
    color: #0f172a;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* QUOTE BUTTON */
.cta-quote {
    flex: 2;
    background-color: #136dec;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ICON SIZE */
.mobile-cta .material-symbols-outlined {
    font-size: 1.125rem;
}



/* MOBILE CAROUSEL */
@media (max-width: 767px) {
    .standards-carousel {
        position: relative;
        overflow: hidden;
    }

    .standards-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .standard-card,
    .standards-cta {
        min-width: 100%;
        scroll-snap-align: center;
    }

    /* Hide scrollbar */
    .standards-grid::-webkit-scrollbar {
        display: none;
    }

    /* Arrows */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(15, 23, 42, 0.8);
        color: #fff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 9999px;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-btn.prev {
        left: 0.5rem;
    }

    .carousel-btn.next {
        right: 0.5rem;
    }
}

/* DESKTOP: keep grid */
@media (min-width: 768px) {
    .standards-carousel {
        overflow: visible;
    }

    .carousel-btn {
        display: none;
    }
}


/* BENEFITS MOBILE CAROUSEL */
@media (max-width: 767px) {
    .benefits-carousel {
        position: relative;
        overflow: hidden;
    }

    .benefits-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .benefit-card {
        min-width: 100%;
        scroll-snap-align: center;
    }

    /* Hide scrollbar */
    .benefits-grid::-webkit-scrollbar {
        display: none;
    }

    /* Arrows */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(15, 23, 42, 0.8);
        color: #fff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 9999px;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-btn.prev {
        left: 0.5rem;
    }

    .carousel-btn.next {
        right: 0.5rem;
    }
}

/* DESKTOP: keep grid */
@media (min-width: 768px) {
    .benefits-carousel {
        overflow: visible;
    }

    .carousel-btn {
        display: none;
    }
}

/* MOBILE: form first */
@media (max-width: 767px) {
    .hero-layout {
        flex-direction: column-reverse;
    }

    .hero-text,
    .hero-form {
        max-width: 100%;
    }
}

#success-toast {
    position: fixed;
    top: 20px;
    right: -400px;
    /* start off screen */
    background-color: #16a34a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 15px;
    z-index: 9999;
    transition: right 0.5s ease;
}

/* active state */
#success-toast.show {
    right: 20px;
}

.form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success-message {
    margin-top: 14px;
    padding: 12px 14px;
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}