﻿
:root {
    --primary: #0d6efd;
    --secondary: #1b2838;
    --accent: #ffb547;
    --dark: #050816;
    --light: #f5f7fb;
    --text: #101827;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: var(--light);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
}

/* Navbar & Logo */
.navbar {
    background: #050816;
    padding: 1rem 0.75rem;
}

.navbar-nav .nav-link {
    color: #e5e7eb !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 0.35rem;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.25s ease;
    }

    .navbar-nav .nav-link:hover::after {
        transform: scaleX(1);
    }

    .navbar-nav .nav-link:hover {
        color: #ffffff !important;
    }

.navbar-toggler {
    border-color: rgba(255,255,255,0.2);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: radial-gradient(circle at 20% 0%, #4f9dff, var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.45);
    position: relative;
    overflow: hidden;
}

    .brand-mark::before {
        content: "";
        position: absolute;
        inset: 3px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.25);
    }

    .brand-mark i {
        color: #ffffff;
        font-size: 1.2rem;
        position: relative;
        z-index: 1;
    }

.brand-text-main {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.brand-text-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #9ca3af;
}

.brand-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-stack img.logo {
    max-width: 200px;
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(13,110,253,0.8), transparent 50%), linear-gradient(135deg, rgba(5,8,22,0.94), rgba(5,8,22,0.96));
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 40px 0 100px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.85);
    border: 1px solid rgba(148,163,184,0.5);
    color: #e5e7eb;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

    .hero-tag span.dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 0 6px rgba(34,197,94,0.25);
        margin-right: 5px;
    }

.hero h1 {
    font-size: clamp(2.4rem, 3.5vw + 1.4rem, 3.7rem);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

    .hero h1 span.highlight {
        background: linear-gradient(90deg, #4f9dff, #22d3ee, #ffb547);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-lead {
    font-size: 1.05rem;
    color: #cbd5f5;
    max-width: 540px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.hero-pill {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.45);
    font-size: 0.78rem;
    color: #e5e7eb;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.6rem;
    color: #e5e7eb;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.hero-meta-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.hero-cta-group {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.4rem;
}

.btn-primary-custom {
    border-radius: 999px;
    padding: 0.75rem 1.7rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    background: linear-gradient(120deg, var(--primary), #4f46e5);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(37,99,235,0.45);
    transform-origin: center;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.25s ease-out;
}

    .btn-primary-custom:hover {
        background: linear-gradient(120deg, #2563eb, #4338ca);
        transform: translateY(-1px);
        box-shadow: 0 22px 45px rgba(37,99,235,0.55);
        color: #ffffff;
    }

.btn-secondary-outline {
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(148,163,184,0.7);
    background: rgba(15,23,42,0.8);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s ease-out;
}

    .btn-secondary-outline i {
        font-size: 0.9rem;
    }

    .btn-secondary-outline:hover {
        border-color: #93c5fd;
        color: #ffffff;
        background: rgba(15,23,42,1);
    }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.2rem;
    font-size: 0.78rem;
    color: #9ca3af;
}

    .hero-trust strong {
        color: #e5e7eb;
        font-weight: 600;
    }

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.hero-trust-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    color: #e5e7eb;
}

.hero-right-card {
    background: rgba(15,23,42,0.96);
    border-radius: 24px;
    padding: 1.4rem;
    border: 1px solid rgba(148,163,184,0.45);
    box-shadow: 0 22px 60px rgba(15,23,42,0.7);
    backdrop-filter: blur(16px);
}

.hero-right-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.hero-right-title {
    font-size: 0.9rem;
    color: #e5e7eb;
    font-weight: 600;
}

.hero-status-pill {
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(110,231,183,0.7);
    color: #bbf7d0;
    background: rgba(6,78,59,0.6);
}

.hero-right-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 1rem;
}

    .hero-right-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.6s ease-out;
    }

.hero-right-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.8), transparent 40%);
}

