html {
    font-size: 18px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #001f79;
    --primary-dark: #001560;
    --primary-light: #1a3a9e;
    --secondary-color: #0f172a;
    --accent-color: #f43f5e;
    --accent-light: #fb7185;
    --accent-gradient: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
    --success-color: #10b981;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;
    --white: #ffffff;
    --border-light: #e2e8f0;
    --gradient-start: #0f172a;
    --gradient-end: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Akrobat';
    src: url('/fonts/webfonts/Akrobat-Regular.woff') format('woff'), url('/fonts/webfonts/Akrobat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Akrobat';
    src: url('/fonts/webfonts/Akrobat-Bold.woff') format('woff'), url('/fonts/webfonts/Akrobat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    padding-top: 76px;
    font-family: 'Akrobat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 18px !important;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding: 0.9rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .navbar.scrolled {
        padding: 0.6rem 0;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow-md);
    }

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .navbar-brand img {
        height: 38px;
        width: auto;
        margin-right: 0;
    }

    .navbar-brand:hover {
        color: var(--primary-dark);
    }

.navbar-nav .nav-link {
    color: var(--text-medium);
    font-weight: 500;
    margin: 0 0.4rem;
    padding: 0.5rem 0.8rem !important;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    position: relative;
    font-size: 0.95rem;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary-color);
        background: rgba(0, 31, 121, 0.06);
    }

    .navbar-nav .nav-link.active {
        color: var(--primary-color);
        font-weight: 600;
    }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 3px;
        }

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px -5px rgba(0, 31, 121, 0.4);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

    .btn-outline-primary:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px -5px rgba(0, 31, 121, 0.3);
    }

.scroll-strip {
    width: 250px;
    height: 420px;
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
    background: #fff;;
}

.strip-one{
    top: -100px;
}

@media (max-width: 768px) {
    .strip-one{
        top: auto;
    }
}

.scroll-strip-inner {
    display: flex;
    flex-direction: column;
    animation: scroll-vertical 12s linear infinite;
}

.scroll-strip-inner-reverse {
    animation: scroll-vertical-reverse 14s linear infinite;
}

@keyframes scroll-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-vertical-reverse {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}
/* Hero Section */
.hero {
    color: var(--white);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 30% 50%, rgba(0, 31, 121, 0.15) 0%, transparent 60%);
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Akrobat', 'Inter', sans-serif;
    font-size: 3.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

    .hero h1 strong {
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
}

.hero .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.hero-bg {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.82)),
                url('/img/hero-bg.jpeg') center/cover no-repeat;
    color: #fff;
    position: relative;
}

.help-bg {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    color: var(--text-dark);
}

.cta-bg {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(0, 31, 121, 0.85) 100%), url('/img/cta-bg.jpeg?&auto=format&fit=crop&w=2084&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

/* Section Styles */
.section {
    padding: 6rem 0 2rem 0 !important;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-title h2 {
        font-size: 2.6rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 1.2rem;
        position: relative;
        letter-spacing: -0.03em;
        line-height: 1.2;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 4px;
        }

    .section-title p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 680px;
        margin: 1.5rem auto 0;
        line-height: 1.8;
    }

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid var(--border-light);
    border-top: none;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--accent-gradient);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
        border-color: transparent;
    }

.features-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

    .feature-title small {
        font-size: 0.82em;
        font-weight: 500;
        display: block;
        margin-top: 0.3rem;
        color: var(--text-light);
    }

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Screenshot Images */
.feature-screenshot {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .feature-screenshot:hover {
        transform: scale(1.03);
    }

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

    .benefits-list li {
        padding: 0.45rem 0;
        color: var(--text-medium);
        display: flex;
        align-items: center;
        line-height: 1.4;
        font-size: 0.92rem;
    }

        .benefits-list li i {
            color: var(--success-color);
            margin-right: 0.8rem;
            font-size: 0.95rem;
            min-width: 18px;
        }

/* Clients Section */
.clients-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.client-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .client-logo:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.client-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    margin: 1rem;
    height: auto;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-lg);
    }

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.testimonial-company {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .cta-section p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}

    .footer h5 {
        color: var(--white);
        margin-bottom: 1.5rem;
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: -0.01em;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            padding: 0.4rem 0;
        }

            .footer ul li a {
                color: #94a3b8;
                text-decoration: none;
                transition: all 0.25s ease;
                font-size: 0.95rem;
            }

                .footer ul li a:hover {
                    color: var(--white);
                    padding-left: 4px;
                }

.footer-logo {
    height: 32px;
    width: auto;
    margin-right: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

    .social-icons a {
        width: 38px;
        height: 38px;
        background: rgba(148, 163, 184, 0.12);
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .social-icons a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}


/* Performance optimizations */
.feature-card, .testimonial-card, .client-logo {
    will-change: transform;
}

/* Reduce layout shift */
.feature-screenshot {
    aspect-ratio: 5/2;
    object-fit: cover;
}

.swiper {
    min-height: 300px;
}

/* About section styling */
.about-bg {
    background: var(--white);
}

.solutions-bg {
    background: var(--bg-subtle);
}

/* ========== WEALTHFLOW-INSPIRED LAYOUT ========== */

/* Hero */
.wf-hero {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wf-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.wf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.wf-hero-title {
    font-family: 'Akrobat', 'Inter', sans-serif;
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.wf-hero-title strong {
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wf-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

.wf-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.wf-hero-actions .btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
}

.wf-hero-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.wf-hero-actions .btn-primary {
    padding: 0.75rem 1.8rem;
    background: var(--primary-color);
}

/* Hero Orbs */
.wf-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.wf-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -20%;
    right: -10%;
    animation: floatY 10s ease-in-out infinite;
}

.wf-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: -30%;
    left: -10%;
    animation: floatY 12s ease-in-out infinite reverse;
}

/* Stats Row */
.wf-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

.wf-stat-item {
    text-align: center;
}

.wf-stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.wf-stat-number small {
    font-size: 0.6em;
    opacity: 0.7;
}

.wf-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
    font-weight: 400;
}

