/* ... (The CSS remains the same, assuming it's functioning correctly. 
   I will include the CSS here for completeness, or ensure it loads 
   if it was intended to be in style.css. The user provided it inline in the request.) 
*/
.res-hero {
    padding: 80px 0;
    background: #f4f6f8;
}

.res-hero__container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.res-hero__slides {
    position: relative;
}

.res-hero__slide {
    display: none;
}

.res-hero__slide.active {
    display: block;
}

.res-hero__tag {
    background: #7b7e87;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.res-hero__title {
    font-size: 36px;
    font-weight: 600;
    color: #2b2f38;
    margin-bottom: 16px;
}

.res-hero__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #5b5f6a;
    margin-bottom: 28px;
}

.res-hero__dots {
    display: flex;
    gap: 10px;
}

.res-hero__dots .dot {
    width: 8px;
    height: 8px;
    background: #1e1e1e;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
}

.res-hero__dots .dot.active {
    background: #a855f7;
    opacity: 1;
}

.res-hero__media img {
    width: 100%;
    border-radius: 24px;
}

@media (max-width: 991px) {
    .res-hero__container {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}

.logo-slider {
    background-color: #FFFFFF;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 100px;
    animation: scroll 80s linear infinite;
    width: max-content;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.slide img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.res-intro {
    padding: 80px 0;
}

.res-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 48px;
}

.res-intro__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    color: #3b3f4a;
    margin-bottom: 20px;
}

.res-intro__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #6b6f7b;
}

.resources-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.resources-sidebar {
    background: #fff !important;
    border-radius: 24px;
    padding: 24px;
    position: sticky;
    top: 120px;
}

.sidebar-search input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    background: #f4f6f8 !important;
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar-tabs__nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sidebar-tabs__nav a {
    padding: 8px 16px;
    background: #eceff3;
    border-radius: 999px;
    font-size: 13px;
    color: #5b5f6a;
    text-decoration: none;
    margin: -4px;
}

.sidebar-tabs__nav .current-menu-item a {
    background: #ec8be6;
    color: #fff;
}

.resources-sidebar {
    background: #fff;
    border-radius: 28px;
    padding: 20px;
    width: 100%;
}

.filter-search input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: none;
    background: #f5f6f8;
    font-size: 14px;
    outline: none;
}

.filter-divider {
    border: none;
    border-top: 1px solid #e3e6eb;
    margin: 18px 0;
}

.resources-sidebar {
    background: #f5f6f8;
    border-radius: 28px;
    padding: 20px;
}

.filter-search input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: none;
    background: #f5f6f8 !important;
    font-size: 14px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b6f7b;
    margin: 18px 0 10px;
}

.filter-accordion {
    padding: 10px 0;
}

.filter-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #2b2f38;
    cursor: pointer;
    padding: 12px;
    background: #f5f6f8;
    border-radius: 999px;
}

.filter-toggle .icon {
    font-size: 18px;
    line-height: 1;
}

.filter-options {
    display: none;
    flex-direction: column;
    margin-top: 6px;
    gap: 6px;
}

.filter-options {
    display: none;
}

.filter-accordion.open>.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-options.sort-options {
    display: none;
}

.filter-options a {
    font-size: 13px;
    color: #5b5f6a;
    text-decoration: none;
    padding: 4px 0;
}

.filter-options a.active {
    color: #ec8be6;
    font-weight: 600;
}

.filter-accordion.open .filter-options {
    display: flex;
}

.filter-accordion.open .icon {
    content: "-";
}

.filter-group select:focus {
    border-color: #000000;
}

.filter-apply-btn {
    margin-top: 6px;
    background: #ec8be6;
    color: #ffffff;
    border: none;
    height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
}

.sort-by {
    border: 1px solid #ec8be6;
    border-radius: 12px;
    padding: 10px 12px;
    margin-top: 10px;
}

