:root {
    --brand-navy: #1e3a8a;
    --brand-blue: #2563eb;
    --brand-sky: #0284c7;
    --brand-amber: #facc15;
    --brand-red: #dc2626;
    --text-default: #1e293b;
    --text-muted: #475569;
    --surface-soft: #f8fafc;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-default);
    background: #ffffff;
}

.site-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

.site-header {
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.08);
}

.site-nav-link {
    border-radius: 0.6rem;
    color: #1e293b;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 0.85rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav-link:hover {
    background-color: #f8fafc;
    color: var(--brand-red);
}

.site-nav-link-active {
    background-color: #dbeafe;
    color: #1e3a8a;
}

.site-cta-link {
    background: var(--brand-amber);
    border-radius: 0.5rem;
    color: #1e3a8a;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.55rem 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-cta-link:hover {
    box-shadow: 0 8px 18px rgba(250, 204, 21, 0.35);
    transform: translateY(-1px);
}

.site-mobile-link {
    border-radius: 0.6rem;
    color: #1e293b;
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.7rem 0.8rem;
}

.site-mobile-link:hover {
    background-color: #f8fafc;
    color: var(--brand-red);
}

.site-mobile-link-active {
    background-color: #dbeafe;
    color: #1e3a8a;
}

.site-mobile-cta {
    background: var(--brand-amber);
    border-radius: 0.5rem;
    color: #1e3a8a;
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.4rem;
    padding: 0.7rem 0.8rem;
}

.hero-panel {
    backdrop-filter: blur(2px);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.82), rgba(37, 99, 235, 0.66));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1rem;
    box-shadow: 0 18px 50px rgba(30, 58, 138, 0.3);
}

.hero-mascot {
    align-items: center;
    animation: mascotFloat 4.8s ease-in-out infinite;
    filter: drop-shadow(0 12px 25px rgba(15, 23, 42, 0.28));
    height: 360px;
    justify-content: center;
    margin-left: auto;
    margin-top: 0.5rem;
    max-width: 340px;
    position: relative;
    width: 100%;
    z-index: 12;
    pointer-events: none;
}

.section-eyebrow {
    color: #1d4ed8;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    color: var(--brand-navy);
    font-size: clamp(1.75rem, 2.7vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 760px;
}

.service-card {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    transform: translateY(-4px);
}

.service-card-link {
    color: var(--brand-red);
    font-weight: 700;
}

.service-card-link:hover {
    color: #b91c1c;
}

.info-panel {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    border-bottom: 1px dashed #d6e0ef;
    color: #334155;
    padding: 0.75rem 0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.form-control {
    border: 1px solid #cbd5e1;
    border-radius: 0.65rem;
    font-size: 0.95rem;
    padding: 0.8rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.18);
    outline: none;
}

.badge-success {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.badge-warning {
    background-color: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
}

.fade-in-up {
    animation: fadeInUp 0.7s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mascotFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1279px) {
    .hero-mascot {
        height: 300px;
        max-width: 280px;
    }
}
