/* For Employers — Page Styles */

:root {
    --fe-primary-2: #0024A6;
    --fe-primary-1: #113DD9;
    --fe-primary0: #265CFF;
    --fe-primary1: #77A2FF;
    --fe-primary3: #BAD2FF;
    --fe-primary4: #EBF1FF;
    --fe-primary-transparent: #77a2ff6b;
    --fe-text-header: #0d0e0f;
    --fe-text-body: #000000;
    --fe-shadow-small: 0 8px 12px 2px rgba(0, 28, 53, 0.05);
}

/* Scoped reset — prevent Bootstrap/global styles from leaking into fe-* sections */
.fe-hero,
.fe-partners,
.fe-videos,
.fe-features,
.fe-testimonials,
.fe-contact,
.fe-modal-overlay {
    box-sizing: border-box;
    font-family: "gordita", sans-serif;
    color: #000000;
    line-height: 1.5;
}

.fe-hero *,
.fe-partners *,
.fe-videos *,
.fe-features *,
.fe-testimonials *,
.fe-contact *,
.fe-modal-overlay * {
    box-sizing: border-box;
}

.fe-hero p,
.fe-partners p,
.fe-videos p,
.fe-features p,
.fe-testimonials p,
.fe-contact p {
    margin-bottom: 0;
}

.fe-hero h1,
.fe-hero h2,
.fe-features h2,
.fe-features h3,
.fe-contact h2,
.fe-videos h2 {
    margin-bottom: 0;
}

/* ===================== HERO SECTION ===================== */
.fe-hero {
    background: #ffffff;
    padding: 0;
    display: flex;
    align-items: center;
}

.fe-hero__container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 72px 64px 64px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 48px;
}

.fe-hero__left {
    flex: 0 0 50%;
    min-width: 0;
    padding-top: 0;
}

.fe-hero__right {
    flex: 0 0 46%;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 48px;
}

/* Badge */
.fe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8f0fe;
    border: 1px solid #d0dffc;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 32px;
}

.fe-badge__dot {
    width: 8px;
    height: 8px;
    background-color: var(--fe-primary0);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    top: 0;
}

.fe-badge__text {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--fe-primary0);
    line-height: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

/* Heading */
.fe-heading {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.08;
    color: var(--fe-text-header);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.fe-heading--blue {
    color: var(--fe-primary0);
}

/* Subtext */
.fe-subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 480px;
}

/* CTA Buttons */
.fe-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.fe-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--fe-primary0);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 16px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.fe-cta-primary:hover {
    color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
    text-decoration: none;
}

.fe-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f7f8fa;
    color: var(--fe-text-header);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.fe-cta-secondary:hover {
    color: var(--fe-text-header);
    box-shadow: var(--fe-shadow-small);
    text-decoration: none;
}

/* Stats */
.fe-stats {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.fe-stat {
    display: flex;
    flex-direction: column;
    padding-right: 28px;
}

.fe-stat:not(:first-child) {
    padding-left: 28px;
    border-left: 1.5px solid #e5e7eb;
}

.fe-stat__value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--fe-text-header);
    margin-bottom: 2px;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.fe-stat__label {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    line-height: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Calendly inline expand */
.fe-calendly-inline {
    display: none;
    width: 100%;
    max-width: 540px;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    animation: fe-slideDown 0.3s ease;
}

.fe-calendly-inline.is-open {
    display: block;
    margin-top: 24px;
}

.fe-calendly-inline iframe {
    width: 100%;
    height: 580px;
    border: none;
    display: block;
}

@keyframes fe-slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Calendly modal popup */
.fe-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
    align-items: center;
    justify-content: center;
    animation: fe-fadeIn 0.2s ease;
}

.fe-modal-overlay.is-open {
    display: flex;
}

@keyframes fe-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fe-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 680px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    animation: fe-scaleIn 0.25s ease;
    position: relative;
}

