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

.wda-feature-split-section {
    --wda-black: #0A0A0A;
    --wda-blue: #0057FF;
    --wda-orange: #FF4D1C;
    --wda-content-width: 40%;
    --wda-image-width: 60%;
    background: #fff;
    color: var(--wda-black);
    font-family: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
    padding: 96px 0;
}

.wda-feature-split-container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 80px;
}

.wda-feature-split-card {
    display: grid;
    align-items: center;
    grid-template-columns: var(--wda-image-width) var(--wda-content-width);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 24px;
    background: #fff;
}

.wda-feature-split-card.wda-image-right {
    grid-template-columns: var(--wda-content-width) var(--wda-image-width);
}

.wda-feature-split-card.wda-image-left .wda-feature-split-image,
.wda-feature-split-about-layout.wda-image-left .wda-feature-split-about-image-wrap {
    order: 1;
}

.wda-feature-split-card.wda-image-left .wda-feature-split-content,
.wda-feature-split-about-layout.wda-image-left .wda-feature-split-content {
    order: 2;
}

.wda-feature-split-card.wda-image-right .wda-feature-split-image,
.wda-feature-split-about-layout.wda-image-right .wda-feature-split-about-image-wrap {
    order: 2;
}

.wda-feature-split-card.wda-image-right .wda-feature-split-content,
.wda-feature-split-about-layout.wda-image-right .wda-feature-split-content {
    order: 1;
}

.wda-feature-split-about-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 96px;
}

.wda-feature-split-about-image-wrap {
    position: relative;
    z-index: 1;
}

.wda-feature-split-image {
    position: relative;
    height: 480px;
    min-width: 0;
    overflow: hidden;
}

.wda-feature-split-interface-about_features .wda-feature-split-image {
    border-radius: 24px;
}

.wda-feature-split-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.wda-feature-split-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05));
}

.wda-feature-split-shape-primary,
.wda-feature-split-shape-secondary {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 16px;
}

.wda-feature-split-shape-primary {
    width: 128px;
    height: 128px;
    right: -16px;
    bottom: -16px;
    background-color: var(--wda-blue);
}

.wda-feature-split-shape-secondary {
    width: 80px;
    height: 80px;
    left: -16px;
    top: -16px;
    border: 2px solid var(--wda-orange);
}

.wda-feature-split-content {
    min-width: 0;
    padding: 56px 48px;
}

.wda-feature-split-interface-about_features .wda-feature-split-content {
    padding: 0;
}

.wda-feature-split-content-inner {
    max-width: none;
}

