﻿.wfu3-section, .wfu3-section * {
    box-sizing: border-box;
}

.wfu3-section {
    --wfu3-red: #e02020;
    --wfu3-red-dark: #c81e1e;
    --wfu3-ink: #1a1a1a;
    --wfu3-gray-text: #6b6b6b;
    --wfu3-gray-text-light: #8a8a8a;
    --wfu3-card-bg: #ffffff;
    --wfu3-soft-bg: #f6f6f8;
    --wfu3-soft-bg-2: #f0f1f3;
    --wfu3-field-bg: #fafafa;
    --wfu3-border-c: #e6e6e8;
    --wfu3-pink-bg: #fdeaea;
    --wfu3-icon-bg: #fbe3e3;
    max-width: 1200px;
    min-width: 600px;
    width: 92%;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--wfu3-ink);
    background: var(--wfu3-card-bg);
    border-radius: 24px;
    padding: clamp(20px, 3.5vw, 40px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(24px);
    animation: wfu3RevealUp 0.8s ease-out forwards;
}

@keyframes wfu3RevealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wfu3-section a {
    text-decoration: none;
    color: inherit;
}

.wfu3-section button {
    font-family: inherit;
}

.wfu3-section-title {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 800;
    margin: 0 0 8px 0;
}

.wfu3-section-underline {
    width: 42px;
    height: 3px;
    background: var(--wfu3-red);
    border-radius: 4px;
    margin-bottom: 18px;
}

/* ===================== HERO ===================== */
.wfu3-hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.wfu3-hero-text .wfu3-eyebrow {
    display: inline-block;
    color: var(--wfu3-red);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--wfu3-red);
    padding-bottom: 6px;
    margin-bottom: 16px;
}

.wfu3-hero-text h1 {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px 0;
}

    .wfu3-hero-text h1 .wfu3-red-text {
        color: var(--wfu3-red);
        display: block;
    }

.wfu3-hero-text p {
    color: var(--wfu3-gray-text);
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 0 22px 0;
}

.wfu3-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wfu3-red);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: clamp(12.5px, 1vw, 14px);
    padding: 13px 22px;
    border-radius: 9px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(224,32,32,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .wfu3-cta-btn:hover {
        background: var(--wfu3-red-dark);
        transform: translateY(-3px);
        box-shadow: 0 12px 26px rgba(224,32,32,0.35);
    }

    .wfu3-cta-btn svg {
        width: 14px;
        height: 14px;
        transition: transform 0.25s ease;
    }

    .wfu3-cta-btn:hover svg {
        transform: translateX(4px);
    }

.wfu3-hero-img {
    border-radius: 18px;
    overflow: hidden;
}

    .wfu3-hero-img img {
        width: 100%;
        height: clamp(220px, 26vw, 320px);
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .wfu3-hero-img:hover img {
        transform: scale(1.04);
    }

/* ===================== WHY WRITE ===================== */
.wfu3-why-box {
    background: var(--wfu3-soft-bg);
    border-radius: 18px;
    padding: clamp(22px, 3.5vw, 36px);
    margin-bottom: clamp(28px, 4vw, 44px);
}

    .wfu3-why-box h2 {
        text-align: center;
        font-size: clamp(18px, 2vw, 24px);
        font-weight: 800;
        margin: 0 0 10px 0;
    }

        .wfu3-why-box h2 span {
            color: var(--wfu3-red);
        }

.wfu3-why-underline {
    width: 50px;
    height: 3px;
    background: var(--wfu3-red);
    border-radius: 4px;
    margin: 0 auto 26px auto;
}

.wfu3-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wfu3-why-item {
    text-align: center;
    padding: 6px;
}

.wfu3-why-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--wfu3-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .wfu3-why-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--wfu3-red);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.wfu3-why-item:hover .wfu3-why-icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--wfu3-red);
}

    .wfu3-why-item:hover .wfu3-why-icon svg {
        stroke: #fff;
    }

.wfu3-why-item h3 {
    font-size: clamp(13.5px, 1.1vw, 15px);
    font-weight: 700;
    margin: 0 0 8px 0;
}

.wfu3-why-item p {
    font-size: clamp(12px, 0.9vw, 13px);
    color: var(--wfu3-gray-text);
    line-height: 1.6;
    margin: 0;
}