.hero-right-metrics {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.metric-item {
    flex: 1;
}

.metric-label {
    font-size: 0.72rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.metric-value {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    color: #e5e7eb;
}

    .metric-value span {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .metric-value small {
        font-size: 0.75rem;
        color: #9ca3af;
    }

.hero-right-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(55,65,81,0.8);
    padding-top: 0.6rem;
    margin-top: 0.4rem;
}

.hero-right-badge {
    font-size: 0.7rem;
    color: #9ca3af;
}
.hero-right-badge .hero-rating {
    margin-bottom: 5px;
}
.hero-right-badge .hero-rating i {
    color: #facc15;
}
.hero-right-badge .hero-testimonial {
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.hero-right-badge .hero-client {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.hero-right-link {
    font-size: 0.78rem;
    color: #bfdbfe;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

    .hero-right-link i {
        font-size: 0.78rem;
    }

/* Main content section */
.section-main {
    background: var(--light);
    padding: 90px 0;
}
.section-main.section-alt {
    background: #FFF;
}

.section-title-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title, .section-title a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.section-title a {
    outline:none;
}

.section-lead {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.4rem;
}

.bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

    .bullet-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.65rem;
        margin-bottom: 0.8rem;
        color: #374151;
        font-size: 0.96rem;
    }

.bullet-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(37,99,235,0.07);
    border: 1px solid rgba(37,99,235,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
    font-size: 0.86rem;
    color: #6b7280;
}

.trust-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #111827;
    font-weight: 600;
}

    .trust-rating i {
        color: #facc15;
    }

.trust-divider {
    width: 1px;
    height: 26px;
    background: #e5e7eb;
}

.trust-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.84rem;
}

.trust-client-pill {
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    border: 1px dashed #d1d5db;
    color: #4b5563;
}

.image-frame {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(15,23,42,0.25);
    border: 1px solid #e5e7eb;
    background: #ffffff;
    position: relative;
}

    .image-frame img {
        width: 100%;
        display: block;
        transition: transform 0.6s ease-out;
    }

.image-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 0.55rem 0.9rem;
    border-radius: 16px;
    background: rgba(15,23,42,0.94);
    color: #e5e7eb;
    font-size: 0.78rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    border: 1px solid rgba(148,163,184,0.6);
    backdrop-filter: blur(16px);
}

    .image-badge strong {
        font-size: 0.86rem;
        color: #ffffff;
    }

    .image-badge span {
        color: #9ca3af;
    }

/* CTA Block */
.section-cta {
    background: linear-gradient(135deg, #050816, #111827);
    padding: 80px 0;
    color: #e5e7eb;
    text-align: center;
}

    .section-cta h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        letter-spacing: -0.03em;
    }

    .section-cta p {
        max-width: 620px;
        margin: 0 auto 1.7rem;
        color: #9ca3af;
    }

.cta-pulse {
    animation: ctaPulse 1.8s ease-in-out infinite;
}

.cta-secondary-text {
    font-size: 0.86rem;
    color: #9ca3af;
    margin-top: 0.75rem;
}

    .cta-secondary-text i {
        color: #22c55e;
    }

/* Benefits */
.section-benefits {
    background: #ffffff;
    padding: 90px 0;
}
.section-benefits .benefit-highlight {
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header-center .section-title-kicker {
        margin-bottom: 0.3rem;
    }

    .section-header-center .section-title {
        margin-bottom: 0.6rem;
    }

    .section-header-center p {
        max-width: 620px;
        margin: 0 auto;
        color: #4b5563;
        font-size: 0.98rem;
    }

.benefit-card {
    background: #f9fafb;
    border-radius: 22px;
    padding: 1.4rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 22px 45px rgba(15,23,42,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out, background 0.22s ease-out;
    position: relative;
    overflow: hidden;
}

    .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 70px rgba(15,23,42,0.16);
        border-color: rgba(37,99,235,0.55);
        background: #ffffff;
    }

.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(37,99,235,0.06);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.45rem;
}

.benefit-text {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.9rem;
}

.benefit-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.8rem;
}

    .benefit-meta strong {
        color: #111827;
    }

.benefit-image-wrapper {
    margin-top: auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

    .benefit-image-wrapper img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease-out;
    }

.benefit-card:hover img {
    transform: scale(1.05);
}

/* Info section */
.section-info {
    background: #f3f4f6;
    padding: 90px 0 70px;
}

.info-text-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

    .info-text-block h2 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        color: var(--dark);
        letter-spacing: -0.03em;
    }

    .info-text-block p {
        font-size: 0.98rem;
        color: #4b5563;
        margin-bottom: 0.75rem;
    }

.info-highlight {
    padding: 0.9rem 1.1rem;
    border-radius: 16px;
    background: #e5efff;
    border: 1px solid #bfdbfe;
    font-size: 0.9rem;
    color: #1d4ed8;
    margin-top: 0.6rem;
    text-align: center;
}

    .info-highlight i {
        font-size: 2rem;
        color: #1d4ed8;
        display: block;
    }

/* Stats */
.stats-row {
    margin-top: 2.5rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(37,99,235,0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-content small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
}

.stat-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    display: inline-block;
}
.stat-value.merge-previous {
    margin-left: -5px;
}

.stat-label {
    font-size: 0.87rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #050816;
    color: #9ca3af;
    padding: 60px 0 28px;
}

.footer-logo .brand-mark {
    width: 32px;
    height: 32px;
    box-shadow: none;
}

.footer-logo .brand-text-main {
    font-size: 1.15rem;
}

.footer-logo .brand-text-sub {
    font-size: 0.7rem;
}