.wda-feature-split-eyebrow {
    margin: 0 0 16px;
    color: var(--wda-blue);
    font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.wda-feature-split-heading {
    margin: 0;
    color: var(--wda-black);
    font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.wda-feature-split-heading-accent {
    color: var(--wda-orange);
}

.wda-feature-split-description {
    max-width: 100%;
    margin: 24px 0 0;
    color: rgba(10, 10, 10, 0.55);
    font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.625;
}

.wda-feature-split-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 48px 0 0;
}

.wda-feature-split-feature {
    min-width: 0;
}

.wda-feature-split-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
    background-color: rgba(0, 87, 255, 0.10);
    color: var(--wda-blue);
    transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.wda-feature-split-feature:hover .wda-feature-split-feature-icon {
    background-color: var(--wda-blue);
    color: #fff;
    transform: translateY(-1px);
}

.wda-feature-split-feature-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.wda-feature-split-feature-icon i {
    font-size: 20px;
    line-height: 1;
}

.wda-feature-split-feature-title {
    margin: 0;
    color: var(--wda-black);
    font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    transition: color .3s ease;
}

.wda-feature-split-feature:hover .wda-feature-split-feature-title {
    color: var(--wda-blue);
}

.wda-feature-split-feature-text {
    margin: 4px 0 0;
    color: rgba(10, 10, 10, 0.45);
    font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
    font-size: 12px;
    line-height: 1.625;
}

.wda-feature-split-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 0;
    padding: 16px 32px;
    border-radius: 999px;
    background-color: var(--wda-orange);
    color: #fff;
    font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 0 solid transparent;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.wda-feature-split-button:hover,
.wda-feature-split-button:focus {
    color: #fff;
    background-color: #e8441a;
    box-shadow: 0 12px 40px rgba(255, 77, 28, 0.3);
    text-decoration: none;
}

.wda-feature-split-button:focus-visible {
    outline: 2px solid var(--wda-blue);
    outline-offset: 3px;
}

.wda-feature-split-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.wda-feature-split-button-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.wda-feature-split-button:hover .wda-feature-split-button-icon,
.wda-feature-split-button:focus .wda-feature-split-button-icon {
    transform: translate(2px, -2px);
}

@media (min-width: 1024px) {
    .wda-feature-split-section {
        padding: 128px 0;
    }
}

@media (max-width: 1023px) {
    .wda-feature-split-container {
        padding: 0 48px;
    }

    .wda-feature-split-card,
    .wda-feature-split-card.wda-image-right,
    .wda-feature-split-about-layout {
        grid-template-columns: 1fr;
    }

    .wda-feature-split-card .wda-feature-split-image,
    .wda-feature-split-about-layout .wda-feature-split-about-image-wrap {
        order: 1;
    }

    .wda-feature-split-card .wda-feature-split-content,
    .wda-feature-split-about-layout .wda-feature-split-content {
        order: 2;
    }

    .wda-feature-split-card.wda-image-tablet-left .wda-feature-split-image,
    .wda-feature-split-about-layout.wda-image-tablet-left .wda-feature-split-about-image-wrap {
        order: 1;
    }

    .wda-feature-split-card.wda-image-tablet-left .wda-feature-split-content,
    .wda-feature-split-about-layout.wda-image-tablet-left .wda-feature-split-content {
        order: 2;
    }

    .wda-feature-split-card.wda-image-tablet-right .wda-feature-split-image,
    .wda-feature-split-about-layout.wda-image-tablet-right .wda-feature-split-about-image-wrap {
        order: 2;
    }

    .wda-feature-split-card.wda-image-tablet-right .wda-feature-split-content,
    .wda-feature-split-about-layout.wda-image-tablet-right .wda-feature-split-content {
        order: 1;
    }

    .wda-feature-split-about-layout {
        gap: 64px;
    }

    .wda-feature-split-image {
        height: 380px;
    }

    .wda-feature-split-content {
        padding: 48px 40px;
    }

    .wda-feature-split-interface-about_features .wda-feature-split-content {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .wda-feature-split-section {
        padding: 64px 0;
    }

    .wda-feature-split-container {
        padding: 0 24px;
    }

    .wda-feature-split-card.wda-image-mobile-left .wda-feature-split-image,
    .wda-feature-split-about-layout.wda-image-mobile-left .wda-feature-split-about-image-wrap {
        order: 1;
    }

    .wda-feature-split-card.wda-image-mobile-left .wda-feature-split-content,
    .wda-feature-split-about-layout.wda-image-mobile-left .wda-feature-split-content {
        order: 2;
    }

    .wda-feature-split-card.wda-image-mobile-right .wda-feature-split-image,
    .wda-feature-split-about-layout.wda-image-mobile-right .wda-feature-split-about-image-wrap {
        order: 2;
    }

    .wda-feature-split-card.wda-image-mobile-right .wda-feature-split-content,
    .wda-feature-split-about-layout.wda-image-mobile-right .wda-feature-split-content {
        order: 1;
    }

    .wda-feature-split-about-layout {
        gap: 48px;
    }

    .wda-feature-split-image {
        height: 280px;
    }

    .wda-feature-split-content {
        padding: 40px 32px;
    }

    .wda-feature-split-interface-about_features .wda-feature-split-content {
        padding: 0;
    }

    .wda-feature-split-heading {
        font-size: clamp(1.55rem, 8vw, 2.1rem);
    }

    .wda-feature-split-description {
        font-size: 15px;
    }

    .wda-feature-split-features {
        grid-template-columns: 1fr;
    }

    .wda-feature-split-button {
        width: 100%;
    }
}