@keyframes fe-scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.fe-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.fe-modal__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--fe-text-header);
}

.fe-modal__close {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #6b7280;
    transition: background 0.15s ease;
}

.fe-modal__close:hover {
    background: #f3f4f6;
}

.fe-modal__body {
    padding: 0;
}

.fe-modal__body iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

/* Hero image */
.fe-hero__image-wrapper {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.fe-hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===================== PARTNERS / TRUSTED ===================== */
.fe-partners {
    background: #f7f9fc;
    border-top: 1px solid #edf1f7;
    border-bottom: 1px solid #edf1f7;
}

.fe-partners__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 44px 24px;
    text-align: center;
}

.fe-partners__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #000000;
    margin-bottom: 16px;
}

.fe-partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.fe-partners__logo {
    height: 24px;
    width: auto;
    opacity: 0.9;
}

/* ===================== VIDEO CAROUSEL ===================== */
.fe-videos {
    background: #ffffff;
    display: none;
}

.fe-videos__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 24px 80px;
}

.fe-videos__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.fe-videos__heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--fe-text-header);
    letter-spacing: -0.3px;
}

.fe-videos__nav-arrows {
    display: flex;
    gap: 10px;
}

.fe-videos__arrow {
    appearance: none;
    -webkit-appearance: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.fe-videos__arrow:hover {
    border-color: var(--fe-primary0);
    color: var(--fe-primary0);
    box-shadow: 0 4px 12px rgba(38, 92, 255, 0.12);
}

.fe-videos__track-wrapper {
    overflow: hidden;
    border-radius: 14px;
}

.fe-videos__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fe-videos__track::-webkit-scrollbar {
    display: none;
}

.fe-videos__card {
    min-width: calc(33.333% - 16px);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.fe-videos__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a2e;
    cursor: pointer;
}

.fe-videos__player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fe-videos__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--fe-primary0);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(38, 92, 255, 0.35);
    padding-left: 3px;
}

.fe-videos__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(38, 92, 255, 0.5);
}

/* Lightbox */
.fe-videos__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.fe-videos__lightbox.is-open {
    display: flex;
}

.fe-videos__lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.fe-videos__lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fe-videos__lightbox-content {
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.fe-videos__lightbox-video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* ===================== FEATURES ===================== */
.fe-features {
    background: #f7f9fc;
}

.fe-features__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px 88px;
    text-align: center;
}

.fe-features__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--fe-primary0);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.fe-features__heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--fe-text-header);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    padding: 20px;
}

.fe-features__subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 48px;
}

.fe-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.fe-features__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px 40px;
    text-align: left;
    border: 1px solid #edf1f7;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fe-features__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.fe-features__icon {
    width: 48px;
    height: 48px;
    display: block;
    margin-bottom: 20px;
}

.fe-features__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--fe-text-header);
    margin-bottom: 12px;
    line-height: 1.3;
}

.fe-features__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #6b7280;
}

/* ===================== TESTIMONIALS ===================== */
.fe-testimonials {
    background: #ffffff;
}

.fe-testimonials__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px 88px;
}

.fe-testimonials__slider {
    position: relative;
    min-height: 380px;
}

.fe-testimonial__card {
    display: none;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    animation: fe-testimonialFade 0.7s ease-out;
}

.fe-testimonial__card--active {
    display: grid;
}

