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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.05em;
    color: #000;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}



.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #666;
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f8f8;
    color: #000;
}

.dropdown-item.active {
    background: #e67e22;
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    border: 2px solid #000;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Orange demo buttons */
.btn[href*="demo.knowlify.net"]:hover {
    background: #fff !important;
    color: #ff6600 !important;
    border-color: #ff6600 !important;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.hero-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-badge {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.hero-tagline {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.highlight {
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #000;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 60px;
}

.cta-subtext {
    margin-top: 15px;
    color: #999;
    font-size: 14px;
    font-weight: 300;
}

.social-proof {
    border-top: 1px solid #eee;
    padding-top: 40px;
}



/* Y Combinator Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.yc-badge-logo {
    height: 16px;
    width: auto;
}

.proof-text {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.backing-logos {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.yc-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.yc-logo:hover {
    opacity: 1;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo-text {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    padding: 8px 12px;
    border: 1px solid #eee;
    background: #fff;
}

.scarcity-message {
    margin-bottom: 20px;
}

.scarcity-text {
    font-size: 15px;
    color: #d35400;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(211, 84, 0, 0.1);
    padding: 12px 20px;
    border: 1px solid #e67e22;
    border-radius: 4px;
    margin: 0 auto;
    max-width: 600px;
}

.yc-prominence {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.yc-logo-large {
    height: 48px;
    width: auto;
    margin-bottom: 10px;
}

.yc-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.proof-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border: 1px solid #ccc;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    background: #fff;
    transition: all 0.3s ease;
}

.badge:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Announcement Section */
.announcement-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.announcement-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.announcement-badge {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.announcement-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #000;
}

.announcement-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.announcement-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.feature-item {
    padding: 30px;
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-text h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #000;
}

.feature-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.announcement-cta {
    margin-top: 40px;
}

/* Solutions Grid */
.solutions {
    padding: 100px 0;
    background: #fff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    padding: 40px 30px;
    background: #f8f8f8;
    border: 1px solid #eee;
    text-align: left;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.solution-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #e67e22;
}

.solution-card.finance:hover {
    border-color: #e67e22;
    background: linear-gradient(135deg, #fff 0%, rgba(230, 126, 34, 0.05) 100%);
}

.solution-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000;
    border-left: 4px solid #e67e22;
    padding-left: 20px;
    text-align: left;
}

.solution-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Value Proposition */
.value-prop {
    padding: 100px 0;
    background: #f8f8f8;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.value-item {
    padding: 30px;
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.value-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.icon-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.icon-img:hover {
    transform: scale(1.05);
    border-color: #000;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.value-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

/* Recent Wins */
.recent-wins {
    padding: 80px 0;
    background: #fff;
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.win-item {
    text-align: center;
    padding: 30px 20px;
    border-left: 3px solid #e67e22;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.win-item:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.15);
    border-left-color: #e67e22;
}

.win-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000;
}

.win-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: #fff;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.single-testimonial {
    display: flex;
    justify-content: center;
}

.testimonial-content {
    max-width: 600px;
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 2px solid #000;
}

.profile-placeholder {
    margin-bottom: 30px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e67e22;
    display: block;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content blockquote {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
}

.testimonial-content cite {
    font-style: normal;
    color: #666;
    font-size: 14px;
}

.testimonial-content cite strong {
    color: #000;
    font-weight: 500;
}

/* CTA Sections */
.cta-section, .final-cta {
    padding: 100px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.cta-content h2, .final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-content p, .final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
    font-weight: 300;
}

.cta-section .btn {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.cta-section .btn:hover {
    background: transparent;
    color: #fff;
}

.final-cta {
    background: #f8f8f8 !important;
    color: #000 !important;
}

.final-cta h2 {
    color: #000 !important;
}

.final-cta p {
    color: #666 !important;
}

.final-cta .btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.final-cta .btn:hover {
    background: transparent;
    color: #000;
}

/* Security */
.security {
    padding: 100px 0;
    background: #f8f8f8;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.security-feature {
    padding: 30px;
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s ease;
}

.security-feature:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.security-feature h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.security-feature p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #ddd;
    background: #fff;
    min-width: 200px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.badge-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.badge-item span {
    color: #666;
    font-size: 14px;
    font-weight: 300;
}

/* About */
.about {
    padding: 100px 0;
    background: #fff;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-hero-image {
    margin-bottom: 60px;
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 8px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.about-img:hover {
    filter: grayscale(0%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
}

.about-text .lead {
    font-size: 26px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 25px;
    color: #666;
    font-weight: 300;
}

.about-cta {
    margin-top: 40px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat {
    text-align: center;
    padding: 30px;
    border: 1px solid #ccc;
    background: #fff;
    transition: all 0.3s ease;
}

.stat:hover {
    background: #f8f8f8;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-brand p {
    color: #ccc;
    font-weight: 300;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 10px;
    display: block;
}

.footer-yc {
    margin-top: 15px;
}

.footer-yc-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
    font-weight: 300;
}





/* Responsive Design */
@media (max-width: 768px) {
    .announcement-title {
        font-size: 32px;
    }

    .announcement-subtitle {
        font-size: 16px;
    }

    .announcement-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item {
        padding: 25px;
    }
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links .dropdown {
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-links .dropdown-toggle {
        color: #000 !important;
    }

    .nav-links.active .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8f8f8;
        margin-top: 0;
        width: 100%;
        transition: all 0.3s ease;
    }

    .nav-links.active .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        margin-top: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        text-align: center;
    }

    .proof-badges {
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .logo-img {
        height: 32px;
    }

    .yc-logo {
        height: 28px;
    }

    .icon-img {
        width: 60px;
        height: 60px;
    }

    .about-img {
        height: 200px;
    }

    .trusted-logos {
        gap: 15px;
    }

    .wins-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8f8f8;
        margin-top: 10px;
    }

    .yc-logo-large {
        height: 40px;
    }

    .profile-image {
        width: 60px;
        height: 60px;
    }

    .testimonial-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .value-prop, .testimonials, .security, .about, .cta-section, .final-cta {
        padding: 60px 0;
    }

    .testimonial {
        padding: 25px;
    }

    .proof-badges {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-direction: column;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-card {
        padding: 30px 20px;
    }

    .logo-img {
        height: 28px;
    }

    .yc-logo {
        height: 24px;
    }

    .icon-img {
        width: 50px;
        height: 50px;
    }

    .yc-logo-large {
        height: 32px;
    }

    .profile-image {
        width: 50px;
        height: 50px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-cta {
    animation-delay: 0.3s;
}

.social-proof {
    animation-delay: 0.4s;
}

/* Smooth transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }



    .hero-grid {
        gap: 20px;
    }

    .video-container {
        max-width: 100%;
    }

    .hero-cta .btn {
        display: block;
        margin: 10px 0;
        text-align: center;
    }


}