/* ========================================
   CMS DESIGN SYSTEM
   ======================================== */

:root {
    --wf-primary: #3B5FE5;
    --wf-primary-light: #4A6FF0;
    --wf-primary-dark: #2A4BD4;
    --wf-navy: #1a1f4e;
    --wf-navy-deep: #13163d;
    --wf-bg-light: #f0f2ff;
    --wf-bg-white: #ffffff;
    --wf-bg-hero: linear-gradient(180deg, #e8ecff 0%, #f0f2ff 50%, #ffffff 100%);
    --wf-text-dark: #1a1f4e;
    --wf-text-body: #4a5068;
    --wf-text-light: #8890a8;
    --wf-text-white: #ffffff;
    --wf-border: #e2e6f0;
    --wf-radius: 12px;
    --wf-radius-lg: 20px;
    --wf-radius-pill: 50px;
    --wf-shadow: 0 4px 24px rgba(26, 31, 78, 0.08);
    --wf-shadow-lg: 0 8px 40px rgba(26, 31, 78, 0.12);
    --wf-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --wf-font-ar: 'Rubik', sans-serif;
    --wf-font-en: 'Inter', sans-serif;
    --wf-container: 1200px;
}

/* ========== RESET & BASE ========== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: var(--wf-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.wf-container {
    max-width: var(--wf-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== SECTION BADGE (PILL) ========== */
.wf-badge {
    display: inline-block;
    padding: 8px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--wf-radius-pill);
    border: 2px solid var(--wf-primary);
    color: var(--wf-primary);
    background: transparent;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.wf-dark-section .wf-badge {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* ========== TYPOGRAPHY ========== */
.wf-heading-xl {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--wf-text-dark);
    margin: 0 0 20px;
}

.wf-heading-lg {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--wf-text-dark);
    margin: 0 0 16px;
}

.wf-heading-md {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
}

.wf-text-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--wf-text-body);
    margin: 0 0 16px;
}

.wf-text-sub {
    font-size: 0.95rem;
    color: var(--wf-text-light);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .wf-heading-xl {
        font-size: 2.8rem;
    }

    .wf-heading-lg {
        font-size: 2.2rem;
    }
}

@media (min-width: 992px) {
    .wf-heading-xl {
        font-size: 3.2rem;
    }

    .wf-heading-lg {
        font-size: 2.6rem;
    }
}

/* ========== BUTTONS ========== */
.wf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--wf-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--wf-transition);
    letter-spacing: 0.01em;
}

.wf-btn-primary {
    background: var(--wf-primary);
    color: #fff;
}

.wf-btn-primary:hover {
    background: var(--wf-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 95, 229, 0.35);
    text-decoration: none;
}

.wf-btn-outline {
    background: transparent;
    color: var(--wf-primary);
    border: 2px solid var(--wf-primary);
}

.wf-btn-outline:hover {
    background: var(--wf-primary);
    color: #fff;
    text-decoration: none;
}

.wf-btn-white {
    background: #fff;
    color: var(--wf-navy);
}

.wf-btn-white:hover {
    background: #f0f2ff;
    color: var(--wf-navy);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ========== NAVBAR ========== */
.wf-navbar {
    padding: 16px 0;
    position: relative;
    z-index: 100;
}

.wf-navbar .wf-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wf-navbar__logo img {
    height: 48px;
}

.wf-navbar__links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

@media (min-width: 992px) {
    .wf-navbar__links {
        display: flex;
        align-items: center;
    }
}

.wf-navbar__links a {
    color: var(--wf-text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--wf-transition);
}

.wf-navbar__links a:hover {
    color: var(--wf-primary);
}

.wf-navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wf-navbar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--wf-bg-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--wf-text-dark);
}

@media (min-width: 992px) {
    .wf-navbar__toggle {
        display: none;
    }
}

/* Mobile menu */
.wf-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 31, 78, 0.5);
    z-index: 999;
}

.wf-mobile-menu.active {
    display: block;
}

.wf-mobile-menu__inner {
    background: #fff;
    width: 85%;
    max-width: 360px;
    height: 100%;
    padding: 24px;
    overflow-y: auto;
    animation: wfSlideIn 0.3s ease;
}

[dir="rtl"] .wf-mobile-menu__inner {
    margin-right: auto;
    margin-left: 0;
}

[dir="ltr"] .wf-mobile-menu__inner {
    margin-left: auto;
    margin-right: 0;
}

@keyframes wfSlideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

[dir="rtl"] .wf-mobile-menu__inner {
    animation-name: wfSlideInRtl;
}