@keyframes fe-testimonialFade {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

.fe-testimonial__image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.fe-testimonial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.fe-testimonial__content {
    background: var(--fe-primary0);
    padding: 48px 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fe-testimonial__quote-icon {
    margin-bottom: 20px;
    line-height: 0;
}

.fe-testimonial__text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.55;
    color: #ffffff;
    margin-bottom: 28px;
}

.fe-testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fe-testimonial__name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.fe-testimonial__role {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 20px;
}

.fe-testimonial__decor {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Controls */
.fe-testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.fe-testimonials__nav {
    appearance: none;
    -webkit-appearance: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.fe-testimonials__nav:hover {
    border-color: var(--fe-primary0);
    color: var(--fe-primary0);
    box-shadow: 0 4px 12px rgba(38, 92, 255, 0.12);
}

.fe-testimonials__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fe-testimonials__dot {
    appearance: none;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fe-testimonials__dot--active {
    background: var(--fe-primary0);
    transform: scale(1.2);
}

.fe-testimonials__dot:hover {
    background: var(--fe-primary1);
}

/* ===================== CONTACT FORM ===================== */
.fe-contact {
    background: #f7f9fc;
}

.fe-contact__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px 88px;
    text-align: center;
}

.fe-contact__heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--fe-text-header);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.fe-contact__subtext {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #6b7280;
    margin-bottom: 40px;
}

.fe-contact__card {
    background: #ffffff;
    border: 1px solid #e8ecf3;
    border-radius: 20px;
    padding: 44px 40px 48px;
    text-align: left;
    margin-top: 40px;
}

.fe-contact__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.fe-contact__row {
    display: grid;
    gap: 24px;
}

.fe-contact__row--2col {
    grid-template-columns: 1fr 1fr;
}

.fe-contact__row--phone {
    grid-template-columns: 1.2fr 0.7fr 1.5fr;
}

.fe-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

/* Labels — higher specificity to beat Bootstrap */
.fe-contact .fe-contact__label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    padding-left: 0;
    margin-bottom: 0;
}

.fe-contact__required {
    color: #1f2937;
}

/* Inputs, selects, textareas — scoped to beat Bootstrap/global form styles */
.fe-contact__form input.fe-contact__input,
.fe-contact__form select.fe-contact__input,
.fe-contact__form textarea.fe-contact__input {
    height: 48px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-family: 'Gordita', sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    width: 100%;
    margin: 0;
    line-height: normal;
}

.fe-contact__form input.fe-contact__input::placeholder,
.fe-contact__form textarea.fe-contact__input::placeholder {
    color: #9ca3af;
    padding-left: 0;
}

.fe-contact__form input.fe-contact__input:focus,
.fe-contact__form select.fe-contact__input:focus,
.fe-contact__form textarea.fe-contact__input:focus {
    border-color: var(--fe-primary0);
    box-shadow: 0 0 0 3px rgba(38, 92, 255, 0.08);
}

.fe-contact__form input.fe-contact__input--prefix {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.fe-contact__form select.fe-contact__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.fe-contact__form textarea.fe-contact__textarea {
    height: auto;
    padding: 14px 16px;
    resize: vertical;
    min-height: 120px;
    line-height: 22px;
}

/* Validation error */
.fe-contact__error {
    display: none;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: #ef4444;
    padding: 3px 10px;
    border-radius: 4px;
    width: fit-content;
    margin-top: 2px;
}

.fe-contact__field--has-error .fe-contact__error {
    display: inline-block;
}

.fe-contact__field--has-error .fe-contact__input {
    border-color: #ef4444;
}

/* Actions row */
.fe-contact__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.fe-contact__captcha {
    flex-shrink: 0;
}

.fe-contact__form button.fe-contact__submit {
    appearance: none;
    -webkit-appearance: none;
    height: 52px;
    padding: 0 40px;
    background: var(--fe-primary0);
    color: #ffffff;
    font-family: 'Gordita', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fe-contact__form button.fe-contact__submit:hover {
    background: #1a4fde;
    box-shadow: 0 6px 20px rgba(38, 92, 255, 0.35);
}

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 1200px) {
    .fe-hero__container {
        padding: 56px 32px 48px;
    }

    .fe-heading {
        font-size: 56px;
    }

    .fe-stat__value {
        font-size: 40px;
    }

    .fe-stat {
        padding-right: 28px;
    }

    .fe-stat:not(:first-child) {
        padding-left: 28px;
    }
}

@media (max-width: 991px) {
    /* Hero layout */
    .fe-hero__container {
        flex-direction: column;
        padding: 40px 20px 34px;
        gap: 32px;
    }

    .fe-hero__left {
        flex: none;
        width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .fe-badge {
        justify-content: center;
    }

    .fe-heading {
        font-size: 44px;
    }

    .fe-subtext {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .fe-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .fe-hero__right {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .fe-hero__image-wrapper {
        max-width: 480px;
    }

    .fe-stats {
        justify-content: center;
    }

    .fe-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fe-features__container {
        padding: 60px 20px 64px;
    }

    .fe-features__heading {
        font-size: 34px;
    }

    .fe-testimonial__card--active {
        grid-template-columns: 1fr;
    }

    .fe-videos__card {
        min-width: calc(50% - 12px);
    }

    .fe-videos__container {
        padding: 56px 20px 64px;
    }

    .fe-testimonial__image {
        min-height: 280px;
    }

    .fe-testimonial__content {
        padding: 36px 28px 36px;
    }

    .fe-testimonial__text {
        font-size: 18px;
    }

    .fe-testimonials__container {
        padding: 60px 20px 64px;
    }

    .fe-testimonials__slider {
        min-height: auto;
    }

    .fe-contact__row--2col,
    .fe-contact__row--phone {
        grid-template-columns: 1fr;
    }

    .fe-contact__container {
        padding: 60px 20px 64px;
    }

    .fe-contact__heading {
        font-size: 34px;
    }

    .fe-contact__card {
        padding: 32px 24px 36px;
    }

    .fe-contact__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .fe-contact__submit {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .fe-heading {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .fe-stat__value {
        font-size: 32px;
    }

    .fe-stat {
        padding-right: 20px;
    }

    .fe-stat:not(:first-child) {
        padding-left: 20px;
    }

    .fe-stat__label {
        font-size: 10px;
    }

    .fe-hero__image-wrapper {
        max-width: 400px;
    }

    .fe-partners__logos {
        flex-wrap: wrap;
        gap: 22px;
    }
}

@media (max-width: 575px) {
    .fe-hero__container {
        padding: 28px 16px 28px;
        gap: 24px;
    }

    .fe-heading {
        font-size: 38px;
        letter-spacing: -0.3px;
    }

    .fe-videos__card {
        min-width: calc(100% - 0px);
    }

    .fe-videos__container {
        padding: 44px 16px 52px;
    }

    .fe-videos__heading {
        font-size: 24px;
    }

    .fe-subtext {
        font-size: 14px;
        line-height: 24px;
        margin-top: 20px;
    }

    .fe-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .fe-cta-primary,
    .fe-cta-secondary {
        width: 280px;
        max-width: 100%;
        justify-content: center;
        padding: 14px 22px;
    }

    .fe-stats {
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: center;
    }

    .fe-stat {
        padding-right: 0;
        text-align: center;
        flex: 0 1 auto;
    }

    .fe-stat:not(:first-child) {
        padding-left: 12px;
        border-left: 1.5px solid #e5e7eb;
    }

    .fe-stat__value {
        font-size: 22px;
    }

    .fe-stat__label {
        font-size: 8px;
    }

    .fe-hero__image-wrapper {
        max-width: 100%;
        border-radius: 14px;
    }

    .fe-partners__container {
        padding: 36px 16px;
    }

    .fe-partners__logos {
        gap: 16px;
        margin-top: 20px;
    }

    .fe-features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fe-features__container {
        padding: 48px 16px 56px;
    }

    .fe-features__heading {
        font-size: 28px;
    }

    .fe-features__card {
        padding: 28px 24px 32px;
    }

    .fe-contact__heading {
        font-size: 28px;
    }

    .fe-contact__container {
        padding: 48px 16px 56px;
    }

    .fe-contact__card {
        padding: 24px 16px 28px;
        border-radius: 14px;
    }
}
