*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        system-ui,
        sans-serif;
    color: #1e293b;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    z-index: 10000;
    transition: top 0.2s ease;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-lighter: #eff6ff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --max-width: 1170px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 110px 0;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    justify-content: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 16px;
}
.section-title em {
    font-style: normal;
    color: var(--primary);
}
.section-desc {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 580px;
    line-height: 1.7;
}
.text-center {
    text-align: center;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--primary);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.float-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.float-shapes span {
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: 0.07;
}
.float-shapes .s1 {
    width: 400px;
    height: 400px;
    background: #fff;
    top: -100px;
    right: -80px;
    animation: floatA 15s ease-in-out infinite;
}
.float-shapes .s2 {
    width: 250px;
    height: 250px;
    background: #fff;
    bottom: -60px;
    left: -60px;
    animation: floatB 18s ease-in-out infinite;
}
.float-shapes .s3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.6);
    top: 30%;
    left: 10%;
    animation: floatA 12s ease-in-out infinite reverse;
}
.float-shapes .s4 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.5);
    bottom: 20%;
    right: 15%;
    animation: floatB 14s ease-in-out infinite;
}
@keyframes floatA {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -30px);
    }
}
@keyframes floatB {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, 30px);
    }
}
.mt-12 {
    margin-top: 12px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-48 {
    margin-top: 48px;
}
.mb-20 {
    margin-bottom: 20px;
}
.p-40 {
    padding: 40px;
}
.map-section {
    padding: 0;
}
.map-wrapper {
    width: 100%;
    height: 400px;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-max-200 {
    max-width: 200px;
    margin: 0 auto 20px;
}
.logo-h32 {
    height: 32px;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-box {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px 12px;
}
.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}
.about-img-wrap {
    padding: 40px;
    text-align: center;
}
.dashboard-reverse-cols {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    display: grid;
}