@keyframes wfSlideInRtl {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.wf-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--wf-bg-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.wf-mobile-menu__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf-mobile-menu__links li {
    border-bottom: 1px solid var(--wf-border);
}

.wf-mobile-menu__links a {
    display: block;
    padding: 14px 0;
    color: var(--wf-text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
}

/* ========== HERO ========== */
.wf-hero {
    background: var(--wf-bg-hero);
    padding: 40px 0 60px;
    text-align: center;
    overflow: hidden;
}

.wf-hero__content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.wf-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--wf-text-dark);
    margin: 0 0 20px;
}

.wf-hero__subtitle {
    font-size: 1.15rem;
    color: var(--wf-text-body);
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 650px;
}

.wf-hero__cta {
    margin-bottom: 16px;
}

.wf-hero__trial-note {
    font-size: 0.9rem;
    color: var(--wf-text-light);
}

.wf-hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.wf-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--wf-text-light);
}

.wf-hero__trust-item i {
    color: var(--wf-primary);
    font-size: 1.1rem;
}

.wf-hero__image {
    max-width: 900px;
    margin: 0 auto;
}

.wf-hero__image-placeholder {
    background: var(--wf-bg-white);
    border-radius: var(--wf-radius-lg);
    box-shadow: var(--wf-shadow-lg);
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--wf-border);
    position: relative;
    overflow: hidden;
}

.wf-hero__image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--wf-radius);
}

.wf-placeholder-label {
    color: var(--wf-text-light);
    font-size: 0.95rem;
    text-align: center;
}

.wf-placeholder-label i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--wf-primary);
    opacity: 0.5;
}

@media (max-width: 767px) {
    .wf-hero__image-placeholder {
        padding: 0;
        border: none;
        min-height: auto;
        border-radius: var(--wf-radius);
    }

    .wf-hero__image-placeholder img {
        border-radius: var(--wf-radius);
    }

    .wf-hero__image {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .wf-hero {
        padding: 60px 0 80px;
    }

    .wf-hero__title {
        font-size: 2.8rem;
    }
}

@media (min-width: 992px) {
    .wf-hero {
        padding: 60px 0 100px;
    }

    .wf-hero__title {
        font-size: 3.2rem;
    }

    .wf-hero__image-placeholder {
        min-height: 420px;
    }
}

/* ========== FEATURES GRID ========== */
.wf-features {
    padding: 80px 0;
    background: var(--wf-bg-white);
    text-align: center;
}

.wf-features__header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.wf-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 576px) {
    .wf-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .wf-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wf-feature-card {
    background: var(--wf-bg-light);
    border-radius: var(--wf-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--wf-transition);
    border: 1px solid transparent;
}

.wf-feature-card:hover {
    border-color: var(--wf-primary);
    transform: translateY(-4px);
    box-shadow: var(--wf-shadow);
}

.wf-feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--wf-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.wf-feature-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wf-text-dark);
    margin: 0 0 10px;
}

.wf-feature-card__desc {
    font-size: 0.95rem;
    color: var(--wf-text-body);
    line-height: 1.6;
    margin: 0;
}

/* ========== DARK SECTION ========== */
.wf-dark-section {
    background: var(--wf-navy);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.wf-dark-section .wf-heading-xl,
.wf-dark-section .wf-heading-lg {
    color: #fff;
}

.wf-dark-section .wf-text-body {
    color: rgba(255, 255, 255, 0.75);
}

.wf-dark-section__header {
    max-width: 750px;
    margin: 0 auto 50px;
}

.wf-dark-section__image-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--wf-radius-lg);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wf-dark-section__image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--wf-radius);
}

.wf-dark-section .wf-placeholder-label {
    color: rgba(255, 255, 255, 0.4);
}

.wf-dark-section .wf-placeholder-label i {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .wf-dark-section__image-placeholder {
        padding: 0;
        border: none;
        min-height: auto;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .wf-dark-section__image-placeholder {
        min-height: 420px;
    }
}

/* ========== ALTERNATING SECTIONS ========== */
.wf-alt-section {
    padding: 80px 0;
    background: var(--wf-bg-white);
}

.wf-alt-section--light {
    background: var(--wf-bg-light);
}

.wf-alt-section__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .wf-alt-section__inner {
        flex-direction: row;
        gap: 60px;
    }

    .wf-alt-section--reverse .wf-alt-section__inner {
        flex-direction: row-reverse;
    }
}

.wf-alt-section__content,
.wf-alt-section__media {
    flex: 1;
}

.wf-alt-section__content {
    text-align: center;
}

@media (min-width: 992px) {
    .wf-alt-section__content {
        text-align: initial;
    }
}

.wf-alt-section__features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.wf-alt-section__features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--wf-border);
    font-size: 1rem;
    color: var(--wf-text-body);
}

.wf-alt-section__features-list li:last-child {
    border-bottom: none;
}

