/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1A2233;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* ===== DESIGN SYSTEM ===== */
:root {
    /* Colors - Professional Palette */
    --primary: #1A2233;          /* Dark Navy - Primary Brand */
    --primary-light: #2C3E55;    /* Lighter Navy */
    --accent: #E3F2FD;           /* Light Blue - Accent */
    --accent-bright: #2196F3;    /* Bright Blue - CTA */
    --success: #4CAF50;          /* Green - Success */
    --warning: #FF9800;          /* Orange - Warning */
    --danger: #F44336;           /* Red - Danger */
    
    /* Neutrals */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */
    
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    
    /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-full: 9999px;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-bright), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-md);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.secondary-btn {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.secondary-btn:hover {
    background: var(--primary);
    color: white;
}

.outline-btn {
    background: transparent;
    color: var(--accent-bright);
    border-color: var(--accent-bright);
}

.outline-btn:hover {
    background: var(--accent-bright);
    color: white;
}

.cta-btn {
    background: var(--accent-bright);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* ===== 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 var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

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

.logo-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-bright);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--accent-bright);
}

.nav a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, #F8FAFC 0%, #E3F2FD 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-bright), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent-bright);
}

.stat span {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.hero-visual {
    position: relative;
}

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

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    right: -10%;
}

.floating-card:nth-child(2) {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

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

/* ===== PAIN POINTS SECTION ===== */
.pain-points {
    padding: var(--space-4xl) 0;
    background: white;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.pain-card {
    text-align: center;
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    background: var(--gray-50);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.pain-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
}

.pain-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.pain-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, white 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.service-card.featured {
    border-color: var(--accent-bright);
    background: linear-gradient(135deg, white 0%, #F0F8FF 100%);
}

.service-card.featured::before {
    content: '推荐';
    position: absolute;
    top: -10px;
    right: var(--space-lg);
    background: var(--accent-bright);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--border-radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.service-icon {
    font-size: var(--text-3xl);
}

.service-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: var(--space-sm) 0;
    color: var(--gray-700);
    position: relative;
    padding-left: var(--space-lg);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
    padding: var(--space-4xl) 0;
    background: var(--primary);
    color: white;
}

.social-proof .section-header h2 {
    color: white;
}

.social-proof .section-header p {
    color: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
}

.testimonial-card p {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: var(--accent);
}

.client-info strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: white;
}

.client-info span {
    font-size: var(--text-sm);
    color: var(--accent);
}

.partner-logos {
    text-align: center;
}

.partner-logos h3 {
    color: var(--accent);
    margin-bottom: var(--space-xl);
    font-size: var(--text-lg);
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.logo-item {
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--accent);
    font-weight: 500;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: var(--space-4xl) 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--space-2xl);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.portfolio-overlay p {
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.portfolio-tags span {
    background: var(--accent-bright);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
}

.portfolio-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius);
    display: inline-block;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: white;
    color: var(--primary);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E3F2FD 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--accent-bright);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: var(--space-lg);
    background: var(--accent-bright);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.pricing-header {
    padding: var(--space-2xl);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.currency {
    font-size: var(--text-lg);
    color: var(--gray-600);
    font-weight: 600;
}

.amount {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--primary);
}

.price-desc {
    color: var(--gray-600);
}

.feature-list {
    list-style: none;
    padding: var(--space-2xl);
}

.feature-list li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.feature-list li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin: 0 var(--space-2xl) var(--space-2xl);
    width: calc(100% - var(--space-4xl));
}

.pricing-note {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-xl);
}

.pricing-note p {
    color: var(--gray-600);
    font-size: var(--text-sm);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--space-4xl) 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.feature-item strong {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent-bright);
    margin-bottom: var(--space-xs);
}

.feature-item span {
    color: var(--gray-600);
    font-size: var(--text-sm);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.final-cta p {
    font-size: var(--text-lg);
    color: var(--accent);
    margin-bottom: var(--space-2xl);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.contact-btn .icon {
    font-size: var(--text-2xl);
}

.contact-btn div {
    text-align: left;
}

.contact-btn strong {
    display: block;
    font-weight: 600;
}

.contact-btn small {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

.guarantee {
    color: var(--accent);
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: var(--text-xl);
    font-weight: 700;
}

.footer-info p {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.link-group h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: white;
}

.link-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--accent-bright);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: var(--text-sm);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;   /* 40px */
        --text-5xl: 2rem;     /* 32px */
        --text-4xl: 1.75rem;  /* 28px */
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    /* Header */
    .nav {
        display: none; /* Simplified for mobile */
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Contact */
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero {
        padding: calc(60px + var(--space-2xl)) 0 var(--space-2xl);
    }
    
    .hero h1 {
        font-size: var(--text-4xl);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        display: none; /* Hide on very small screens */
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Print styles */
@media print {
    .header, .footer {
        display: none;
    }
    
    .hero {
        padding: var(--space-xl) 0;
        background: white;
    }
    
    .floating-elements {
        display: none;
    }
}