/* ===================== TWO COL: ACCEPT + GUIDELINES ===================== */
.wfu3-twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 36px);
    margin-bottom: clamp(28px, 4vw, 44px);
    align-items: start;
}

.wfu3-accept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.wfu3-accept-card {
    background: var(--wfu3-soft-bg);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .wfu3-accept-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.07);
    }

.wfu3-accept-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .wfu3-accept-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--wfu3-red);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.wfu3-accept-card h4 {
    font-size: clamp(12.5px, 1vw, 13.5px);
    font-weight: 700;
    margin: 0 0 6px 0;
}

.wfu3-accept-card p {
    font-size: clamp(11px, 0.85vw, 12px);
    color: var(--wfu3-gray-text);
    line-height: 1.5;
    margin: 0;
}

.wfu3-guidelines-box {
    background: var(--wfu3-soft-bg);
    border-radius: 14px;
    padding: clamp(18px, 2.5vw, 26px);
}

.wfu3-guidelines-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

    .wfu3-guidelines-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: clamp(12.5px, 0.95vw, 13.5px);
        color: var(--wfu3-gray-text);
        line-height: 1.5;
    }

    .wfu3-guidelines-list svg {
        flex: 0 0 auto;
        width: 16px;
        height: 16px;
        stroke: var(--wfu3-red);
        fill: none;
        stroke-width: 2;
        margin-top: 2px;
    }

/* ===================== TWO COL: PROCESS + BENEFITS ===================== */
.wfu3-process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 10px;
}

    .wfu3-process-steps::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: var(--wfu3-border-c);
        z-index: 0;
    }

.wfu3-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.wfu3-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--wfu3-red);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    box-shadow: 0 6px 16px rgba(224,32,32,0.3);
}

.wfu3-process-step h4 {
    font-size: clamp(12.5px, 0.95vw, 13.5px);
    font-weight: 700;
    margin: 0 0 6px 0;
}

.wfu3-process-step p {
    font-size: clamp(11px, 0.8vw, 12px);
    color: var(--wfu3-gray-text);
    line-height: 1.5;
    margin: 0;
    padding: 0 4px;
}

.wfu3-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.wfu3-benefit-card {
    background: var(--wfu3-soft-bg);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .wfu3-benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.07);
    }

.wfu3-benefit-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .wfu3-benefit-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--wfu3-red);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.wfu3-benefit-card h4 {
    font-size: clamp(11.5px, 0.9vw, 12.5px);
    font-weight: 700;
    margin: 0 0 6px 0;
}

.wfu3-benefit-card p {
    font-size: clamp(10.5px, 0.8vw, 11.5px);
    color: var(--wfu3-gray-text);
    line-height: 1.45;
    margin: 0;
}

/* ===================== FEATURED WRITERS ===================== */
.wfu3-writers-section {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.wfu3-writers-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.wfu3-writer-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--wfu3-soft-bg);
    border-radius: 12px;
    padding: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .wfu3-writer-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.07);
    }

    .wfu3-writer-card img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        flex: 0 0 auto;
    }

    .wfu3-writer-card h5 {
        font-size: clamp(12.5px, 1vw, 13.5px);
        font-weight: 700;
        margin: 0 0 3px 0;
    }

    .wfu3-writer-card span {
        display: block;
        font-size: clamp(11px, 0.85vw, 12px);
        color: var(--wfu3-gray-text);
    }

    .wfu3-writer-card .wfu3-articles {
        color: var(--wfu3-red);
        font-weight: 600;
    }

.wfu3-viewall-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--wfu3-red);
    border-radius: 12px;
    color: var(--wfu3-red);
    font-weight: 700;
    font-size: clamp(12px, 0.95vw, 13.5px);
    gap: 8px;
    transition: background 0.25s ease, color 0.25s ease;
}

    .wfu3-viewall-card:hover {
        background: var(--wfu3-red);
        color: #fff;
    }

    .wfu3-viewall-card svg {
        width: 14px;
        height: 14px;
        transition: transform 0.25s ease;
    }

    .wfu3-viewall-card:hover svg {
        transform: translateX(4px);
    }

/* ===================== CTA BANNER ===================== */
.wfu3-ctabanner {
    background: var(--wfu3-pink-bg);
    border-radius: 16px;
    padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(28px, 4vw, 44px);
    flex-wrap: wrap;
}

