.wda-feature-cards,
.wda-feature-cards * {
    box-sizing: border-box;
}

.wda-feature-cards {
    --wda-fc-primary: #0057FF;
    --wda-fc-accent: #FF4D1C;
    --wda-fc-dark: #0A0A0A;
    --wda-fc-muted: rgba(10, 10, 10, 0.55);
    --wda-fc-heading-font: "Syne", ui-sans-serif, system-ui, sans-serif;
    --wda-fc-body-font: "Figtree", ui-sans-serif, system-ui, sans-serif;
    position: relative;
    overflow: hidden;
    padding: 96px 0 144px;
    background: #FAFAFA;
    color: var(--wda-fc-dark);
    font-family: var(--wda-fc-body-font);
}

.wda-feature-cards::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(10, 10, 10, 0.05);
}

.wda-fc-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 80px;
}

.wda-fc-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 80px;
}

.wda-fc-header__main {
    min-width: 0;
}

.wda-fc-eyebrow {
    display: inline-block;
    font-family: var(--wda-fc-body-font);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wda-fc-primary);
}

.wda-fc-heading {
    margin: 16px 0 0;
    font-family: var(--wda-fc-heading-font);
    font-size: clamp(1.75rem, 5vw, 4.5rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--wda-fc-dark);
}

.wda-fc-heading-mark {
    color: var(--wda-fc-accent);
}

.wda-fc-intro {
    max-width: 448px;
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(10, 10, 10, 0.5);
    text-align: right;
}

.wda-fc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.wda-fc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    min-height: 100%;
    padding: 40px;
    background: #fff;
    border: 2px solid rgba(10, 10, 10, 0.08);
    border-radius: 24px;
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

.wda-fc-card:hover,
.wda-fc-card:focus-within {
    border-color: rgba(0, 87, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 87, 255, 0.08);
    transform: translateY(-2px);
}

.wda-fc-card:active,
.wda-fc-card.is-active,
.wda-fc-card.active {
    border-color: var(--wda-fc-card-accent, var(--wda-fc-primary));
    transform: translateY(-1px);
}

.wda-fc-card--clickable {
    cursor: pointer;
}

.wda-fc-card__overlay-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
    border-radius: inherit;
    color: inherit;
    text-decoration: none;
}

.wda-fc-card__overlay-link:focus-visible {
    outline: 2px solid var(--wda-fc-card-accent, var(--wda-fc-primary));
    outline-offset: 4px;
}

.elementor-editor-active .wda-fc-card__overlay-link {
    pointer-events: none;
}

.wda-fc-card__link--visual {
    pointer-events: none;
}

.wda-fc-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.wda-fc-card__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--wda-fc-card-icon-bg, #F4F4F4);
    color: var(--wda-fc-card-icon-color, var(--wda-fc-card-accent, var(--wda-fc-primary)));
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
}

.wda-fc-card:hover .wda-fc-card__icon,
.wda-fc-card:focus-within .wda-fc-card__icon {
    background-color: var(--wda-fc-card-icon-hover-bg, var(--wda-fc-card-accent, var(--wda-fc-primary)));
    color: var(--wda-fc-card-icon-hover-color, #fff);
    transform: scale(1.04);
}

.wda-fc-card:active .wda-fc-card__icon,
.wda-fc-card.is-active .wda-fc-card__icon,
.wda-fc-card.active .wda-fc-card__icon {
    background-color: var(--wda-fc-card-icon-active-bg, var(--wda-fc-card-accent, var(--wda-fc-primary)));
    color: var(--wda-fc-card-icon-active-color, #fff);
}

.wda-fc-card__icon svg {
    width: 24px;
    height: 24px;
    display: block;
    color: currentColor;
    fill: currentColor;
    stroke: currentColor;
}

.wda-fc-card__icon svg * {
    fill: currentColor;
    stroke: currentColor;
}

.wda-fc-card__icon i {
    font-size: 24px;
    line-height: 1;
    color: currentColor;
}

.wda-fc-card__metric {
    text-align: right;
    max-width: 170px;
}

.wda-fc-card__metric-number {
    font-family: var(--wda-fc-heading-font);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--wda-fc-card-accent, var(--wda-fc-primary));
}

.wda-fc-card__metric-label {
    margin-top: 4px;
    font-family: var(--wda-fc-body-font);
    font-size: 10px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.35);
}

.wda-fc-card__headings {
    min-width: 0;
}

.wda-fc-card__title {
    margin: 0;
    font-family: var(--wda-fc-body-font);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--wda-fc-dark);
}

.wda-fc-card__subtitle {
    margin: 8px 0 0;
    font-family: var(--wda-fc-heading-font);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--wda-fc-accent);
    transition: color 0.3s ease;
}