.wf-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Trust Bar */
.wf-trust-bar {
    padding: 3rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.wf-trust-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Sections */
.wf-section {
    padding: 6rem 0;
}

.wf-section-alt {
    background: var(--bg-light);
}

.wf-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.wf-section-badge {
    display: inline-block;
    background: rgba(0, 31, 121, 0.08);
    color: var(--primary-color);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.wf-section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.wf-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.wf-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Cards */
.wf-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wf-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.wf-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.wf-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.wf-card-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.wf-card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature Blocks (alternating) */
.wf-feature-block {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-light);
}

.wf-feature-block:last-child {
    border-bottom: none;
}

.wf-feature-content {
    padding: 1rem 0;
}

.wf-feature-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 31, 121, 0.06);
    color: var(--primary-color);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
}

.wf-feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.wf-feature-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.wf-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.wf-feature-list li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
}

.wf-feature-list li i {
    color: var(--success-color);
    font-size: 1rem;
}

.wf-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.wf-feature-link:hover {
    gap: 0.7rem;
    color: var(--primary-dark);
}

/* Feature Visual Placeholder */
.wf-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-subtle) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.wf-feature-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wf-feature-visual:hover .wf-feature-img {
    transform: scale(1.04);
}

.wf-feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 31, 121, 0.3);
}

/* Metric Cards */
.wf-metric-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wf-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.wf-metric-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 31, 121, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 auto 1.2rem;
}

.wf-metric-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.wf-metric-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA */
.wf-cta {
    background: var(--secondary-color);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wf-cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--white);
}

.wf-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive overrides for wf components */
@media (max-width: 768px) {
    .wf-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .wf-hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .wf-hero-title br {
        display: none;
    }

    .wf-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .wf-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.2rem;
    }

    .wf-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .wf-hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .wf-section {
        padding: 3rem 0;
    }

    .wf-section-header {
        margin-bottom: 2rem;
    }

    .wf-section-title {
        font-size: 1.8rem;
    }

    .wf-section-subtitle {
        font-size: 0.95rem;
    }

    .wf-card {
        padding: 1.8rem 1.5rem;
    }

    .wf-feature-block {
        padding: 2rem 0;
    }

    .wf-feature-title {
        font-size: 1.4rem;
    }

    .wf-feature-text {
        font-size: 0.92rem;
    }

    .wf-feature-visual {
        min-height: 200px;
        margin-top: 1.5rem;
    }

    .wf-feature-img {
        min-height: 200px;
    }

    .wf-metric-card {
        padding: 1.8rem 1.2rem;
    }

    .wf-cta {
        padding: 3rem 0;
    }

    .wf-cta-title {
        font-size: 1.8rem;
    }

    .wf-cta-subtitle {
        font-size: 0.95rem;
    }

    .wf-stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .wf-stat-divider {
        display: none;
    }

    .wf-stat-item {
        min-width: 40%;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 31, 121, 0.3);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(0, 31, 121, 0);
    }
}

/* Animate on scroll - initial hidden state */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-fade-left {
    transform: translateX(-40px);
}

.animate-on-scroll.animate-fade-right {
    transform: translateX(40px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.92);
}

/* Visible state */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for cards */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* Hero entrance animations */
.hero-content h1 {
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-content .lead {
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-content .btn:first-of-type {
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-content .btn:last-of-type {
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

/* Floating animation for scroll strips */
.scroll-strip {
    animation: floatY 6s ease-in-out infinite;
}

.scroll-strip.strip-one {
    animation-delay: -2s;
}

/* Feature card icon hover animation */
.feature-card:hover .features-icon {
    animation: pulse-glow 1.5s ease-in-out infinite;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Section title animated underline */
.section-title h2::after {
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.section-title.is-visible h2::after {
    width: 50px;
}

/* Button ripple effect */
.btn-primary, .btn-outline-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-outline-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary:active::after, .btn-outline-primary:active::after {
    width: 300px;
    height: 300px;
}

/* Navbar link hover underline animation */
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 60%;
    left: 20%;
}

/* Smooth counter animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA section floating shapes background */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatY 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatY 10s ease-in-out infinite reverse;
}

.cta-bg {
    position: relative;
    overflow: hidden;
}

/* Responsive */
/* Navbar mobile: must match Bootstrap's navbar-expand-lg breakpoint (992px) */
@media (max-width: 991.98px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        padding: 0.4rem 0;
    }

    .navbar .container {
        flex-wrap: nowrap;
    }

    .navbar-brand img {
        height: 30px;
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.1rem;
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        margin-top: 0.5rem;
        padding: 0.8rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-light);
    }

    .navbar-nav {
        padding: 0;
        gap: 0.2rem;
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: 0.6rem 0.8rem !important;
        font-size: 0.9rem;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-item .btn {
        display: block;
        width: 100%;
        margin: 0.25rem 0 !important;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.55rem 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero .btn {
        display: block;
        margin: 0.4rem 0;
        width: 100%;
    }

    .section {
        padding: 3rem 0 1rem 0 !important;
    }

    .feature-card {
        padding: 1.5rem 1.2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer h5 {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Print styles */
@media print {
    .navbar, .social-icons, .btn, .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}