.wf-alt-section__features-list li i {
    color: var(--wf-primary);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.wf-alt-section__image-placeholder {
    background: var(--wf-bg-light);
    border-radius: var(--wf-radius-lg);
    border: 2px dashed var(--wf-border);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.wf-alt-section__image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--wf-radius);
}

.wf-alt-section--light .wf-alt-section__image-placeholder {
    background: var(--wf-bg-white);
}

@media (max-width: 767px) {
    .wf-alt-section__image-placeholder {
        padding: 0;
        border: none;
        min-height: auto;
    }
}

/* ========== STATS ========== */
.wf-stats {
    padding: 60px 0;
    background: var(--wf-bg-light);
}

.wf-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .wf-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wf-stat-item__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--wf-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.wf-stat-item__label {
    font-size: 0.95rem;
    color: var(--wf-text-body);
}

/* ========== RESOURCES/SUPPORT ========== */
.wf-resources {
    background: var(--wf-navy-deep);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.wf-resources__header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.wf-resources .wf-heading-lg {
    color: #fff;
}

.wf-resources .wf-text-body {
    color: rgba(255, 255, 255, 0.7);
}

.wf-resources__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .wf-resources__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wf-resource-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--wf-radius-lg);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--wf-transition);
}

.wf-resource-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.wf-resource-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(59, 95, 229, 0.2);
    color: #8aa8ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.wf-resource-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.wf-resource-card__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0 0 20px;
}

.wf-resource-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8aa8ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--wf-transition);
    padding: 10px 24px;
    border: 1px solid rgba(138, 168, 255, 0.3);
    border-radius: var(--wf-radius);
}

.wf-resource-card__link:hover {
    background: rgba(138, 168, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

/* ========== TESTIMONIALS ========== */
.wf-testimonials {
    padding: 80px 0;
    background: var(--wf-bg-white);
    text-align: center;
}

.wf-testimonials__header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.wf-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .wf-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .wf-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wf-testimonial-card {
    background: var(--wf-bg-light);
    border-radius: var(--wf-radius-lg);
    padding: 32px 24px;
    text-align: initial;
    transition: var(--wf-transition);
    border: 1px solid transparent;
}

.wf-testimonial-card:hover {
    border-color: var(--wf-primary);
    box-shadow: var(--wf-shadow);
}

.wf-testimonial-card__stars {
    color: #f5b731;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.wf-testimonial-card__text {
    font-size: 0.95rem;
    color: var(--wf-text-body);
    line-height: 1.7;
    margin: 0 0 20px;
}

.wf-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wf-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--wf-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wf-testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.wf-testimonial-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--wf-text-dark);
}

.wf-testimonial-card__role {
    font-size: 0.85rem;
    color: var(--wf-text-light);
}

/* ========== CTA SECTION ========== */
.wf-cta {
    padding: 80px 0;
    background: var(--wf-bg-light);
    text-align: center;
}

.wf-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.wf-cta__note {
    font-size: 0.9rem;
    color: var(--wf-text-light);
    margin-top: 12px;
}

/* ========== FAQ ========== */
.wf-faq {
    padding: 80px 0;
    background: var(--wf-bg-white);
}

.wf-faq__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.wf-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.wf-faq-item {
    border: 1px solid var(--wf-border);
    border-radius: var(--wf-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--wf-transition);
}

.wf-faq-item:hover {
    border-color: var(--wf-primary);
}

.wf-faq-item__question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--wf-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: inherit;
}

.wf-faq-item__question i {
    transition: var(--wf-transition);
    color: var(--wf-primary);
    flex-shrink: 0;
}

.wf-faq-item.active .wf-faq-item__question i {
    transform: rotate(180deg);
}

.wf-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.wf-faq-item.active .wf-faq-item__answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.wf-faq-item__answer p {
    font-size: 0.95rem;
    color: var(--wf-text-body);
    line-height: 1.7;
    margin: 0;
}

/* ========== FOOTER ========== */
.wf-footer {
    background: var(--wf-bg-light);
    padding: 60px 0 0;
    border-top: 1px solid var(--wf-border);
}

.wf-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .wf-footer__top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .wf-footer__top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.wf-footer__brand-desc {
    font-size: 0.95rem;
    color: var(--wf-text-body);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 350px;
}

.wf-footer__cta-btn {
    margin-bottom: 12px;
}

.wf-footer__cta-note {
    font-size: 0.8rem;
    color: var(--wf-text-light);
}

.wf-footer__col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wf-text-dark);
    margin: 0 0 16px;
}

.wf-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf-footer__links li {
    margin-bottom: 10px;
}

.wf-footer__links a {
    color: var(--wf-text-body);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--wf-transition);
}

.wf-footer__links a:hover {
    color: var(--wf-primary);
}