.wfu3-ctabanner-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wfu3-ctabanner-icon {
    width: 140px;
    height: 56px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .wfu3-ctabanner-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--wfu3-red);
        fill: none;
        stroke-width: 1.6;
    }

.wfu3-ctabanner-copy h3 {
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: 800;
    margin: 0 0 4px 0;
}

.wfu3-ctabanner-copy p {
    font-size: clamp(12px, 0.95vw, 13.5px);
    color: var(--wfu3-gray-text);
    margin: 0;
}

/* ===================== FORM + FAQ ===================== */
.wfu3-formfaq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 36px);
    align-items: start;
}

.wfu3-submit-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wfu3-form-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wfu3-submit-form input[type="text"],
.wfu3-submit-form input[type="email"],
.wfu3-submit-form select,
.wfu3-submit-form textarea {
    width: 100%;
    background: var(--wfu3-field-bg);
    border: 1px solid var(--wfu3-border-c);
    border-radius: 9px;
    padding: 12px 14px;
    font-size: clamp(12.5px, 0.95vw, 13.5px);
    font-family: inherit;
    color: var(--wfu3-ink);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

    .wfu3-submit-form input:focus,
    .wfu3-submit-form select:focus,
    .wfu3-submit-form textarea:focus {
        outline: none;
        border-color: var(--wfu3-red);
        box-shadow: 0 0 0 3px rgba(224,32,32,0.12);
    }

.wfu3-submit-form textarea {
    min-height: 80px;
    resize: vertical;
}

.wfu3-form-label {
    font-size: clamp(11.5px, 0.85vw, 12.5px);
    color: var(--wfu3-gray-text);
    margin-bottom: -6px;
}

.wfu3-file-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wfu3-file-btn {
    background: var(--wfu3-soft-bg-2);
    border: 1px solid var(--wfu3-border-c);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    flex: 0 0 auto;
}

.wfu3-file-name {
    font-size: 12px;
    color: var(--wfu3-gray-text-light);
}

/* FAQ */
.wfu3-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wfu3-faq-item {
    border: 1px solid var(--wfu3-border-c);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.wfu3-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    cursor: pointer;
    font-size: clamp(12.5px, 0.95vw, 13.5px);
    font-weight: 600;
}

    .wfu3-faq-question svg {
        width: 14px;
        height: 14px;
        stroke: var(--wfu3-gray-text);
        fill: none;
        stroke-width: 2.2;
        transition: transform 0.3s ease;
    }

.wfu3-faq-item.wfu3-open .wfu3-faq-question svg {
    transform: rotate(180deg);
}

.wfu3-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: clamp(12px, 0.9vw, 13px);
    color: var(--wfu3-gray-text);
    line-height: 1.6;
    padding: 0 16px;
}

.wfu3-faq-item.wfu3-open .wfu3-faq-answer {
    max-height: 200px;
    padding: 0 16px 14px 16px;
}

.wfu3-newsletter-box {
    margin-top: 16px;
    background: var(--wfu3-soft-bg);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wfu3-newsletter-box-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
   
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .wfu3-newsletter-box-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--wfu3-red);
        fill: none;
        stroke-width: 1.8;
    }

.wfu3-newsletter-box-copy h4 {
    font-size: clamp(12.5px, 1vw, 14px);
    font-weight: 800;
    margin: 0 0 4px 0;
}

.wfu3-newsletter-box-copy p {
    font-size: clamp(11px, 0.85vw, 12px);
    color: var(--wfu3-gray-text);
    margin: 0 0 10px 0;
}

