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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    color: #0052CC;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003d99;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1a202c;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 1rem 0;
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0052CC;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: #0052CC;
    color: white;
}

.btn-primary:hover {
    background-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 82, 204, 0.2);
}

.btn-secondary {
    background-color: #f7fafc;
    color: #0052CC;
    border: 2px solid #0052CC;
}

.btn-secondary:hover {
    background-color: #edf2f7;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #0052CC;
    border: 2px solid #0052CC;
}

.btn-outline:hover {
    background-color: #f0f4ff;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.nav-cta {
    background-color: #0052CC;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #003d99;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 82, 204, 0.1);
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a202c;
}

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

.nav-links a {
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0052CC;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a202c;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding: 3rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0052CC 0%, #003d99 50%, #00215a 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    color: white;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s backwards;
    margin-bottom: 2rem;
}

.app-store-badge,
.google-play-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 120px;
    height: 40px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.35s backwards;
}

.app-store-badge:hover,
.google-play-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.app-store-badge svg,
.google-play-badge svg {
    width: 100%;
    height: 100%;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ============================================
   Screenshot Gallery Section
   ============================================ */
.gallery {
    padding: 2.5rem 0;
    background-color: #f7fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }

.gallery-placeholder {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 82, 204, 0.15);
}

.gallery-placeholder svg {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 2;
    border-radius: 8px;
}

.gallery-placeholder h3 {
    text-align: center;
    margin-top: 0.75rem;
    color: #0052CC;
    font-size: 1rem;
}

/* ============================================
   Why Taskly Section
   ============================================ */
.why-section {
    padding: 2.5rem 0;
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    text-align: center;
}

.why-card:nth-child(1) { animation-delay: 0s; }
.why-card:nth-child(2) { animation-delay: 0.1s; }
.why-card:nth-child(3) { animation-delay: 0.2s; }
.why-card:nth-child(4) { animation-delay: 0.3s; }
.why-card:nth-child(5) { animation-delay: 0.4s; }
.why-card:nth-child(6) { animation-delay: 0.5s; }

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 82, 204, 0.1);
    border-color: #0052CC;
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.why-card h3 {
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-size: 1.05rem;
}

.why-card p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 82, 204, 0.1);
    background-color: #f7fafc;
    border-color: #0052CC;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0052CC, #003d99);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-size: 1.05rem;
}

.feature-card p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   AI Assistant Section
   ============================================ */
.ai-section {
    padding: 2.5rem 0;
    background-color: #ffffff;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.ai-text h2 {
    color: #0052CC;
    margin-bottom: 0.5rem;
    font-size: 2.25rem;
}

.ai-subtitle {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.ai-description {
    color: #718096;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.ai-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ai-feature {
    padding: 1.25rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #0052CC;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.1);
}

.ai-feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.ai-feature h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.ai-feature p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

.ai-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-mockup {
    width: 220px;
    height: 400px;
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 82, 204, 0.15);
    border: 8px solid #1a202c;
    position: relative;
}

.ai-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background-color: #1a202c;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.ai-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 14px;
    overflow-y: auto;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-status {
    text-align: center;
    font-weight: 600;
    color: #0052CC;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 82, 204, 0.2);
    font-size: 0.8rem;
}

.ai-bubble {
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    word-wrap: break-word;
    animation: fadeInUp 0.3s ease forwards;
}

.ai-bubble:nth-child(1) { animation-delay: 0.2s; }
.ai-bubble:nth-child(2) { animation-delay: 0.4s; }
.ai-bubble:nth-child(3) { animation-delay: 0.6s; }
.ai-bubble:nth-child(4) { animation-delay: 0.8s; }
.ai-bubble:nth-child(5) { animation-delay: 1s; }

.ai-received {
    background: white;
    color: #2d3748;
    align-self: flex-start;
    border: 1px solid #e2e8f0;
}

.ai-sent {
    background: linear-gradient(135deg, #0052CC, #003d99);
    color: white;
    align-self: flex-end;
}

/* ============================================
   For Who Section
   ============================================ */
.for-who {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.professions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.profession-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.profession-card:nth-child(1) { animation-delay: 0s; }
.profession-card:nth-child(2) { animation-delay: 0.1s; }
.profession-card:nth-child(3) { animation-delay: 0.2s; }
.profession-card:nth-child(4) { animation-delay: 0.3s; }
.profession-card:nth-child(5) { animation-delay: 0.4s; }
.profession-card:nth-child(6) { animation-delay: 0.5s; }

.profession-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 82, 204, 0.15);
    border-color: #0052CC;
}

.profession-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.profession-card h3 {
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-size: 1.05rem;
}

.profession-card p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   Roadmap Section
   ============================================ */
.roadmap {
    padding: 2.5rem 0;
    background-color: #ffffff;
}

.roadmap-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.roadmap-item {
    padding: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.roadmap-item:nth-child(1) { animation-delay: 0s; }
.roadmap-item:nth-child(2) { animation-delay: 0.1s; }
.roadmap-item:nth-child(3) { animation-delay: 0.2s; }

.roadmap-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 82, 204, 0.1);
    border-color: #0052CC;
}

.roadmap-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0052CC, #003d99);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.roadmap-item h3 {
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-size: 1.1rem;
}

.roadmap-item p {
    color: #718096;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0052CC, #003d99);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: #0052CC;
}

.cta-buttons .btn-primary:hover {
    background-color: #edf2f7;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 2.5rem 0 1rem;
}

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

.footer-section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0s; }
.footer-section:nth-child(2) { animation-delay: 0.1s; }
.footer-section:nth-child(3) { animation-delay: 0.2s; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0052CC;
}

.footer-section p {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(203, 213, 224, 0.1);
    color: #a0aec0;
    font-size: 0.875rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .navbar-content {
        padding: 0.75rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 60px;
        flex-direction: column;
        width: 100%;
        background-color: white;
        padding: 2rem 1rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(0, 82, 204, 0.1);
    }

    .nav-links.active {
        max-height: 600px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .app-store-badge,
    .google-play-badge {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
    }

    .trust-badge {
        justify-content: center;
    }

    .gallery-grid,
    .features-grid,
    .professions-grid,
    .roadmap-items {
        grid-template-columns: 1fr;
    }

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

    .feature-card,
    .profession-card,
    .roadmap-item,
    .gallery-item,
    .why-card {
        animation: none;
        opacity: 1;
    }

    .ai-features {
        grid-template-columns: 1fr;
    }

    .ai-content {
        grid-template-columns: 1fr;
    }

    .ai-visual {
        margin-top: 1.5rem;
    }

    .ai-mockup {
        width: 200px;
        height: 350px;
    }

    .cta-content h2 {
        font-size: 1.875rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.05rem;
    }

    .hero {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

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

    .hero-buttons {
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .feature-card,
    .profession-card,
    .roadmap-item,
    .gallery-item,
    .why-card {
        padding: 1.25rem;
    }

    .gallery,
    .why-section,
    .features,
    .ai-section,
    .for-who,
    .roadmap {
        padding: 2rem 0;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .ai-mockup {
        width: 180px;
        height: 320px;
    }

    .trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .trust-badge svg {
        width: 16px;
        height: 16px;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .why-grid {
        gap: 1rem;
    }

    .features-grid {
        gap: 1rem;
    }

    .ai-features {
        gap: 0.75rem;
    }

    .professions-grid {
        gap: 1rem;
    }

    .roadmap-items {
        gap: 1rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .hero-buttons,
    .cta-buttons,
    .trust-badges {
        display: none;
    }
}