.wf-footer__bottom {
    border-top: 1px solid var(--wf-border);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.wf-footer__copyright {
    font-size: 0.85rem;
    color: var(--wf-text-light);
}

.wf-footer__socials {
    display: flex;
    gap: 12px;
}

.wf-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wf-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--wf-transition);
}

.wf-footer__social-link:hover {
    background: var(--wf-primary);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.wf-footer__logo img {
    height: 40px;
}

/* ========== UTILITIES ========== */
.wf-text-center {
    text-align: center;
}

.wf-mt-0 {
    margin-top: 0;
}

.wf-mb-0 {
    margin-bottom: 0;
}

/* ========== ANIMATIONS ========== */
@keyframes wfFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wf-animate {
    animation: wfFadeInUp 0.6s ease forwards;
}

/* ========== RTL ADJUSTMENTS ========== */
[dir="rtl"] .wf-alt-section__content {
    text-align: center;
}

@media (min-width: 992px) {
    [dir="rtl"] .wf-alt-section__content {
        text-align: right;
    }
}

[dir="rtl"] .wf-testimonial-card {
    text-align: right;
}

[dir="rtl"] .wf-faq-item__question {
    text-align: right;
}

[dir="rtl"] .wf-pricing-card__features li {
    text-align: right;
}

/* ========== PRICING SECTION ========== */
.wf-pricing {
    padding: 80px 0;
    background: var(--wf-bg-light);
    text-align: center;
}

.wf-pricing__header {
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Toggle */
.wf-pricing__toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.wf-pricing__toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wf-text-light);
    transition: var(--wf-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wf-pricing__toggle-label--active {
    color: var(--wf-text-dark);
}

.wf-pricing__toggle-switch {
    width: 52px;
    height: 28px;
    border-radius: 14px;
    background: var(--wf-border);
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--wf-transition);
    padding: 0;
}

.wf-pricing__toggle-switch.active {
    background: var(--wf-primary);
}

.wf-pricing__toggle-knob {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--wf-transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.wf-pricing__toggle-switch.active .wf-pricing__toggle-knob {
    left: 27px;
}

[dir="rtl"] .wf-pricing__toggle-knob {
    left: auto;
    right: 3px;
}

[dir="rtl"] .wf-pricing__toggle-switch.active .wf-pricing__toggle-knob {
    right: 27px;
}

.wf-pricing__discount-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--wf-radius-pill);
}

/* Pricing Grid */
.wf-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .wf-pricing__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pricing Card */
.wf-pricing-card {
    background: var(--wf-bg-white);
    border-radius: var(--wf-radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--wf-border);
    transition: var(--wf-transition);
    position: relative;
}

.wf-pricing-card:hover {
    border-color: var(--wf-primary);
    box-shadow: var(--wf-shadow-lg);
    transform: translateY(-4px);
}

.wf-pricing-card--popular {
    border-color: var(--wf-primary);
    box-shadow: var(--wf-shadow-lg);
    transform: scale(1.03);
}

.wf-pricing-card--popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.wf-pricing-card__popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wf-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--wf-radius-pill);
    white-space: nowrap;
}

.wf-pricing-card__header {
    margin-bottom: 20px;
}

.wf-pricing-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wf-text-dark);
    margin: 0 0 6px;
}

.wf-pricing-card__tagline {
    font-size: 0.85rem;
    color: var(--wf-text-light);
    margin: 0;
    line-height: 1.5;
}

.wf-pricing-card__price {
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.wf-pricing-card__amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--wf-primary);
    line-height: 1;
}

.wf-pricing-card__currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--wf-text-body);
}

.wf-pricing-card__period {
    font-size: 0.9rem;
    color: var(--wf-text-light);
}

.wf-pricing-card__annual-note {
    font-size: 0.8rem;
    color: var(--wf-text-light);
    margin-bottom: 24px;
    min-height: 18px;
}

.wf-pricing-card__cta {
    width: 100%;
    margin-bottom: 24px;
}

.wf-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: initial;
}

.wf-pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--wf-text-body);
    border-bottom: 1px solid var(--wf-border);
}

.wf-pricing-card__features li:last-child {
    border-bottom: none;
}

.wf-pricing-card__features li i {
    color: var(--wf-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Enterprise row */
.wf-pricing__enterprise {
    max-width: 1100px;
    margin: 40px auto 0;
}

.wf-pricing__enterprise-inner {
    background: var(--wf-bg-white);
    border: 2px solid var(--wf-border);
    border-radius: var(--wf-radius-lg);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.wf-pricing__enterprise-inner .wf-heading-md {
    margin-bottom: 4px;
}

.wf-pricing__enterprise-inner .wf-text-body {
    margin: 0;
    font-size: 0.95rem;
}