/* Header Section */
.hero-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
}

.hero-content .subheading {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--btn-gradient);
    color: var(--text-primary);
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.hero-content .btn-primary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-content .btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-content .btn-primary:hover i {
    transform: scale(1.1);
}

.hero-content .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

.hero-content .link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-blue);
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-content .link-secondary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-content .link-secondary:hover {
    color: var(--accent-blue-dark);
    transform: translateY(-2px);
}

.hero-content .link-secondary:hover i {
    transform: scale(1.1);
}

.hero-content .link-secondary:active {
    transform: translateY(1px);
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .hero-section {
        padding: 50px 40px;
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content .subheading {
        font-size: 1.4rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-group {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .hero-content .btn-primary {
        padding: 15px 40px;
        font-size: 1.4rem;
    }

    .hero-content .btn-primary i {
        font-size: 1.4rem;
    }

    .hero-content .link-secondary {
        font-size: 1.2rem;
    }

    .hero-content .link-secondary i {
        font-size: 1.2rem;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 15px;
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .subheading {
        font-size: 0.9rem;
    }

    .cta-group {
        gap: 10px;
    }

    .hero-content .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-content .btn-primary i {
        font-size: 0.9rem;
    }

    .hero-content .link-secondary {
        font-size: 0.8rem;
    }

    .hero-content .link-secondary i {
        font-size: 0.8rem;
    }
}

/* Buyers Benefits Section */
.buyers-benefits-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.buyers-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.two-column-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.text-content h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
}

.text-content p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.9;
}

.benefits-list li i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.benefits-list li:hover i {
    transform: scale(1.1);
}

.benefits-list li strong {
    font-family: 'Neon-Heavy', sans-serif;
    color: var(--text-primary);
}

.text-content .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--btn-gradient);
    color: var(--text-primary);
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.text-content .btn-secondary:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.text-content .btn-secondary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

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

.visual-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.visual-content img:hover {
    transform: scale(1.05);
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .buyers-benefits-section {
        padding: 50px 40px;
    }

    .two-column-layout {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .text-content {
        flex: 1;
        text-align: left;
    }

    .text-content h2 {
        font-size: 2.5rem;
    }

    .text-content p {
        font-size: 1.4rem;
    }

    .benefits-list li {
        font-size: 1.2rem;
    }

    .benefits-list li i {
        font-size: 1.8rem;
    }

    .text-content .btn-secondary {
        padding: 15px 40px;
        font-size: 1.4rem;
    }

    .visual-content {
        flex: 1;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .buyers-benefits-section {
        padding: 20px 15px;
    }

    .two-column-layout {
        gap: 15px;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    .benefits-list li {
        font-size: 0.8rem;
    }

    .benefits-list li i {
        font-size: 1.2rem;
    }

    .text-content .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Suppliers Benefits Section */
.suppliers-benefits-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.suppliers-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.two-column-layout.reverse {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.text-content h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
}

.text-content p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.9;
}

.benefits-list li i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.benefits-list li:hover i {
    transform: scale(1.1);
}

.benefits-list li strong {
    font-family: 'Neon-Heavy', sans-serif;
    color: var(--text-primary);
}

.text-content .btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--btn-gradient);
    color: var(--text-primary);
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.text-content .btn-accent:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.text-content .btn-accent:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

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

.visual-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.visual-content img:hover {
    transform: scale(1.05);
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .suppliers-benefits-section {
        padding: 50px 40px;
    }

    .two-column-layout.reverse {
        flex-direction: row-reverse;
        gap: 30px;
        align-items: center;
    }

    .text-content {
        flex: 1;
        text-align: left;
    }

    .text-content h2 {
        font-size: 2.5rem;
    }

    .text-content p {
        font-size: 1.4rem;
    }

    .benefits-list li {
        font-size: 1.2rem;
    }

    .benefits-list li i {
        font-size: 1.8rem;
    }

    .text-content .btn-accent {
        padding: 15px 40px;
        font-size: 1.4rem;
    }

    .visual-content {
        flex: 1;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .suppliers-benefits-section {
        padding: 20px 15px;
    }

    .two-column-layout.reverse {
        gap: 15px;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    .benefits-list li {
        font-size: 0.8rem;
    }

    .benefits-list li i {
        font-size: 1.2rem;
    }

    .text-content .btn-accent {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.how-it-works-section .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how-it-works-section h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.step-card {
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

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

.step-card h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0;
}

.step-card p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .how-it-works-section {
        padding: 50px 40px;
    }

    .how-it-works-section h2 {
        font-size: 2.5rem;
    }

    .steps-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .step-card {
        padding: 30px;
    }

    .step-icon {
        font-size: 3rem;
    }

    .step-card h3 {
        font-size: 1.8rem;
    }

    .step-card p {
        font-size: 1.2rem;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .how-it-works-section {
        padding: 20px 15px;
    }

    .how-it-works-section h2 {
        font-size: 1.5rem;
    }

    .steps-list {
        gap: 15px;
    }

    .step-card {
        padding: 15px;
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: 0.8rem;
    }
}

/* Mission Section */
.mission-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    text-align: center;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.mission-section .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-section h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mission-section h2 i {
    font-size: 2rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.mission-section h2:hover i {
    transform: scale(1.1);
}

.mission-section p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .mission-section {
        padding: 40px 30px;
    }

    .mission-section h2 {
        font-size: 2.5rem;
    }

    .mission-section h2 i {
        font-size: 2.5rem;
    }

    .mission-section p {
        font-size: 1.4rem;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .mission-section {
        padding: 20px 15px;
    }

    .mission-section h2 {
        font-size: 1.5rem;
    }

    .mission-section h2 i {
        font-size: 1.5rem;
    }

    .mission-section p {
        font-size: 0.9rem;
    }
}

/* Closing CTA Section */
.closing-cta-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.closing-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 15s infinite ease-in-out;
}

.closing-cta-section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.closing-cta-section h1 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(82, 80, 194, 0.6);
    line-height: 1.2;
}

.closing-cta-section p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.closing-cta-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--btn-gradient);
    color: var(--text-primary);
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.closing-cta-section .btn-primary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.closing-cta-section .btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.closing-cta-section .btn-primary:hover i {
    transform: scale(1.1);
}

.closing-cta-section .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

.closing-cta-section .link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-blue);
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.closing-cta-section .link-secondary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.closing-cta-section .link-secondary:hover {
    color: var(--accent-blue-dark);
    transform: translateY(-2px);
}

.closing-cta-section .link-secondary:hover i {
    transform: scale(1.1);
}

.closing-cta-section .link-secondary:active {
    transform: translateY(1px);
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
    .closing-cta-section {
        padding: 40px 30px;
        max-width: 900px;
    }

    .closing-cta-section h1 {
        font-size: 2.2rem;
    }

    .closing-cta-section p {
        font-size: 1.4rem;
    }

    .cta-group {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .closing-cta-section .btn-primary {
        padding: 15px 40px;
        font-size: 1.4rem;
    }

    .closing-cta-section .btn-primary i {
        font-size: 1.4rem;
    }

    .closing-cta-section .link-secondary {
        font-size: 1.2rem;
    }

    .closing-cta-section .link-secondary i {
        font-size: 1.2rem;
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .closing-cta-section {
        padding: 20px 15px;
    }

    .closing-cta-section h1 {
        font-size: 1.3rem;
    }

    .closing-cta-section p {
        font-size: 0.9rem;
    }

    .cta-group {
        gap: 10px;
    }

    .closing-cta-section .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .closing-cta-section .btn-primary i {
        font-size: 0.9rem;
    }

    .closing-cta-section .link-secondary {
        font-size: 0.8rem;
    }

    .closing-cta-section .link-secondary i {
        font-size: 0.8rem;
    }
}