.wfu3-newsletter-box-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

    .wfu3-newsletter-box-form input {
        flex: 1;
        min-width: 140px;
        background: #fff;
        border: 1px solid var(--wfu3-border-c);
        border-radius: 8px;
        padding: 9px 12px;
        font-size: 12px;
        font-family: inherit;
    }

    .wfu3-newsletter-box-form button {
        background: var(--wfu3-red);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 9px 14px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 700;
        font-size: 12px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .wfu3-newsletter-box-form button:hover {
            background: var(--wfu3-red-dark);
        }

        .wfu3-newsletter-box-form button svg {
            width: 12px;
            height: 12px;
        }

.wfu3-newsletter-note-small {
    font-size: 10.5px;
    color: var(--wfu3-gray-text-light);
    margin: 6px 0 0 0;
}

/* ===================== RESPONSIVE 600px - 1200px ===================== */
@media (max-width: 1000px) {
    .wfu3-hero {
        grid-template-columns: 1fr;
    }

    .wfu3-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wfu3-twocol {
        grid-template-columns: 1fr;
    }

    .wfu3-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wfu3-writers-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .wfu3-formfaq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .wfu3-accept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wfu3-process-steps {
        flex-wrap: wrap;
        row-gap: 20px;
    }

        .wfu3-process-steps::before {
            display: none;
        }

    .wfu3-process-step {
        flex: 0 0 45%;
    }

    .wfu3-form-row2 {
        grid-template-columns: 1fr;
    }

    .wfu3-ctabanner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wfu3-section, .wfu3-section * {
    
        transition: none !important;
    }
}

/* ===================== RESPONSIVE MOBILE 768px ===================== */
@media (max-width: 768px) {
    .wfu3-section {
        min-width: 0;
        width: 95%;
        padding: clamp(16px, 2.5vw, 24px);
        border-radius: 16px;
    }

    .wfu3-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wfu3-hero-text h1 {
        font-size: clamp(22px, 5vw, 28px);
    }

    .wfu3-hero-text p {
        font-size: 14px;
        max-width: 100%;
    }

    .wfu3-cta-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .wfu3-hero-img img {
        height: auto;
        max-height: 240px;
    }

    .wfu3-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .wfu3-twocol {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wfu3-accept-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wfu3-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wfu3-process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wfu3-process-steps::before {
        display: none;
    }

    .wfu3-process-step {
        flex: 0 0 calc(50% - 10px);
    }

    .wfu3-writers-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wfu3-formfaq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wfu3-ctabanner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wfu3-ctabanner-left {
        flex-direction: column;
        align-items: center;
    }

    .wfu3-ctabanner-copy p {
        margin-left: 0 !important;
    }

    .wfu3-form-row2 {
        grid-template-columns: 1fr;
    }
}

/* ===================== RESPONSIVE MOBILE 400px ===================== */
@media (max-width: 400px) {
    .wfu3-section {
        width: 98%;
        padding: 14px;
        border-radius: 12px;
    }

    .wfu3-hero-text h1 {
        font-size: 20px;
        line-height: 1.2;
    }

    .wfu3-hero-text p {
        font-size: 13px;
    }

    .wfu3-cta-btn {
        padding: 11px 18px;
        font-size: 12.5px;
        width: 100%;
        justify-content: center;
    }

    .wfu3-why-box {
        padding: 18px;
    }

    .wfu3-why-box h2 {
        font-size: 18px;
    }

    .wfu3-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wfu3-accept-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wfu3-accept-card {
        padding: 14px 12px;
    }

    .wfu3-guidelines-box {
        padding: 16px;
    }

    .wfu3-process-step {
        flex: 0 0 100%;
    }

    .wfu3-step-num {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .wfu3-benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wfu3-writers-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wfu3-writer-card {
        padding: 12px;
    }

    .wfu3-ctabanner {
        padding: 16px;
    }

    .wfu3-ctabanner-icon {
        width: 100px;
        height: auto;
    }

    .wfu3-ctabanner-copy h3 {
        font-size: 16px;
    }

    .wfu3-ctabanner-copy p {
        font-size: 12px;
    }

    .wfu3-submit-form {
        padding: 30px 20px !important;
    }

    .wfu3-newsletter-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
    }

    .wfu3-newsletter-box-form {
        width: 100%;
    }

    .wfu3-newsletter-box-form input {
        min-width: 100%;
    }

    .wfu3-newsletter-box-form button {
        width: 100%;
        justify-content: center;
    }
}

/* ===================== RESPONSIVE MOBILE 375px ===================== */
@media (max-width: 375px) {
    .wfu3-section {
        padding: 12px;
    }

    .wfu3-hero-text h1 {
        font-size: 19px;
    }

    .wfu3-hero-text .wfu3-eyebrow {
        font-size: 11px;
    }

    .wfu3-why-box h2 {
        font-size: 17px;
    }

    .wfu3-why-icon {
        width: 48px;
        height: 48px;
    }

    .wfu3-why-item h3 {
        font-size: 13px;
    }

    .wfu3-why-item p {
        font-size: 11.5px;
    }

    .wfu3-section-title {
        font-size: 16px;
    }

    .wfu3-accept-card h4 {
        font-size: 12px;
    }

    .wfu3-accept-card p {
        font-size: 10.5px;
    }

    .wfu3-guidelines-list li {
        font-size: 12px;
    }

    .wfu3-process-step h4 {
        font-size: 12px;
    }

    .wfu3-process-step p {
        font-size: 10.5px;
    }

    .wfu3-benefit-card h4 {
        font-size: 11.5px;
    }

    .wfu3-benefit-card p {
        font-size: 10.5px;
    }

    .wfu3-faq-question {
        font-size: 12px;
        padding: 11px 14px;
    }

    .wfu3-faq-answer {
        font-size: 11.5px;
    }
}

/* ===================== RESPONSIVE MOBILE 320px ===================== */
@media (max-width: 320px) {
    .wfu3-section {
        padding: 10px;
        width: 100%;
    }

    .wfu3-hero-text h1 {
        font-size: 18px;
    }

    .wfu3-hero-text .wfu3-eyebrow {
        font-size: 10px;
    }

    .wfu3-hero-text p {
        font-size: 12px;
    }

    .wfu3-cta-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .wfu3-why-box {
        padding: 14px;
    }

    .wfu3-why-box h2 {
        font-size: 16px;
    }

    .wfu3-why-icon {
        width: 44px;
        height: 44px;
    }

    .wfu3-why-icon svg {
        width: 18px;
        height: 18px;
    }

    .wfu3-why-item h3 {
        font-size: 12.5px;
    }

    .wfu3-why-item p {
        font-size: 11px;
    }

    .wfu3-section-title {
        font-size: 15px;
    }

    .wfu3-accept-card {
        padding: 12px 10px;
    }

    .wfu3-accept-card h4 {
        font-size: 11.5px;
    }

    .wfu3-accept-card p {
        font-size: 10px;
    }

    .wfu3-guidelines-box {
        padding: 12px;
    }

    .wfu3-guidelines-list li {
        font-size: 11.5px;
        gap: 8px;
    }

    .wfu3-guidelines-list svg {
        width: 14px;
        height: 14px;
    }

    .wfu3-step-num {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .wfu3-process-step h4 {
        font-size: 11.5px;
    }

    .wfu3-process-step p {
        font-size: 10px;
    }

    .wfu3-benefit-card {
        padding: 14px 10px;
    }

    .wfu3-benefit-card h4 {
        font-size: 11px;
    }

    .wfu3-benefit-card p {
        font-size: 10px;
    }

    .wfu3-writer-card {
        padding: 10px;
        gap: 10px;
    }

    .wfu3-writer-card img {
        width: 42px;
        height: 42px;
    }

    .wfu3-writer-card h5 {
        font-size: 12px;
    }

    .wfu3-writer-card span {
        font-size: 10.5px;
    }

    .wfu3-ctabanner {
        padding: 14px;
    }

    .wfu3-ctabanner-icon {
        width: 80px;
    }

    .wfu3-ctabanner-copy h3 {
        font-size: 15px;
    }

    .wfu3-ctabanner-copy p {
        font-size: 11px;
    }

    .wfu3-submit-form {
        padding: 25px 15px !important;
    }

    .wfu3-submit-form input,
    .wfu3-submit-form select,
    .wfu3-submit-form textarea {
        padding: 10px 12px;
        font-size: 12px;
    }

    .wfu3-faq-question {
        font-size: 11.5px;
        padding: 10px 12px;
    }

    .wfu3-faq-answer {
        font-size: 11px;
        padding: 0 12px;
    }

    .wfu3-faq-item.wfu3-open .wfu3-faq-answer {
        padding: 0 12px 12px 12px;
    }

    .wfu3-newsletter-box {
        padding: 12px;
    }

    .wfu3-newsletter-box-copy h4 {
        font-size: 13px;
    }

    .wfu3-newsletter-box-copy p {
        font-size: 10.5px;
    }

    .wfu3-newsletter-box-form input {
        padding: 8px 10px;
        font-size: 11px;
    }

    .wfu3-newsletter-box-form button {
        padding: 8px 12px;
        font-size: 11px;
    }
}
