/* =============================================================
   WaseetFX Custom Elementor Widgets — elementor-widgets.css
   ============================================================= */

/* Force Cairo on every element inside any WFX widget */
.wfx-hero, .wfx-hero *,
.wfx-stats-bar, .wfx-stats-bar *,
.wfx-story, .wfx-story *,
.wfx-icon-cards, .wfx-icon-cards *,
.wfx-independence, .wfx-independence *,
.wfx-contact, .wfx-contact *,
.wfx-team-grid, .wfx-team-grid *,
.wfx-cta-join, .wfx-cta-join * {
    font-family: 'Cairo', sans-serif !important;
}

/* -------------------------------------------------------
   1. WFX Hero
   ------------------------------------------------------- */
.wfx-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
    text-align: center;
}

.wfx-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
    background-image:
        linear-gradient(to right,  #ffffff 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff 1px, transparent 1px);
    background-size: 3rem 3rem;
}

.wfx-hero__blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.wfx-hero__blob--amber {
    top: 25%;
    right: 25%;
    width: 384px;
    height: 384px;
    background: #f59e0b;
    filter: blur(120px);
    opacity: 0.4;
}

.wfx-hero__blob--emerald {
    bottom: 25%;
    left: 25%;
    width: 560px;
    height: 560px;
    background: #34d399;
    filter: blur(140px);
    opacity: 0.4;
}

.wfx-hero__inner {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.wfx-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wfx-hero__badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f59e0b;
    display: inline-block;
    flex-shrink: 0;
    animation: wfx-pulse 2s infinite;
}

@keyframes wfx-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.wfx-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
}