.wda-fc-card:hover .wda-fc-card__subtitle,
.wda-fc-card:focus-within .wda-fc-card__subtitle,
.wda-fc-card:active .wda-fc-card__subtitle,
.wda-fc-card.is-active .wda-fc-card__subtitle,
.wda-fc-card.active .wda-fc-card__subtitle {
    color: var(--wda-fc-card-accent, var(--wda-fc-primary));
}

.wda-fc-card__description {
    flex: 1 1 auto;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.55);
}

.wda-fc-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wda-fc-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wda-fc-feature__check {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 87, 255, 0.10);
    background: color-mix(in srgb, var(--wda-fc-card-accent, var(--wda-fc-primary)) 10%, transparent);
    color: var(--wda-fc-card-accent, var(--wda-fc-primary));
}

.wda-fc-feature__check svg,
.wda-fc-check-svg {
    width: 12px;
    height: 12px;
    display: block;
}

.wda-fc-feature__text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(10, 10, 10, 0.6);
}

.wda-fc-card__divider {
    width: 100%;
    height: 1px;
    background: rgba(10, 10, 10, 0.06);
}

.wda-fc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    color: var(--wda-fc-dark);
    font-family: var(--wda-fc-heading-font);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wda-fc-card__link:hover,
.wda-fc-card__link:focus {
    color: var(--wda-fc-card-accent, var(--wda-fc-primary));
    text-decoration: none;
}

.wda-fc-card:hover .wda-fc-card__link,
.wda-fc-card:focus-within .wda-fc-card__link,
.wda-fc-card:hover .wda-fc-card__link:hover,
.wda-fc-card:hover .wda-fc-card__link:focus,
.wda-fc-card:active .wda-fc-card__link,
.wda-fc-card.is-active .wda-fc-card__link,
.wda-fc-card.active .wda-fc-card__link {
    color: var(--wda-fc-card-accent, var(--wda-fc-primary));
    text-decoration: none;
}

