.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f8fafc 50%, #f1f5f9 100%);
}

section[id] {
    scroll-margin-top: 80px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
    transition: transform 0.3s ease;
}

.brand-icon:hover {
    transform: scale(1.05);
}

.brand-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.brand-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn svg {
    width: 16px;
    height: 16px;
}

.nav-btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}

.nav-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.nav-btn-primary {
    background: var(--gradient-primary);
    border: 1.5px solid transparent;
    color: white;
}

.nav-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(13, 148, 136, 0.04) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(13, 148, 136, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.02) 0%, transparent 40%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: heroGlow 25s ease-in-out infinite;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.08));
    top: -150px;
    right: -80px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(13, 148, 136, 0.1));
    bottom: -100px;
    left: -80px;
    animation-delay: -12s;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    animation: heroFadeIn 0.6s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(13, 148, 136, 0);
    }
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(30, 41, 59, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 2px 12px rgba(13, 148, 136, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

.hero-btn-primary:hover svg {
    transform: translateX(3px);
}

.hero-btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.hero-btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 56px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 
        0 2px 16px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    animation: statsSlideUp 0.6s ease-out 0.15s both;
}

@keyframes statsSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fafbfc;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

.feature-icon-primary {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.feature-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.feature-icon-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.feature-icon-info {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.quiz-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
}

.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step-card {
    position: relative;
    background: #fafbfc;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    min-width: 220px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 14px auto 16px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.06);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.step-connector {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    opacity: 0.4;
}

.page-footer {
    background: #1e293b;
    padding: 40px 24px;
    margin-top: auto;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo svg {
    width: 18px;
    height: 18px;
    color: white;
}

.footer-brand-text {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.loading-animation {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.loading-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    animation: bounce 1.5s ease-in-out infinite;
}

.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 0.15s; }
.loading-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.error-text {
    color: var(--error-color);
    text-align: center;
    padding: 40px 24px;
    font-size: 0.95rem;
}

.empty-text {
    color: var(--text-secondary);
    text-align: center;
    padding: 40px 24px;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 72px;
    }
    
    .navbar {
        height: 60px;
    }
    
    .navbar-container {
        padding: 0 12px;
    }
    
    .brand-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }
    
    .brand-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .brand-text {
        font-size: 0.9rem;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .navbar-actions {
        gap: 6px;
    }
    
    .nav-btn span {
        display: none;
    }
    
    .nav-btn {
        padding: 8px 10px;
        border-radius: 8px;
    }
    
    .nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-section {
        padding: 80px 16px 48px;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .hero-desc {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-wrap: nowrap;
        gap: 16px;
        padding: 16px 20px;
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .stat-value {
        font-size: 1.35rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-divider {
        width: 1px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .features-section,
    .quiz-section,
    .how-it-works {
        padding: 48px 0;
    }
    
    .section-container {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px 18px;
        border-radius: 14px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
        border-radius: 12px;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .feature-desc {
        font-size: 0.82rem;
        line-height: 1.55;
    }
    
    .steps-container {
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
    }
    
    .step-card {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 24px 12px;
        border-radius: 14px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        top: -10px;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        margin: 10px auto 12px;
        border-radius: 12px;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .step-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .step-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .step-connector {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .step-connector svg {
        width: 16px;
        height: 16px;
    }
    
    .page-footer {
        padding: 28px 16px;
    }
    
    .footer-brand {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .footer-logo {
        width: 28px;
        height: 28px;
    }
    
    .footer-logo svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-brand-text {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    section[id] {
        scroll-margin-top: 68px;
    }
    
    .navbar {
        height: 56px;
    }
    
    .navbar-container {
        padding: 0 10px;
    }
    
    .brand-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .brand-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .brand-text {
        font-size: 0.85rem;
        max-width: 120px;
    }
    
    .navbar-actions {
        gap: 4px;
    }
    
    .nav-btn {
        padding: 7px 8px;
        border-radius: 6px;
    }
    
    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-section {
        padding: 68px 12px 36px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 16px;
    }
    
    .badge-icon {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.45rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hero-desc {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }
    
    .hero-actions {
        gap: 8px;
    }
    
    .hero-btn {
        padding: 11px 18px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .hero-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-stats {
        gap: 10px;
        padding: 14px 14px;
        border-radius: 12px;
        margin-top: 32px;
    }
    
    .stat-value {
        font-size: 1.15rem;
    }
    
    .stat-label {
        font-size: 0.62rem;
    }
    
    .stat-divider {
        height: 26px;
    }
    
    .features-section,
    .quiz-section,
    .how-it-works {
        padding: 36px 0;
    }
    
    .section-container {
        padding: 0 12px;
    }
    
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .features-grid {
        gap: 10px;
    }
    
    .feature-card {
        padding: 16px 14px;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-title {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .feature-desc {
        font-size: 0.78rem;
        line-height: 1.5;
    }
    
    .steps-container {
        gap: 6px;
    }
    
    .step-card {
        padding: 20px 8px;
        border-radius: 12px;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        top: -8px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        margin: 8px auto 10px;
        border-radius: 10px;
    }
    
    .step-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .step-title {
        font-size: 0.82rem;
        margin-bottom: 3px;
    }
    
    .step-desc {
        font-size: 0.7rem;
        line-height: 1.35;
    }
    
    .step-connector {
        width: 20px;
        height: 20px;
    }
    
    .step-connector svg {
        width: 14px;
        height: 14px;
    }
    
    .page-footer {
        padding: 24px 12px;
    }
    
    .footer-brand {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .footer-logo {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }
    
    .footer-logo svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-brand-text {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

@media (min-width: 1025px) {
    .hero-section {
        padding: 120px 32px 80px;
    }
    
    .hero-stats {
        gap: 48px;
        padding: 28px 48px;
    }
    
    .features-section,
    .quiz-section,
    .how-it-works {
        padding: 100px 0;
    }
    
    .section-header {
        margin-bottom: 56px;
    }
    
    .features-grid {
        gap: 24px;
    }
    
    .feature-card {
        padding: 32px 28px;
    }
    
    .step-card {
        padding: 36px 32px;
        min-width: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow,
    .hero-content,
    .hero-stats,
    .feature-card,
    .step-card,
    .loading-dot,
    .hero-badge {
        animation: none;
    }
    
    .hero-btn,
    .nav-btn,
    .feature-card,
    .step-card,
    .stat-item,
    .brand-icon {
        transition: none;
    }
}
