:root {
    --swiftpro-primary: #4f46e5;
    --swiftpro-secondary: #22d3ee;
    --swiftpro-dark: #0b1220;
    --swiftpro-surface: #f8fafc;
    --swiftpro-text: #1e293b;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--swiftpro-text);
    background-color: var(--swiftpro-surface);
}

.swiftpro-page {
    padding-top: 6rem;
}

.btn-primary {
    --bs-btn-bg: var(--swiftpro-primary);
    --bs-btn-border-color: var(--swiftpro-primary);
    --bs-btn-hover-bg: #4338ca;
    --bs-btn-hover-border-color: #4338ca;
}

.swiftpro-navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: linear-gradient(95deg, rgba(3, 8, 20, 0.95) 0%, rgba(5, 35, 74, 0.92) 45%, rgba(6, 91, 184, 0.88) 100%);
    border-bottom: 1px solid rgba(34, 211, 238, 0.28);
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.3);
}

.swiftpro-navbar .navbar-brand,
.swiftpro-navbar .nav-link {
    color: #eaf2ff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.swiftpro-brand-logo {
    max-height: 46px;
    display: block;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: saturate(1.05) contrast(1.08);
}

.swiftpro-footer-logo {
    width: auto;
    max-height: 70px;
    object-fit: contain;
}

.swiftpro-navbar .nav-link:hover {
    color: #67e8f9;
}

.swiftpro-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.swiftpro-social-link {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    color: #eaf2ff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.swiftpro-social-link:hover {
    color: #ffffff;
    border-color: rgba(34, 211, 238, 0.72);
    background: rgba(34, 211, 238, 0.14);
    transform: translateY(-1px);
}

.swiftpro-social-links-footer .swiftpro-social-link {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
}

.swiftpro-navbar.navbar-scrolled {
    background: linear-gradient(95deg, rgba(2, 6, 18, 0.98) 0%, rgba(4, 29, 63, 0.96) 45%, rgba(4, 77, 158, 0.93) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.38);
}

.swiftpro-navbar.navbar-scrolled .navbar-brand,
.swiftpro-navbar.navbar-scrolled .nav-link {
    color: #f8fbff;
}

.swiftpro-footer {
    background: linear-gradient(140deg, #050816, #0f172a);
    color: #e2e8f0;
}

.swiftpro-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.swiftpro-footer a:hover {
    color: #ffffff;
}

.section-title {
    font-size: clamp(1.65rem, 2.6vw, 2.4rem);
    font-weight: 700;
    color: #0f172a;
}

.section-subtitle {
    max-width: 720px;
    color: #64748b;
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .swiftpro-navbar {
        background: linear-gradient(95deg, rgba(2, 6, 18, 0.98) 0%, rgba(4, 29, 63, 0.96) 45%, rgba(4, 77, 158, 0.93) 100%);
        backdrop-filter: blur(8px);
    }
}