.wda-fc-card__arrow {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #F4F4F4;
    color: currentColor;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.wda-fc-card__link:hover .wda-fc-card__arrow,
.wda-fc-card__link:focus .wda-fc-card__arrow,
.wda-fc-card:hover .wda-fc-card__link .wda-fc-card__arrow,
.wda-fc-card:focus-within .wda-fc-card__link .wda-fc-card__arrow,
.wda-fc-card:active .wda-fc-card__link .wda-fc-card__arrow,
.wda-fc-card.is-active .wda-fc-card__link .wda-fc-card__arrow,
.wda-fc-card.active .wda-fc-card__link .wda-fc-card__arrow {
    background: var(--wda-fc-card-icon-hover-bg, var(--wda-fc-card-accent, var(--wda-fc-primary)));
    color: var(--wda-fc-card-icon-hover-color, #fff);
    transform: translate(2px, -2px);
}

.wda-fc-arrow-svg {
    width: 16px;
    height: 16px;
    display: block;
}

.wda-fc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 64px;
    padding: 56px 64px;
    border-radius: 24px;
    background: var(--wda-fc-primary);
}

.wda-fc-cta__content {
    min-width: 0;
}

.wda-fc-cta__title {
    margin: 0;
    font-family: var(--wda-fc-heading-font);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.wda-fc-cta__description {
    max-width: 620px;
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.wda-fc-cta__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 999px;
    background: #fff;
    color: var(--wda-fc-primary);
    font-family: var(--wda-fc-heading-font);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.wda-fc-cta__button:hover,
.wda-fc-cta__button:focus {
    background: var(--wda-fc-accent);
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.wda-fc-cta__button:active,
.wda-fc-cta__button.is-active,
.wda-fc-cta__button.active {
    background: var(--wda-fc-dark);
    color: #fff;
    transform: translateY(0);
    text-decoration: none;
}

.wda-fc-cta__button svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1199px) {
    .wda-fc-container {
        padding-left: 48px;
        padding-right: 48px;
    }

    .wda-fc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .wda-feature-cards {
        padding-top: 80px;
        padding-bottom: 112px;
    }

    .wda-fc-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 56px;
    }

    .wda-fc-intro {
        text-align: left;
    }

    .wda-fc-card {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .wda-feature-cards {
        padding-top: 64px;
        padding-bottom: 80px;
    }

    .wda-fc-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .wda-fc-grid {
        grid-template-columns: 1fr;
    }

    .wda-fc-heading {
        font-size: clamp(2rem, 12vw, 3.4rem);
    }

    .wda-fc-card {
        padding: 28px;
        gap: 20px;
    }

    .wda-fc-card__top {
        gap: 14px;
    }

    .wda-fc-card__metric-number {
        font-size: 26px;
    }

    .wda-fc-card__metric-label {
        font-size: 9px;
    }

    .wda-fc-card__title {
        font-size: 25px;
    }

    .wda-fc-card__subtitle {
        font-size: 18px;
    }

    .wda-fc-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
    }

    .wda-fc-cta__button {
        width: 100%;
        white-space: normal;
    }
}

@supports not (background: color-mix(in srgb, #0057FF 10%, transparent)) {
    .wda-fc-feature__check {
        background: rgba(0, 87, 255, 0.10);
    }
}

/* Header image split layout */
.wda-fc-header__text {
    display: contents;
}

.wda-fc-header--with-image {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 80px;
}

.wda-fc-header--with-image .wda-fc-header__text {
    display: block;
    min-width: 0;
}

.wda-fc-header--with-image .wda-fc-intro {
    max-width: 760px;
    margin-top: 24px;
    text-align: left;
}

.wda-fc-header__media {
    position: relative;
    height: 320px;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(0, 87, 255, 0.08);
}

.wda-fc-header__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.wda-fc-header__overlay {
    position: absolute;
    inset: 0;
    display: block;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.30), transparent);
}

/* Simple / What's Included card layout */
.wda-feature-cards--simple .wda-fc-header {
    margin-bottom: 64px;
}

.wda-feature-cards--simple .wda-fc-card {
    gap: 0;
    padding: 32px;
    border-width: 1px;
    border-color: rgba(10, 10, 10, 0.06);
    border-radius: 16px;
    box-shadow: none;
}

.wda-feature-cards--simple .wda-fc-card:hover,
.wda-feature-cards--simple .wda-fc-card:focus-within {
    border-color: color-mix(in srgb, var(--wda-fc-card-accent, var(--wda-fc-primary)) 30%, transparent);
    box-shadow: 0 12px 40px rgba(0, 87, 255, 0.06);
    transform: translateY(-2px);
}

.wda-feature-cards--simple .wda-fc-card:active,
.wda-feature-cards--simple .wda-fc-card.is-active,
.wda-feature-cards--simple .wda-fc-card.active {
    border-color: var(--wda-fc-card-accent, var(--wda-fc-primary));
}

.wda-feature-cards--simple .wda-fc-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: var(--wda-fc-card-icon-bg, #F4F4F4);
    color: var(--wda-fc-card-icon-color, var(--wda-fc-card-accent, var(--wda-fc-primary)));
}

.wda-feature-cards--simple .wda-fc-card__icon svg,
.wda-feature-cards--simple .wda-fc-card__icon i {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.wda-feature-cards--simple .wda-fc-card:hover .wda-fc-card__icon,
.wda-feature-cards--simple .wda-fc-card:focus-within .wda-fc-card__icon {
    background: var(--wda-fc-card-icon-hover-bg, var(--wda-fc-card-accent, var(--wda-fc-primary)));
    color: var(--wda-fc-card-icon-hover-color, #fff);
}

.wda-feature-cards--simple .wda-fc-card:active .wda-fc-card__icon,
.wda-feature-cards--simple .wda-fc-card.is-active .wda-fc-card__icon,
.wda-feature-cards--simple .wda-fc-card.active .wda-fc-card__icon {
    background: var(--wda-fc-card-icon-active-bg, var(--wda-fc-card-accent, var(--wda-fc-primary)));
    color: var(--wda-fc-card-icon-active-color, #fff);
}

.wda-feature-cards--simple .wda-fc-card__title {
    margin: 0 0 12px;
    font-family: var(--wda-fc-heading-font);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: none;
    transition: color 0.3s ease;
}

.wda-feature-cards--simple .wda-fc-card__description {
    flex: 0 1 auto;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.50);
}

.wda-feature-cards--simple .wda-fc-card__link {
    margin-top: 22px;
}

@media (max-width: 1024px) {
    .wda-fc-header--with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wda-fc-header--with-image .wda-fc-header__media {
        order: 2;
    }
}

@media (max-width: 767px) {
    .wda-fc-header--with-image {
        gap: 32px;
    }

    .wda-fc-header__media {
        height: 220px;
    }

    .wda-feature-cards--simple .wda-fc-card {
        padding: 28px;
    }
}

@supports not (background: color-mix(in srgb, #0057FF 8%, transparent)) {
    .wda-feature-cards--simple .wda-fc-card__icon {
        background: rgba(0, 87, 255, 0.08);
    }

    .wda-feature-cards--simple .wda-fc-card:hover {
        border-color: rgba(0, 87, 255, 0.30);
    }
}