@media(max-width: 767px) {
    .footer-logo {
        text-align: center;
        margin-bottom: 40px;
    }
    .footer-logo img.logo {
        margin: auto;
    }
}
.footer-tagline {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 0.7rem;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e5e7eb;
    margin-bottom: 0.7rem;
}

.footer-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.88rem;
}

    .footer-list li {
        margin-bottom: 0.35rem;
    }

    .footer-list a {
        color: #9ca3af;
    }

        .footer-list a:hover {
            color: #ffffff;
        }

.footer-contact {
    font-size: 0.88rem;
}

.footer-contact i {
    width: 20px;
}
.footer-contact a {
    color: rgb(156, 163, 175);
}
.footer-contact a:hover {
    color: #FFF;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    margin-right: 0.45rem;
    font-size: 0.9rem;
    transition: all 0.18s ease-out;
}

    .footer-social a:hover {
        color: #ffffff;
        border-color: #9ca3af;
        background: rgba(31,41,55,0.8);
    }

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 1.8rem;
    padding-top: 0.9rem;
    font-size: 0.8rem;
    color: #6b7280;
}
.footer-bottom a {
    color: #9ca3af;
}
.footer-bottom a:hover {
    color: #ffffff;
}
.footer-bottom .footer-menu {
    text-align: right;
}
@media(max-width: 767px) {
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom .footer-menu {
        margin-top: 10px;
        text-align: center;
    }
    .footer-bottom .footer-menu a {
        display: block;
    }
    .footer-bottom .footer-menu span {
        display: none;
    }
}

/* Buttons generic */
.btn:focus {
    box-shadow: 0 0 0 0.15rem rgba(13,110,253,0.5);
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 18px 40px rgba(37,99,235,0.45);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 20px 45px rgba(37,99,235,0.55);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 18px 40px rgba(37,99,235,0.45);
    }
}

.animate-on-load {
    opacity: 0;
    animation: fadeSlideUp 0.9s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.15s;
}

.animate-delay-2 {
    animation-delay: 0.3s;
}

.animate-delay-3 {
    animation-delay: 0.45s;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-stagger .benefit-card {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-stagger.visible .benefit-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .reveal-stagger.visible .benefit-card:nth-child(1) {
        transition-delay: 0.05s;
    }

    .reveal-stagger.visible .benefit-card:nth-child(2) {
        transition-delay: 0.16s;
    }

    .reveal-stagger.visible .benefit-card:nth-child(3) {
        transition-delay: 0.27s;
    }

.image-frame:hover img,
.hero-right-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-inner {
        padding-top: 20px;
        padding-bottom: 70px;
    }

    .hero-right-card {
        margin-top: 2.4rem;
    }

    .section-main,
    .section-benefits,
    .section-info {
        padding: 70px 0;
    }

    .section-cta {
        padding: 70px 0;
    }

    .benefit-card {
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .navbar {
        padding-inline: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 0.98rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-right-card {
        padding: 1.2rem;
    }

    .section-main,
    .section-benefits,
    .section-info {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-cta h2 {
        font-size: 1.7rem;
    }

    .image-frame {
        border-radius: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-inner {
        padding-top: 20px;
        padding-bottom: 60px;
    }

    .hero-tag {
        font-size: 0.72rem;
    }

    .hero-pills {
        gap: 0.4rem;
    }

    .hero-pill {
        font-size: 0.72rem;
    }
}

.section-benefit {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.2rem;
    font-size: 0.78rem;
    color: ;
}
.section-benefit-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.section-benefit-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #00CC00;
    color: #FFF;
    background: #00AA00;
}

/* Forms */
.form-group.password-group, .password-group {
    display: none;
}
.hidden {
    display: none;
}
.modal .modal-header a.close {
    color: var(--text);
    text-decoration: none;
}
.modal .form-group {
    padding: 10px;
    padding-top: 5px;
    margin-bottom: 5px;
    background-color: #F0F0F0;
    border-radius: 5px;
}
.modal .form-group-submit {
    padding-top: 5px;
}
.modal .form-group .form-label {
    margin-bottom: 2px;
}
.modal .form-group .form-control {
    padding: 1px 10px;
}
.modal .form-info {
    font-size: 0.95rem;
    line-height: 1rem;
    text-align: center;
    margin-bottom: 5px;
}
.modal .form-insurance {
    font-size: 0.80rem;
    line-height: 1rem;
    text-align: center;
    margin-bottom: 10px;
}
.modal .form-insurance i {
    color: #22c55e;
}
.modal .validation-summary-errors {
    text-align: center;
}
.validation-summary-errors, .field-validation-error {
    color: red;
    font-size: 0.9rem;
}
.validation-summary-errors ul, .validation-summary-errors ul li{
    list-style: none;
}
