
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .nav-links {
        gap: 20px;
    }

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

    .stat-card h3 {
        font-size: 36px;
    }

    .featured-grid,
    .workflow-container,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--dark-surface);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--box-shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(217, 70, 239, 0.1);
    }

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

    .nav-auth {
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    .btn-login,
    .btn-signup {
        flex: 1;
        padding: 10px 15px;
        font-size: 12px;
    }

    .hero {
        padding: 60px 20px 40px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .stat-card p {
        font-size: 13px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .featured {
        padding: 60px 20px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-image {
        height: 200px;
    }

    .how-it-works {
        padding: 60px 20px;
    }

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

    .workflow-step {
        padding: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .step-icon {
        font-size: 36px;
    }

    .workflow-step h3 {
        font-size: 18px;
    }

    .workflow-step p {
        font-size: 13px;
    }

    .why-join {
        padding: 60px 20px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reason-card {
        padding: 25px;
    }

    .reason-icon {
        font-size: 36px;
    }

    .reason-card h3 {
        font-size: 18px;
    }

    .reason-card p {
        font-size: 13px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .contact-info {
        gap: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h4 {
        font-size: 16px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .modal-content {
        width: 95%;
        padding: 25px;
    }

    .modal-content h2 {
        font-size: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }
}

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

    .logo {
        font-size: 18px;
    }

    .logo i {
        font-size: 22px;
    }

    .hero {
        padding: 40px 15px;
        min-height: auto;
    }

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

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

    .main-image {
        border-radius: 10px;
    }

    .floating-card {
        padding: 12px 15px;
        font-size: 12px;
    }

    .floating-card i {
        font-size: 16px;
    }

    .stats {
        padding: 40px 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card h3 {
        font-size: 24px;
    }

    .featured,
    .how-it-works,
    .why-join,
    .cta-section,
    .contact {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .section-title::after {
        width: 40px;
    }

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

    .card-image {
        height: 150px;
    }

    .featured-card h3 {
        font-size: 18px;
        padding: 15px 15px 8px;
    }

    .featured-card p {
        padding: 0 15px 15px;
        font-size: 12px;
    }

    .workflow-step {
        padding: 18px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
        left: 18px;
    }

    .step-icon {
        font-size: 32px;
        margin: 12px 0;
    }

    .workflow-step h3 {
        font-size: 16px;
    }

    .workflow-step p {
        font-size: 12px;
    }

    .reason-card {
        padding: 20px;
    }

    .reason-icon {
        font-size: 32px;
    }

    .reason-card h3 {
        font-size: 16px;
    }

    .reason-card p {
        font-size: 12px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .footer {
        padding: 40px 15px 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .modal-content {
        width: 98%;
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 9px;
        font-size: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }

    .close {
        font-size: 24px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

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

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

    .stat-card h3 {
        font-size: 54px;
    }
}