.sort-options {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.sort-options button {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e0e4ea;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
}

.sort-options button.active {
    background: #ec8be6;
    color: #fff;
    border-color: #ec8be6;
}

.filter-accordion.open button {
    border: 2px solid #e784d5;
}

.filter-accordion.open button span.icon {
    color: #e784d5;
}

.resources-content {
    width: 100%;
}

.resources-content .loop,
.resources-content .posts-loop,
.resources-content .c-loop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.resources-content article {
    background: #f5f6f8;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.resources-content article img {
    border-radius: 14px;
    margin-bottom: 12px;
}

.res-card__media a img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.resources-content h2,
.resources-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 8px 0;
}

.resources-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #5b5f6a;
    margin-bottom: 14px;
}

/*   .resources-content .read-more,
  .resources-content .wp-block-button__link {
    margin-top: auto;
    background: #ec8be6;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 999px;
    text-decoration: none;
  } */

ul#menu-resources-menu li {
    list-style: none;
}

ul#menu-resources-menu {
    display: flex;
    gap: 20px;
    margin-left: 0px;
    padding-left: 0px;
}

.b-lobby__posts-list a.c-post-item__link.c-btn.c-btn-tertiary.c-btn--variation-orange.c-btn--variation-small.c-btn--variation-arrow-right.c-post-item__btn {
    background: #E784D5;
    padding: 10px;
    text-align: center !important;
    color: #fff;
    border-radius: 16px;
    margin-top: 22px;
    justify-content: center;
}

a.c-post-item__link.c-btn.c-btn-tertiary.c-btn--variation-orange.c-btn--variation-small.c-btn--variation-arrow-right.c-post-item__btn svg {
    display: none;
}

.b-lobby__posts-pagination .page-numbers {
    background: #f7f7f7;
    height: 30px;
    width: 30px;
    text-align: center;
    color: #000;
    text-decoration: none;
}

.b-lobby__posts-pagination .page-numbers.dots {
    background: none;
    color: #000;
}

.b-lobby__posts-pagination .next.page-numbers,
.b-lobby__posts-pagination .prev.page-numbers {
    background: none;
    font-size: 14px;
    text-transform: capitalize;
}

.b-lobby__posts-pagination .page-numbers.dots:hover {
    background: none;
    color: #000;
}

.b-lobby__posts-pagination .page-numbers.current,
.b-lobby__posts-pagination .page-numbers:hover {
    background: #E784D5;
    color: #fff;
}

.b-lobby__posts-pagination .next.page-numbers,
.b-lobby__posts-pagination .prev.page-numbers {
    background: none;
}

.b-lobby__posts-pagination .next.page-numbers:hover,
.b-lobby__posts-pagination .prev.page-numbers:hover {
    color: #E784D5;
}

.b-lobby__posts-pagination {
    display: flex;
    column-gap: 20px;
    flex-direction: row;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .resources-layout {
        grid-template-columns: 1fr;
    }

    .resources-sidebar {
        position: static;
    }

    .resources-content .loop,
    .resources-content .posts-loop {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .resources-content .loop,
    .resources-content .posts-loop {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .sidebar-tabs__nav a {
        padding: 3px 8px;
        font-size: 12px;
    }

    h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .res-intro {
        padding: 30px 20px !important;
    }

    .res-intro__title {
        font-size: 28px;
    }

    .res-hero {
        padding: 30px 0 !important;
    }

    .logo-slider {
        padding: 20px 0;
    }

    .b-breadcrumbs {
        padding-block: 10px 24px;
    }

    .b-lobby__title {
        margin-bottom: 20px;
    }

    .resources-layout {
        margin-top: 20px;
        gap: 20px;
    }

    .res-slider {
        padding: 40px 0 !important;
    }

    .llm-demo-inner {
        padding: 0 !important;
    }

    .llm-demo-content h2 {
        font-size: 30px !important;
    }
}

/* CTA SECTION Update */
.res-cta {
    position: relative;
    padding: 96px 20px;
    background: radial-gradient(120% 120% at 50% 100%, #6d2f6a 0%, #2b1b3f 55%, #141225 100%);
    overflow: hidden;
    margin-top: 64px;
}

.res-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.25;
    pointer-events: none;
}

.res-cta__container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.res-cta__title {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 28px;
}

.res-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f35ad3, #ff7bc8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.res-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 90, 211, 0.35);
}

.res-cta__arrow {
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .res-cta {
        padding: 72px 16px;
        margin-top: 48px;
    }

    .res-cta__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .res-cta {
        padding: 72px 16px;
    }

    .res-cta__title {
        font-size: 28px;
    }
}

.res-slider {
    padding: 80px 0;
    background: #f5f7f9;
}

.res-slider__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .res-slider__container {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .res-slider__left {
        display: contents;
    }

    .res-slider__title {
        order: 1;
    }

    .res-slider__desc {
        order: 2;
    }

    .res-slider__right {
        order: 3;
    }

    .res-slider__controls {
        order: 4;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: flex-start;
        margin-top: 8px;
    }

    .res-slider__container>* {
        min-width: 0;
    }
}

.res-slider__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.res-slider__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #4b4f5c;
    margin-bottom: 40px;
}

