/* Specific Mobile Enhancements */
@media (max-width: 480px) {
    :root {
        --font-size-hero: 2.5rem;
        --font-size-3xl: 2rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .cta-button {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    /* Social buttons - smaller and consistent on mobile */
    .d-flex.gap-sm.mt-md {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem !important;
    }

    .social-btn {
        padding: 0.55rem 1rem !important;
        font-size: 0.8rem !important;
        min-width: unset !important;
        flex: 1 1 calc(33% - 0.5rem);
        max-width: 120px;
        gap: 5px !important;
    }

    .social-btn .icon {
        font-size: 0.9rem;
    }

    .social-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: var(--space-md);
    }
}

/* Touch targets for accessibility */
@media (hover: none) {

    .cta-button,
    .result-pill {
        min-height: 44px;
        min-width: 44px;
    }
}