.wfx-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.7;
    color: rgba(209, 250, 229, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* -------------------------------------------------------
   2. WFX Stats Bar
   ------------------------------------------------------- */
.wfx-stats-bar {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    padding: 0 20px;
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.wfx-stats-bar__inner {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(2, 44, 34, 0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.wfx-stats-bar__item {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.wfx-stats-bar__item:last-child { border-left: 0; }
.wfx-stats-bar__item:hover      { background: #f8fafc; }

.wfx-stats-bar__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.wfx-stats-bar__icon--green { background: #ecfdf5; color: #064e3b; }
.wfx-stats-bar__icon--gold  { background: #fffbeb; color: #f59e0b; }

.wfx-stats-bar__num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #064e3b;
    line-height: 1;
    margin: 0 0 8px;
}

.wfx-stats-bar__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .wfx-stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
    .wfx-stats-bar__item  { border-left: 0; border-bottom: 1px solid #f1f5f9; }
}

/* -------------------------------------------------------
   3. WFX Story
   ------------------------------------------------------- */
.wfx-story {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    padding: 80px 20px;
}

.wfx-story__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .wfx-story__inner { grid-template-columns: 7fr 5fr; }
}

.wfx-story__badge-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wfx-story__badge {
    background: #ecfdf5;
    color: #064e3b;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid #d1fae5;
}

.wfx-story__badge-line {
    height: 2px;
    width: 48px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.wfx-story__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #064e3b;
    line-height: 1.3;
    margin: 0 0 24px;
}

.wfx-story__title mark { background: none; color: #f59e0b; }

.wfx-story__text {
    font-size: 1.05rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.8;
    margin: 0 0 20px;
}

.wfx-story__text:last-child { margin-bottom: 0; }

/* Illustration column */
.wfx-story__illus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.wfx-story__bg1 {
    position: absolute;
    inset: 0;
    background: #ecfdf5;
    border-radius: 40px;
    transform: rotate(6deg);
    border: 1px solid rgba(209,250,229,.5);
}

.wfx-story__bg2 {
    position: absolute;
    inset: 0;
    background: #fffbeb;
    border-radius: 40px;
    transform: rotate(-6deg);
    opacity: .6;
    border: 1px solid rgba(253,230,138,.5);
}

.wfx-story__card {
    position: relative;
    width: 280px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    text-align: center;
    gap: 16px;
    transition: transform .3s;
}

.wfx-story__card:hover { transform: scale(1.03); }

.wfx-story__card-icon {
    width: 80px;
    height: 80px;
    background: #064e3b;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(6,78,59,.25);
    color: #f59e0b;
    font-size: 2.5rem;
}

.wfx-story__card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #064e3b;
    margin: 0 0 4px;
}

.wfx-story__card-sub {
    font-size: .85rem;
    font-weight: 600;
    color: #94a3b8;
    margin: 0;
}

.wfx-story__card-pill {
    background: #ecfdf5;
    color: #064e3b;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.wfx-story__tag {
    position: absolute;
    background: #fff;
    padding: 10px 14px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    white-space: nowrap;
}

.wfx-story__tag--top    { top: -16px;    right: 0; }
.wfx-story__tag--bottom { bottom: -16px; left: 0; }

.wfx-story__tag-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.wfx-story__tag-warn {
    padding: 6px;
    background: #fef2f2;
    border-radius: 8px;
    color: #ef4444;
    line-height: 0;
    flex-shrink: 0;
}

/* -------------------------------------------------------
   4. WFX Icon Cards  (mission cards, values cards)
   ------------------------------------------------------- */
.wfx-icon-cards {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    background: #f8fafc;
    padding: 80px 20px;
    border-top: 1px solid rgba(226,232,240,.6);
    border-bottom: 1px solid rgba(226,232,240,.6);
}

.wfx-icon-cards__inner { max-width: 1280px; margin: 0 auto; }

.wfx-icon-cards__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.wfx-icon-cards__badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.wfx-icon-cards__badge--amber {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.wfx-icon-cards__badge--green {
    background: #ecfdf5;
    color: #064e3b;
    border: 1px solid #d1fae5;
}

.wfx-icon-cards__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #064e3b;
    margin: 0 0 12px;
}

.wfx-icon-cards__subtitle {
    font-size: .95rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.wfx-icon-cards__grid {
    display: grid;
    gap: 24px;
}

.wfx-icon-cards__grid--2 { grid-template-columns: repeat(2, 1fr); }
.wfx-icon-cards__grid--3 { grid-template-columns: repeat(3, 1fr); }
.wfx-icon-cards__grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .wfx-icon-cards__grid--4 { grid-template-columns: repeat(2, 1fr); }
    .wfx-icon-cards__grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .wfx-icon-cards__grid--2,
    .wfx-icon-cards__grid--3,
    .wfx-icon-cards__grid--4 { grid-template-columns: 1fr; }
}

.wfx-icon-card {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(226,232,240,.5);
    transition: all .3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.wfx-icon-card:hover {
    border-color: #064e3b;
    box-shadow: 0 25px 50px rgba(2,44,34,.05);
}

.wfx-icon-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
}

.wfx-icon-card__icon--green   { background: #ecfdf5; color: #064e3b; }
.wfx-icon-card__icon--gold    { background: #fffbeb; color: #f59e0b; }
.wfx-icon-card__icon--red     { background: #fef2f2; color: #ef4444; }
.wfx-icon-card__icon--emerald { background: #ecfdf5; color: #10b981; }

.wfx-icon-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 12px;
}

.wfx-icon-card__text {
    font-size: .85rem;
    color: #94a3b8;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
}

/* -------------------------------------------------------
   5. WFX Independence
   ------------------------------------------------------- */
.wfx-independence {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    padding: 80px 20px;
    background: #ffffff;
}

.wfx-independence__card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid #d1fae5;
    padding: 60px 48px;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(6,78,59,.04);
}

@media (max-width: 640px) {
    .wfx-independence__card { padding: 40px 24px; }
}

.wfx-independence__icon {
    width: 56px;
    height: 56px;
    background: #ecfdf5;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
    color: #064e3b;
}

.wfx-independence__title {
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 800;
    color: #064e3b;
    margin: 0 0 20px;
}

.wfx-independence__desc {
    font-size: 1.05rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 28px;
}

.wfx-independence__toggle {
    background: none;
    border: none;
    color: #064e3b;
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.wfx-independence__toggle:hover { color: #059669; }

.wfx-independence__meth {
    display: none;
    text-align: right;
    background: rgba(236,253,245,.5);
    border: 1px solid #d1fae5;
    border-radius: 24px;
    padding: 2rem;
    margin-top: 24px;
}

.wfx-independence__meth.is-open { display: block; }

.wfx-independence__meth-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 12px;
    border-right: 4px solid #064e3b;
    padding-right: 12px;
}

.wfx-independence__meth-intro {
    font-size: .9rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 16px;
}

.wfx-independence__meth-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 640px) {
    .wfx-independence__meth-list { grid-template-columns: 1fr; }
}

.wfx-independence__meth-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: #475569;
}

.wfx-independence__meth-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
}

/* -------------------------------------------------------
   6. WFX Contact
   ------------------------------------------------------- */
.wfx-contact {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    padding: 80px 20px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.wfx-contact__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .wfx-contact__inner { grid-template-columns: 1fr 1fr; }
}

.wfx-contact__badge-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wfx-contact__badge {
    background: #ecfdf5;
    color: #064e3b;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid #d1fae5;
}

.wfx-contact__badge-line {
    height: 2px;
    width: 48px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.wfx-contact__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #064e3b;
    margin: 0 0 16px;
    line-height: 1.3;
}

.wfx-contact__desc {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 32px;
}

.wfx-contact__channel {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    margin-bottom: 16px;
    transition: all .2s;
    text-decoration: none;
}

.wfx-contact__channel:hover { border-color: #064e3b; background: #fff; }

.wfx-contact__ch-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.wfx-contact__ch-icon--email    { background: #ecfdf5; color: #064e3b; }
.wfx-contact__ch-icon--whatsapp { background: #d1fae5; color: #059669; }

.wfx-contact__ch-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    display: block;
    margin-bottom: 4px;
}

.wfx-contact__ch-value {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
}

/* Form card */
.wfx-contact__form-card {
    background: #fff;
    border: 1px solid rgba(226,232,240,.5);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 25px 50px rgba(148,163,184,.12);
}

@media (max-width: 640px) {
    .wfx-contact__form-card { padding: 24px; }
}

.wfx-contact__form-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #064e3b;
    margin: 0 0 24px;
}

.wfx-form label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
}

.wfx-form input,
.wfx-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s;
    margin-bottom: 20px;
    background: #fff;
}

.wfx-form input:focus,
.wfx-form textarea:focus {
    border-color: #064e3b;
    box-shadow: 0 0 0 3px rgba(6,78,59,.06);
}

.wfx-form textarea { resize: none; }

.wfx-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) { .wfx-form__row { grid-template-columns: 1fr; } }

/* Phone row */
.wfx-phone-wrap {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.wfx-phone-prefix-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0 12px;
    flex-shrink: 0;
    transition: border-color .2s;
}

.wfx-phone-prefix-box:focus-within { border-color: #064e3b; }

.wfx-flag { width: 20px; height: auto; flex-shrink: 0; }

.wfx-country-select {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Cairo', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    max-width: 130px;
}

.wfx-phone-input { flex: 1; margin-bottom: 0 !important; }

/* Field validation states */
.wfx-field-error { border-color: #ef4444 !important; }
.wfx-field-ok    { border-color: #10b981 !important; }

.wfx-field-msg {
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-top: -14px;
    margin-bottom: 16px;
}

.wfx-field-msg--err { color: #ef4444; }

.wfx-form__submit {
    width: 100%;
    background: #064e3b;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

.wfx-form__submit:hover  { background: #065f46; }
.wfx-form__submit:active { transform: scale(.98); }

.wfx-form__success {
    display: none;
    text-align: center;
    font-size: .9rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
}

/* -------------------------------------------------------
   7. WFX Team Grid
   ------------------------------------------------------- */
.wfx-team-grid {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    padding: 80px 20px;
    background: #ffffff;
}

.wfx-team-grid__inner { max-width: 1280px; margin: 0 auto; }

.wfx-team-grid__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.wfx-team-grid__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #064e3b;
    margin: 0 0 12px;
}

.wfx-team-grid__subtitle {
    font-size: .95rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.wfx-team-grid__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) { .wfx-team-grid__cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .wfx-team-grid__cards { grid-template-columns: 1fr; } }

.wfx-team-card {
    background: #fff;
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(6,78,59,.02);
    transition: all .3s;
}

.wfx-team-card:hover {
    box-shadow: 0 20px 40px rgba(2,44,34,.07);
    border-color: #d1fae5;
}

.wfx-team-card__avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.75rem;
    color: #fff;
    border: 4px solid #f8fafc;
    transition: all .3s;
}

.wfx-team-card:hover .wfx-team-card__avatar {
    transform: scale(1.05) rotate(2deg);
}

.wfx-team-card__avatar--1 { background: linear-gradient(135deg, #064e3b, #065f46); }
.wfx-team-card__avatar--2 { background: linear-gradient(135deg, #064e3b, #059669); }
.wfx-team-card__avatar--3 { background: linear-gradient(135deg, #b45309, #d97706); }
.wfx-team-card__avatar--4 { background: linear-gradient(135deg, #022c22, #064e3b); }

.wfx-team-card__name {
    font-size: 1.2rem;
    font-weight: 900;
    color: #064e3b;
    margin: 0 0 6px;
}

.wfx-team-card__role {
    color: #f59e0b;
    font-weight: 700;
    font-size: .8rem;
    margin: 0 0 1rem;
}

.wfx-team-card__bio {
    color: #94a3b8;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    flex: 1;
}

.wfx-team-card__linkedin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all .2s;
    text-decoration: none;
    font-size: 1rem;
}

.wfx-team-card__linkedin:hover { background: #ecfdf5; color: #064e3b; }

/* -------------------------------------------------------
   8. WFX CTA Join
   ------------------------------------------------------- */
.wfx-cta-join {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.wfx-cta-join__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .1;
    background-image:
        linear-gradient(to right,  #ffffff 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff 1px, transparent 1px);
    background-size: 2rem 2rem;
}

.wfx-cta-join__inner {
    position: relative;
    z-index: 10;
    max-width: 720px;
    margin: 0 auto;
}

.wfx-cta-join__badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: #f59e0b;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.1);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wfx-cta-join__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.wfx-cta-join__desc {
    font-size: 1.1rem;
    color: rgba(209,250,229,.9);
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 36px;
}

.wfx-cta-join__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f59e0b;
    color: #022c22;
    padding: 16px 40px;
    border-radius: 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(245,158,11,.25);
    transition: all .2s;
}

.wfx-cta-join__btn:hover {
    background: #fbbf24;
    transform: scale(1.03);
    color: #022c22;
}