.res-slider__controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.res-slider__arrow {
    background: #f28ad6;
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
}

.res-slider__dots {
    display: flex;
    gap: 8px;
    margin-left: 12px;
}

.res-slider__dots .dot {
    width: 8px;
    height: 8px;
    background: #2e2e38;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
}

.res-slider__dots .dot.active {
    opacity: 1;
    background: #f28ad6;
}

.res-slider__right {
    background: #f7d2ee;
    border-radius: 24px;
    padding: 32px;
    position: relative;
}

.res-slide {
    display: none;
}

.res-slide.active {
    display: block;
}

.res-slide__badge {
    display: block;
    width: 160px;
    height: 32px;
    background: #2e2e48;
    border-radius: 20px;
    margin-bottom: 24px;
}

.res-slide__text {
    font-size: 15px;
    line-height: 1.7;
    color: #3b2d44;
    margin-bottom: 24px;
}

/* ===== BOOK A DEMO SECTION ===== */
.llm-demo-section {
    padding-top: 0px;
}

.llm-demo-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .llm-demo-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }

    .llm-demo-content {
        order: 1;
        text-align: left;
    }

    .llm-demo-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .llm-demo-content p {
        font-size: 16px;
    }

    .llm-demo-form-card {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .llm-demo-form-card iframe,
    .llm-demo-form-card form {
        width: 100% !important;
        max-width: 100% !important;
    }

    .llm-demo-inner>* {
        min-width: 0;
    }
}

/* LEFT FORM CARD */
/* LEFT FORM CARD */
.llm-demo-form-card {
    background: #2A2F45;
    border-radius: 20px;
    padding: 40px;
}

.llm-demo-form-card .hs-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.llm-demo-form-card input,
.llm-demo-form-card select,
.llm-demo-form-card textarea {
    border-radius: 4px !important;
    border: none !important;
    background: #F5F8FA !important;
    width: 100%;
    padding: 12px 15px !important;
    font-size: 14px;
    margin-bottom: 0 !important;
    color: #33475b !important;
}

.llm-demo-form-card .hs-button {
    background: #ff7a59 !important;
    border-radius: 3px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    margin-top: 10px;
    width: auto !important;
    /* Not full width */
    display: inline-block;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.llm-demo-form-card ::placeholder {
    color: #bfbfbf;
    opacity: 1;
}

/* RIGHT CONTENT */
.llm-demo-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #474A5D !important;
}

.llm-demo-content p {
    font-size: 24px;
    color: #757785 !important;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

/* Clients */
.llm-demo-clients span {
    font-size: 14px;
    color: #9CA3AF;
    display: block;
    margin-bottom: 16px;
}

.llm-demo-logos {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px 7px;
    align-items: center;
}

.llm-demo-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

#wpforms-5062-field_1-container {
    margin-bottom: 0px !important;
}

.wpforms-container .wpforms-field,
.wp-core-ui div.wpforms-container .wpforms-field {
    padding: 0 !important;
}

#wpforms-form-5062 {
    padding: 0 !important;
}