/* Modern Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary-blue: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    --accent-gold: #f59e0b;
    --accent-light: #fbbf24;

    /* Neutrals */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;


    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;

}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-dark);
    transition: opacity 0.2s ease;
}

.nav-brand:hover {
    opacity: 0.7;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
    transform: translateY(-1px);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Header Section */
header {
    padding-top: 80px;
    min-height: 40vh;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Animated Background Pattern */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 75%,
            transparent 100%);
    animation: slideGradient 15s ease-in-out infinite;
}

@keyframes slideGradient {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

/* Floating Shapes */
header::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
}

.header-background {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    min-height: calc(90vh - 80px);
    padding: var(--spacing-xl) 0;
}

.header-text {
    z-index: 3;
}

.header-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
}

.cta-button {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-blue);
    text-decoration: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--accent-gold);
    color: white;
}

/* Floating Icons */
.header-image {
    position: relative;
    height: 400px;
    z-index: 3;
}

.floating-elements {
    position: relative;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatIcon 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 45%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 15%;
    left: 45%;
    animation-delay: 4s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

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

/* Hero Section */
.hero {
    background: var(--bg-white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
}

.hero h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-medium);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-weight: 800;
    letter-spacing: -1px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.step {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.step h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-weight: 800;
    letter-spacing: -1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.benefit-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
}

/* Target Audience Section */
.target-audience {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.target-audience h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    letter-spacing: -1px;
}

.target-audience>.container>p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-medium);
    font-size: 1.2rem;
    line-height: 1.8;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.audience-item {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-md);
}

.audience-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.audience-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02) 0%, var(--bg-white) 100%);
}

.audience-item h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.audience-item p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
    font-weight: 700;
}

.footer-section p {
    margin-bottom: var(--spacing-xs);
    opacity: 0.85;
    line-height: 1.6;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Scroll Animations */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Login Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-white);
    border-radius: 24px;
    padding: var(--spacing-xl);
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.9);
    animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.close-modal:hover {
    color: var(--text-dark);
    background: var(--bg-gray);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.5px;
}

.modal-header p {
    color: var(--text-medium);
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input {
    padding: 14px 18px;
    border: 2px solid var(--bg-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.login-submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.form-footer {
    text-align: center;
    margin-top: var(--spacing-sm);
}

.forgot-password {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Design */

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .header-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow-xl);
        padding: var(--spacing-lg) 0;
        gap: var(--spacing-sm);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 14px 28px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Header */
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
        padding: var(--spacing-lg) 0;
    }

    .header-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .cta-button {
        padding: 16px 36px;
    }

    /* Section Headers */
    .hero h2,
    .how-it-works h2,
    .benefits h2,
    .target-audience h2 {
        font-size: 2.2rem;
    }

    /* Grid Layouts */
    .steps,
    .benefits-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Floating Elements */
    .floating-elements {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-sm);
        height: 150px;
        margin-top: var(--spacing-md);
    }

    .floating-icon {
        position: static;
        font-size: 2.5rem;
        padding: 20px;
        animation: floatMobile 4s ease-in-out infinite;
    }

    @keyframes floatMobile {

        0%,
        100% {
            transform: translateY(0px) scale(1);
        }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 var(--spacing-sm);
        height: 70px;
    }

    .nav-brand {
        font-size: 1.3rem;
    }

    .nav-logo {
        height: 38px;
    }

    .nav-menu {
        top: 70px;
    }

    header {
        padding-top: 70px;
        min-height: 80vh;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .hero h2,
    .how-it-works h2,
    .benefits h2,
    .target-audience h2 {
        font-size: 1.9rem;
    }

    .step-number {
        width: 75px;
        height: 75px;
        font-size: 1.6rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .floating-icon {
        font-size: 2rem;
        padding: 15px;
    }
}

/* Enhanced Hero Section */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-main {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.15) 100%);
    border: 2px solid var(--primary-light);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: var(--primary-light);
    font-size: 0.95rem;
}

.hero-title {
    font-size: 2.8rem !important;
    margin-bottom: var(--spacing-md) !important;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--bg-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    min-width: 400px;
    min-height: 350px;
}

.visual-card {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--bg-gray);
    animation: floatCard 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--bg-gray);
}

.card-icon {
    font-size: 1.5rem;
}

.card-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.card-content {
    position: relative;
}

.question-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.typing-indicator {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 12px;
}

.typing-indicator span {
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.floating-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.mini-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: bounce 3s ease-in-out infinite;
}

.mini-badge:nth-child(1) {
    animation-delay: 0s;
}

.mini-badge:nth-child(2) {
    animation-delay: 0.3s;
}

.mini-badge:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive for new hero */
@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-visual {
        min-width: 100%;
        min-height: 300px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 640px) {
    .hero-badge {
        padding: 8px 16px;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-visual {
        min-width: 100%;
        min-height: 280px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat-item {
        padding: var(--spacing-sm);
        background: var(--bg-light);
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .question-text {
        font-size: 0.95rem;
    }

    .floating-badges {
        gap: 8px;
    }

    .mini-badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .hamburger,
    .floating-elements {
        display: none;
    }

    header {
        padding-top: 0;
        min-height: auto;
    }
}