/* =========================
	ROOT VARIABLES
========================= */
:root {
    --ef-primary: #3f199b;
    --ef-primary-dark: #3a1794;
    --ef-orange: #f5a000;
    --ef-text: #141414;
    --ef-white: #ffffff;
    --ef-border: #e7e7e7;
    --ef-bg: #f7f7f7;
    --ef-transition: all 0.3s ease;
    --ef-radius-pill: 999px;
}

/* =========================
	RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--ef-white);
}

a {
    text-decoration: none;
}

/* =========================
	TOPBAR
========================= */
.ef-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.ef-header .ef-topbar {
    background: var(--ef-orange);
    padding: 12px 0;
    text-align: center;
}

.ef-header .ef-topbar p {
    font-size: 15px;
    font-weight: 600;
    color: var(--ef-primary-dark);
    line-height: 1.4;
}

/* =========================
	NAVBAR
========================= */
.ef-header .ef-navbar {
    background: #f3f3f3;
}

.ef-header .navbar {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ef-header .ef-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.ef-header .ef-logo img {
    width: 150px;
    display: block;
}

.ef-header .ef-irs-badge img {
    width: 58px;
    display: block;
}

/* =========================
	NAVIGATION
========================= */
.ef-header .ef-nav-list {
    align-items: center;
    gap: 10px;
}

.ef-header .ef-nav-list .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--ef-text);
    padding: 4px 18px;
    border-radius: var(--ef-radius-pill);
    transition: var(--ef-transition);
    white-space: nowrap;
}

.ef-header .ef-nav-list .nav-link:hover {
    color: var(--ef-primary);
}

.ef-header .ef-nav-list .nav-link.active {
    background: var(--ef-primary);
    color: var(--ef-white);
}

/* =========================
	ACTIONS
========================= */
.ef-header .ef-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.ef-header .ef-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 46px;
    padding: 0 28px;
    border-radius: var(--ef-radius-pill);
    font-size: 16px;
    font-weight: 600;
    transition: var(--ef-transition);
    white-space: nowrap;
    text-decoration: none;
}

.ef-header .ef-btn i {
    font-size: 13px;
}

.ef-header .ef-btn-outline {
    border: 1.5px solid #a98de9;
    color: var(--ef-primary);
    background: transparent;
}

.ef-header .ef-btn-outline:hover {
    background: var(--ef-primary);
    color: var(--ef-white);
}

.ef-header .ef-btn-primary {
    background: var(--ef-primary);
    color: var(--ef-white);
}

.ef-header .ef-btn-primary:hover {
    background: var(--ef-primary-dark);
    color: var(--ef-white);
}

/* =========================
	MOBILE MENU BUTTON
========================= */
.ef-header .ef-menu-btn {
    border: none;
    box-shadow: none !important;
    padding: 0;
}

.ef-header .ef-menu-btn i {
    font-size: 28px;
    color: var(--ef-primary);
}

/* =========================
	DROPDOWN
========================= */
.ef-header .dropdown-menu {
    border: none;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ef-header .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 15px;
}

.ef-header .dropdown-item:hover {
    background: rgba(75, 34, 181, 0.08);
    color: var(--ef-primary);
}

/* =========================
	RESPONSIVE
========================= */
@media (max-width: 1199px) {

    .ef-header .ef-nav-list .nav-link {
        font-size: 16px;
        padding: 10px 12px;
    }

    .ef-header .ef-btn {
        padding: 0 20px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {

    .ef-header .navbar {
        min-height: auto;
        padding: 18px 0;
    }

    .ef-header .navbar-collapse {
        background: var(--ef-white);
        margin-top: 20px;
        padding: 25px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .ef-header .ef-nav-list {
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 24px;
    }

    .ef-header .ef-nav-list .nav-link {
        width: 100%;
        padding: 14px 16px;
    }

    .ef-header .ef-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .ef-header .ef-btn {
        width: 100%;
    }

    .ef-header .dropdown-menu {
        box-shadow: none;
        padding-left: 10px;
    }
}

@media (max-width: 767px) {

    .ef-header .ef-topbar {
        padding: 10px 14px;
    }

    .ef-header .ef-topbar p {
        font-size: 13px;
    }

    .ef-header .ef-left {
        gap: 10px;
    }

    .ef-header .ef-logo img {
        width: 125px;
    }

    .ef-header .ef-irs-badge img {
        width: 48px;
    }

    .ef-header .navbar-collapse {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    .ef-header .ef-logo img {
        width: 110px;
    }

    .ef-header .ef-irs-badge img {
        width: 42px;
    }

    .ef-header .ef-menu-btn i {
        font-size: 24px;
    }
}

/* =========================
	FIX NAVBAR OVERFLOW
========================= */
.ef-header .navbar-expand-lg .navbar-collapse {
    flex-grow: 1;
    min-width: 0;
}

.ef-header .ef-nav-list {
    flex-wrap: nowrap;
}

.ef-header .ef-nav-list .nav-link {
    font-size: 16px;
    padding: 6px 14px;
}

.ef-header .ef-actions {
    gap: 10px;
}

.ef-header .ef-btn {
    padding: 0 20px;
    font-size: 15px;
    height: 44px;
}

@media (max-width: 1200px) {

    .ef-header .navbar {
        gap: 12px;
    }

    .ef-header .ef-left {
        gap: 10px;
    }

    .ef-header .ef-logo img {
        width: 128px;
    }

    .ef-header .ef-irs-badge img {
        width: 50px;
    }

    .ef-header .ef-nav-list {
        gap: 2px;
    }

    .ef-header .ef-nav-list .nav-link {
        font-size: 15px;
        padding: 10px 10px;
    }

    .ef-header .ef-btn {
        padding: 0 16px;
        font-size: 14px;
    }

    .ef-header .ef-actions {
        gap: 8px;
    }
}

/* =========================
	TABLET MENU
========================= */
@media (max-width: 991px) {

    .ef-header .ef-nav-list {
        flex-wrap: wrap;
    }

    .ef-header .navbar-collapse {
        overflow: hidden;
        border: none;
    }
}

/* =========================
            HERO SECTION
        ========================= */
.ef-hero {
    background-color: #2c085a;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

.ef-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.ef-hero .container {
    position: relative;
    z-index: 1;
}

.ef-hero .ef-hero-content {
    color: var(--ef-white);
    max-width: 600px;
}

.ef-hero .ef-hero-eyebrow {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.ef-hero .ef-hero-title {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 600;
    line-height: 1.08;
    color: var(--ef-white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.ef-hero .ef-hero-desc {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 44px;
    max-width: 520px;
}

.ef-hero .ef-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ef-orange);
    color: var(--ef-white);
    font-size: 17px;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: var(--ef-radius-pill);
    transition: var(--ef-transition);
    text-decoration: none;
}

.ef-hero .ef-hero-cta:hover {
    background: #e09200;
    color: var(--ef-white);
    text-decoration: none;
}

.ef-hero .ef-hero-cta i {
    font-size: 14px;
}

.ef-hero .ef-hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 28px;
    position: relative;
}

.ef-hero .ef-price-badge {
    position: absolute;
    bottom: -20px;
    left: -60px;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: var(--ef-white);
    border: 2.5px dashed var(--ef-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    animation: ef-spin-slow 18s linear infinite;
}

@keyframes ef-spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ef-hero .ef-price-badge-inner {
    animation: ef-spin-slow-reverse 18s linear infinite;
}

@keyframes ef-spin-slow-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.ef-hero .ef-price-badge .badge-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ef-orange);
    line-height: 1.3;
    margin-bottom: 2px;
}

.ef-hero .ef-price-badge .badge-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--ef-primary);
    line-height: 1.1;
}

.ef-hero .ef-price-badge .badge-per {
    font-size: 13px;
    font-weight: 600;
    color: var(--ef-orange);
}

.ef-hero .ef-login-card {
    background: var(--ef-white);
    border-radius: 24px;
    padding: 36px 32px 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    flex-shrink: 0;
}

.ef-hero .ef-login-card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--ef-primary);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid var(--ef-border);
}

.ef-hero .ef-login-card-title span {
    color: var(--ef-primary);
    font-weight: 500;
    font-size: 20px;
}

.ef-hero .ef-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    border: 1.5px solid transparent;
    transition: var(--ef-transition);
}

.ef-hero .ef-input-group:focus-within {
    border-color: var(--ef-primary);
    background: #faf9ff;
}

.ef-hero .ef-input-group i {
    color: #2c085a;
    font-size: 16px;
    flex-shrink: 0;
}

.ef-hero .ef-input-group input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    color: var(--ef-text);
    width: 100%;
}

.ef-hero .ef-input-group input::placeholder {
    color: #aaa;
}

.ef-hero .ef-login-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    margin-top: 6px;
}

.ef-hero .ef-login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.ef-hero .ef-login-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--ef-primary);
    cursor: pointer;
}

.ef-hero .ef-login-reset {
    font-size: 14px;
    font-weight: 600;
    color: var(--ef-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ef-hero .ef-login-reset:hover {
    color: var(--ef-primary-dark);
}

.ef-hero .ef-login-btn {
    display: block;
    width: 100%;
    background: var(--ef-orange);
    color: var(--ef-white);
    font-size: 17px;
    font-weight: 700;
    padding: 15px;
    border-radius: var(--ef-radius-pill);
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--ef-transition);
    margin-bottom: 20px;
}

.ef-hero .ef-login-btn:hover {
    background: #e09200;
}

.ef-hero .ef-login-register {
    text-align: center;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.ef-hero .ef-login-register a {
    color: var(--ef-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ef-hero .ef-login-register a:hover {
    color: var(--ef-primary-dark);
}

/* =========================
            HERO RESPONSIVE
        ========================= */
@media (max-width: 991px) {
    .ef-hero {
        padding: 56px 0 60px;
    }

    .ef-hero .ef-hero-right {
        justify-content: center;
        margin-top: 52px;
    }

    .ef-hero .ef-price-badge {
        left: -16px;
        bottom: -14px;
        width: 118px;
        height: 118px;
    }

    .ef-hero .ef-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .ef-hero .ef-hero-desc {
        max-width: 100%;
    }

    .ef-hero .ef-login-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .ef-hero .ef-hero {
        padding: 44px 0 52px;
    }

    .ef-hero .ef-login-card {
        padding: 28px 20px 24px;
    }

    .ef-hero .ef-price-badge {
        width: 100px;
        height: 100px;
    }

    .ef-hero .ef-price-badge .badge-price {
        font-size: 21px;
    }
}

/* --- Trusted Section --- */
.ef-trusted {
    background: #f9f9f9;
    padding: 64px 0 72px;
    overflow: hidden;
}

.ef-trusted-heading {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.55;
    margin-bottom: 52px;
}

.ef-trusted-heading strong {
    font-weight: 600;
    color: #1a1a1a;
}

.ef-trusted-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

.ef-trusted-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: ef-trusted-scroll 32s linear infinite;
}

.ef-trusted-track:hover {
    animation-play-state: paused;
}

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

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

.ef-trusted-item {
    flex-shrink: 0;
    background: #ffffff;
    border: 1.5px solid #eeeeee;
    border-radius: 14px;
    width: 190px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ef-trusted-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}

.ef-trusted-item svg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .ef-trusted {
        padding: 48px 0 56px;
    }

    .ef-trusted-heading {
        font-size: 18px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .ef-trusted-item {
        width: 160px;
        height: 76px;
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {
    .ef-trusted-heading {
        font-size: 16px;
    }

    .ef-trusted-item {
        width: 140px;
        height: 68px;
    }
}

/* Service */
.ef-irs-service {
    background: #f9f9f9;
    padding: 72px 0 80px;
}

.ef-irs-service-heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 52px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.ef-irs-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ef-irs-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.ef-irs-card-title {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 600;
    color: #3f199b;
    line-height: 1.25;
    margin-bottom: 16px;
}

.ef-irs-card-desc {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 28px;
    flex: 1;
}

.ef-irs-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5a000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    align-self: flex-start;
}

.ef-irs-card-btn i {
    font-size: 12px;
}

.ef-irs-card-btn:hover {
    background: #e09200;
    color: #ffffff;
    text-decoration: none;
}

.ef-irs-card--badge .ef-irs-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ef-irs-badge-wrap {
    flex-shrink: 0;
    opacity: 0.92;
}

@media (max-width: 991px) {
    .ef-irs-service {
        padding: 56px 0 64px;
    }

    .ef-irs-service-heading {
        margin-bottom: 40px;
    }

    .ef-irs-card {
        padding: 28px 24px 24px;
    }
}

@media (max-width: 767px) {
    .ef-irs-service {
        padding: 44px 0 52px;
    }

    .ef-irs-service-heading {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

/* --- Features --- */
.ef-irs-feat {
    background: #ffffff;
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}

.ef-irs-feat-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
    z-index: 0;
}

.ef-irs-feat-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.ef-irs-feat-badge {
    display: inline-block;
    border: 1.5px solid #c8c8c8;
    border-radius: 999px;
    padding: 7px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 18px;
    background: #fff;
    letter-spacing: 0.01em;
}

.ef-irs-feat-heading {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
}

.ef-irs-feat-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    width: 100%;
}

.ef-irs-feat-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    background: linear-gradient(135deg, #c8cfe0 0%, #a0a8bc 100%);
}

.ef-irs-feat-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.ef-irs-feat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 26px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.055);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.ef-irs-feat-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.ef-irs-feat-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 160, 0, 0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.ef-irs-feat-card-icon i {
    font-size: 22px;
    color: #f5a000;
}

.ef-irs-feat-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #f5a000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ef-irs-feat-card-desc {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

@media (max-width: 991px) {
    .ef-irs-feat {
        padding: 56px 0 68px;
    }

    .ef-irs-feat-header {
        margin-bottom: 40px;
    }

    .ef-irs-feat-img {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .ef-irs-feat {
        padding: 44px 0 56px;
    }

    .ef-irs-feat-heading {
        font-size: 26px;
    }

    .ef-irs-feat-img {
        height: 280px;
    }

    .ef-irs-feat-card {
        padding: 22px 20px 20px;
    }
}

/* ---- Pricing ---- */
.ef-pricing {
    position: relative;
    padding: 76px 0 90px;
    overflow: hidden;
}

.ef-pricing-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.ef-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.ef-pricing-header {
    text-align: center;
    margin-bottom: 52px;
}

.ef-pricing-badge {
    display: inline-block;
    border: 1.5px solid #c0c0c0;
    border-radius: 999px;
    padding: 7px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

.ef-pricing-heading {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
    color: #111111;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

.ef-pricing-highlight {
    color: #f5a000;
}

.ef-pricing-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
}

.ef-pricing-card {
    flex: 1 1 0;
    min-width: 0;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ef-pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.ef-pricing-card--featured {
    border: 2px solid #e8e8e8;
    padding: 36px 28px 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}

.ef-pricing-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.ef-pricing-card-info {
    flex: 1;
    min-width: 0;
}

.ef-pricing-card-icon {
    width: 46px;
    height: 46px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ef-pricing-card-icon i {
    font-size: 20px;
    color: #3f199b;
}

.ef-pricing-plan {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0 0 6px 0;
}

.ef-pricing-price {
    font-size: clamp(28px, 2.8vw, 30px);
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px 0;
    line-height: 1.1;
}

.ef-pricing-per {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.ef-pricing-sub {
    font-size: 14px;
    color: #7a7a7a;
    margin: 0;
}

.ef-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.ef-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #222;
    font-weight: 500;
}

.ef-pricing-features li i {
    font-size: 18px;
    flex-shrink: 0;
}

.ef-check-green {
    color: #22c55e;
}

.ef-check-orange {
    color: #f5a000;
}

.ef-pricing-link {
    color: #f5a000;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.ef-pricing-link-blue {
    color: var(--ef-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.ef-pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ef-pricing-btn i {
    font-size: 13px;
}

.ef-pricing-btn--outline {
    border: 1.5px solid #d0d0d0;
    color: #111;
    background: transparent;
}

.ef-pricing-btn--outline:hover {
    border-color: #3f199b;
    color: #3f199b;
    text-decoration: none;
}

.ef-pricing-btn--primary {
    background: #f5a000;
    color: #ffffff;
    border: none;
}

.ef-pricing-btn--primary:hover {
    background: #e09200;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .ef-pricing {
        padding: 56px 0 68px;
    }

    .ef-pricing-header {
        margin-bottom: 40px;
    }

    .ef-pricing-row {
        gap: 18px;
    }

    .ef-pricing-card {
        padding: 26px 20px 22px;
    }

    .ef-pricing-card--featured {
        padding: 30px 20px 26px;
    }
}

@media (max-width: 767px) {
    .ef-pricing {
        padding: 44px 0 56px;
    }

    .ef-pricing-heading {
        font-size: 24px;
    }

    .ef-pricing-row {
        flex-direction: column;
    }

    .ef-pricing-card {
        padding: 24px 20px 20px;
    }
}

/* ---- Steps ---- */
.ef-steps {
    background: #ffffff;
    padding: 72px 0 88px;
}

.ef-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ef-steps-header {
    text-align: center;
    margin-bottom: 40px;
}

.ef-steps-badge {
    display: inline-block;
    border: 1.5px solid #c0c0c0;
    border-radius: 999px;
    padding: 7px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.ef-steps-heading {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
    color: #111111;
    line-height: 1.2;
    margin: 0;
}

.ef-steps-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1.5px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.ef-steps-banner {
    background: #3f199b;
    padding: 20px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
    margin: 0 auto;
    max-width: 780px;
    border-radius: 0 0 24px 24px;
}

.ef-steps-banner-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ef-steps-banner-tag {
    display: inline-block;
    background: #ffffff;
    color: #3f199b;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

.ef-steps-banner-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.ef-steps-banner-link {
    font-size: 14px;
    font-weight: 700;
    color: #f5a000;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ef-steps-banner-link i {
    font-size: 11px;
}

.ef-steps-banner-link:hover {
    color: #ffc94d;
}

.ef-steps-body {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px 44px 52px;
}

.ef-steps-left {
    flex: 0 0 420px;
    max-width: 420px;
}

.ef-step-item {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.ef-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.ef-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #c8c8c8;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #555;
    flex-shrink: 0;
    z-index: 1;
}

.ef-step-circle--active {
    background: #3f199b;
    border-color: #3f199b;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(63, 25, 155, 0.30);
}

.ef-step-line {
    width: 2px;
    flex: 1 1 auto;
    background: #dedede;
    margin: 4px 0;
    min-height: 100%;
}

.ef-step-line--last {
    display: none;
}

.ef-step-content {
    padding-top: 8px;
    padding-bottom: 28px;
}

.ef-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px 0;
}

.ef-step-desc {
    font-size: 16px;
    color: #000;
    line-height: 1.75;
    margin: 0;
}

.ef-steps-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.ef-steps-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.18));
}

@media (max-width: 991px) {
    .ef-steps {
        padding: 56px 0 68px;
    }

    .ef-steps-body {
        flex-direction: column;
        padding: 36px 28px 40px;
        gap: 36px;
    }

    .ef-steps-left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .ef-steps-right {
        width: 100%;
    }

    .ef-steps-banner {
        clip-path: none;
        border-radius: 0;
        padding: 20px 24px;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .ef-steps {
        padding: 44px 0 56px;
    }

    .ef-steps-heading {
        font-size: 26px;
    }

    .ef-steps-body {
        padding: 28px 20px 32px;
    }

    .ef-steps-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ef-steps-banner-link {
        align-self: center;
    }
}

/* ---- Who File ---- */
.ef-who {
    background: #f9f9f9;
    padding: 72px 0 80px;
}

.ef-who-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}

.ef-who-row {
    display: flex;
    align-items: center;
    gap: 48px;
}

.ef-who-left {
    flex: 0 0 300px;
    max-width: 300px;
}

.ef-who-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1.5px solid #c0c0c0;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 14px;
    background: #ffffff;
    margin-bottom: 22px;
    gap: 3px;
}

.ef-who-badge-italic {
    font-style: italic;
    color: var(--ef-orange);
    font-weight: 600;
}

.ef-who-badge-bold {
    font-weight: 600;
    color: #111;
    font-style: italic;
}

.ef-who-badge-orange {
    color: var(--ef-orange);
}

.ef-who-heading {
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 600;
    color: #111111;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.ef-who-desc {
    font-size: 16px;
    color: #000;
    line-height: 1.75;
    margin: 0 0 32px 0;
}

.ef-who-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5a000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.ef-who-cta i {
    font-size: 12px;
}

.ef-who-cta:hover {
    background: #e09200;
    color: #ffffff;
    text-decoration: none;
}

.ef-who-center {
    flex: 0 0 420px;
    max-width: 420px;
}

.ef-who-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.ef-who-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.ef-who-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.ef-who-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ef-who-item-icon i {
    font-size: 18px;
    color: #3f199b;
}

.ef-who-item-body {
    flex: 1;
    min-width: 0;
}

.ef-who-item-title {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.ef-who-item-desc {
    font-size: 15px;
    color: #000;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.ef-who-item-link {
    font-size: 14px;
    font-weight: 600;
    color: #f5a000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.ef-who-item-link:hover {
    color: #e09200;
    text-decoration: none;
    text-underline-offset: 3px;
}

.ef-who-item+.ef-who-item {
    padding-top: 36px;
    border-top: 1px solid #e4e4e4;
    margin-top: 10px;
    gap: 18px;
}

.ef-who-right {
    gap: 0;
}

@media (max-width: 1100px) {
    .ef-who-row {
        gap: 32px;
    }

    .ef-who-left {
        flex: 0 0 260px;
        max-width: 260px;
    }

    .ef-who-center {
        flex: 0 0 340px;
        max-width: 340px;
    }
}

@media (max-width: 991px) {
    .ef-who {
        padding: 56px 0 64px;
    }

    .ef-who-row {
        flex-wrap: wrap;
        gap: 40px;
    }

    .ef-who-left {
        flex: 1 1 280px;
        max-width: 100%;
    }

    .ef-who-center {
        flex: 1 1 320px;
        max-width: 100%;
    }

    .ef-who-img {
        height: 400px;
    }

    .ef-who-right {
        flex: 1 1 100%;
    }
}

@media (max-width: 767px) {
    .ef-who {
        padding: 44px 0 52px;
    }

    .ef-who-container {
        padding: 0 20px;
    }

    .ef-who-heading {
        font-size: 28px;
    }

    .ef-who-img {
        height: 300px;
    }
}

/* ---- Testimonial ---- */
.ef-reviews {
    background: #ffffff;
    padding: 72px 0 88px;
}

.ef-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ef-reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.ef-reviews-badge {
    display: inline-block;
    border: 1.5px solid #c8c8c8;
    border-radius: 999px;
    padding: 7px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.ef-reviews-heading {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
}

.ef-reviews-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
}

.ef-reviews-card {
    flex: 1 1 0;
    min-width: 0;
    background: #ffffff;
    border: 1.5px solid #e4e4e4;
    border-radius: 22px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ef-reviews-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.ef-reviews-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 22px;
}

.ef-reviews-stars i {
    font-size: 14px;
    color: #292d32;
}

.ef-reviews-text {
    font-size: 14px;
    color: #444;
    line-height: 1.78;
    margin: 0 0 28px 0;
    flex: 1;
}

.ef-reviews-author {
    border-top: 0;
}

.ef-reviews-name {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    margin: 0 0 4px 0;
}

.ef-reviews-role {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin: 0;
}

@media (max-width: 991px) {
    .ef-reviews {
        padding: 56px 0 68px;
    }

    .ef-reviews-row {
        gap: 18px;
    }

    .ef-reviews-card {
        padding: 28px 22px 24px;
    }
}

@media (max-width: 767px) {
    .ef-reviews {
        padding: 44px 0 56px;
    }

    .ef-reviews-heading {
        font-size: 30px;
    }

    .ef-reviews-row {
        flex-direction: column;
    }

    .ef-reviews-card {
        padding: 28px 24px 24px;
    }
}

/* ---- Blogs ---- */
.ef-blogs {
    background: #f9f9f9;
    padding: 72px 0 88px;
}

.ef-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ef-blogs-heading {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
    color: #111111;
    text-align: center;
    margin: 0 0 48px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.ef-blogs-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
}

.ef-blogs-card {
    flex: 1 1 0;
    min-width: 0;
    background: #fbfbfc;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ef-blogs-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.ef-blogs-thumb {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.ef-blogs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ef-blogs-card:hover .ef-blogs-img {
    transform: scale(1.04);
}

.ef-blogs-date {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e53935;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    z-index: 2;
    white-space: nowrap;
}

.ef-blogs-date i {
    font-size: 12px;
}

.ef-blogs-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ef-blogs-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    line-height: 1.45;
    margin: 0 0 12px 0;
}

.ef-blogs-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 auto 0;
    flex: 1;
}

.ef-blogs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(17, 17, 17);
    text-decoration: none;
    margin-top: 20px;
    padding: 18px;
    border-top: 1.5px solid rgb(238, 238, 238);
    width: 100%;
    justify-content: center;
    transition: color 0.2s;
    background: white;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.055) 0px 2px 14px;
    border-radius: 8px;
}

.ef-blogs-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.ef-blogs-link:hover {
    color: #3f199b;
    text-decoration: none;
}

.ef-blogs-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .ef-blogs {
        padding: 56px 0 68px;
    }

    .ef-blogs-row {
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .ef-blogs {
        padding: 44px 0 56px;
    }

    .ef-blogs-heading {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .ef-blogs-row {
        flex-direction: column;
    }

    .ef-blogs-thumb {
        height: 200px;
    }
}

/* ---- FAQ ---- */
.ef-faq {
    background: #ffffff;
    padding: 80px 0 96px;
}

.ef-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.ef-faq-row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.ef-faq-left {
    flex: 0 0 280px;
    max-width: 280px;
    position: sticky;
    top: 32px;
}

.ef-faq-heading {
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 600;
    color: #111111;
    line-height: 1.2;
    margin: 0 0 18px 0;
    letter-spacing: -0.01em;
}

.ef-faq-sub {
    font-size: 16px;
    color: #000;
    line-height: 1.65;
    margin: 0 0 32px 0;
}

.ef-faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #f5a000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.ef-faq-cta i {
    font-size: 12px;
}

.ef-faq-cta:hover {
    background: #e09200;
    color: #ffffff;
    text-decoration: none;
}

.ef-faq-right {
    flex: 1;
    min-width: 0;
}

.ef-faq-item {
    border-bottom: 1.5px solid #e8e8e8;
}

/* .ef-faq-item:first-child {
    border-top: 1.5px solid #e8e8e8;
} */

.ef-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 0;
    text-align: left;
}

.ef-faq-num {
    font-size: 20px;
    font-weight: 600;
    color: #aaa;
    flex-shrink: 0;
    width: 28px;
    letter-spacing: 0.02em;
}

.ef-faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    flex: 1;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.ef-faq-trigger:hover .ef-faq-question {
    color: #3f199b;
}

.ef-faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #c8c8c8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ef-faq-icon i {
    font-size: 13px;
    color: #555;
    transition: color 0.2s ease;
}

.ef-faq-item--open .ef-faq-icon {
    border-color: #aaa;
}

.ef-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s ease, padding 0.38s ease;
    padding: 0 0 0 48px;
    overflow: hidden;
}

.ef-faq-answer-inner {
    overflow: hidden;
}

.ef-faq-item--open .ef-faq-answer {
    grid-template-rows: 1fr;
    padding: 0 0 26px 48px;
}

.ef-faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.78;
    margin: 0;
}

@media (max-width: 991px) {
    .ef-faq {
        padding: 60px 0 72px;
    }

    .ef-faq-row {
        gap: 48px;
    }

    .ef-faq-left {
        flex: 0 0 220px;
        max-width: 220px;
        position: static;
    }
}

@media (max-width: 767px) {
    .ef-faq {
        padding: 44px 0 56px;
    }

    .ef-faq-container {
        padding: 0 20px;
    }

    .ef-faq-row {
        flex-direction: column;
        gap: 36px;
    }

    .ef-faq-left {
        flex: none;
        max-width: 100%;
    }

    .ef-faq-trigger {
        gap: 14px;
        padding: 20px 0;
    }

    .ef-faq-question {
        font-size: 15px;
    }

    .ef-faq-answer {
        padding: 0 0 20px 36px;
    }
}

/* ---- Footer ---- */
.ef-footer {
    background: var(--ef-primary);
    padding: 60px 0 50px;
}

.ef-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.ef-footer-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.ef-footer-brand {
    flex: 0 0 240px;
    max-width: 240px;
}

.ef-footer-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.ef-footer-logo {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.ef-footer-irs {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.ef-footer-contact-group {
    margin-bottom: 24px;
}

.ef-footer-contact-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.ef-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.ef-footer-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5a000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ef-footer-contact-icon i {
    font-size: 14px;
    color: var(--ef-primary-dark);
}

.ef-footer-col {
    flex: 1;
    min-width: 0;
}

.ef-footer-col-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 18px 0;
    letter-spacing: 0.01em;
}

.ef-footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ef-footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.ef-footer-links li::before {
    content: '•';
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    flex-shrink: 0;
}

.ef-footer-links li a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.ef-footer-links li a:hover {
    color: var(--ef-orange);
}

.ef-footer-irs-auth {
    margin-top: 4px;
}

.ef-footer-irs-auth .ef-footer-col-title {
    margin-bottom: 14px;
}

.ef-footer-irs-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ef-footer-badge-img {
    width: 108px;
    /* height: 68px; */
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

@media (max-width: 1199px) {
    .ef-footer-row {
        gap: 32px;
    }

    .ef-footer-brand {
        flex: 0 0 200px;
        max-width: 200px;
    }
}

@media (max-width: 991px) {
    .ef-footer {
        padding: 48px 0 40px;
    }

    .ef-footer-row {
        flex-wrap: wrap;
        gap: 36px;
    }

    .ef-footer-brand {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ef-footer-col {
        flex: 1 1 160px;
    }
}

@media (max-width: 575px) {
    .ef-footer-container {
        padding: 0 20px;
    }

    .ef-footer-col {
        flex: 1 1 140px;
    }

    .ef-footer-row {
        gap: 28px;
    }
}

.ef-hero .ef-login-card {
    max-width: 100%;  /* let it fill the col-lg-5 */
    margin-left: 0;   /* remove any previous margin fixes */
}

.ef-hero .ef-hero-right {
    margin-top: -40px;
    justify-content: flex-end;
}


/* ===== EasyForm2290 Hero Reduced Size Fix ===== */

.ef-hero {
    padding: 72px 0 45px !important;
    min-height: auto !important;
}

.ef-hero .container {
    max-width: 1500px !important;
    width: calc(100% - 220px) !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.ef-hero .ef-hero-content {
    max-width: 620px !important;
}

.ef-hero .ef-hero-eyebrow {
    font-size: 18px !important;
    margin-bottom: 22px !important;
}

.ef-hero .ef-hero-title {
    font-size: 64px !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    margin-bottom: 28px !important;
}

.ef-hero .ef-hero-desc {
    font-size: 19px !important;
    line-height: 1.75 !important;
    max-width: 620px !important;
    margin-bottom: 42px !important;
}

.ef-hero .ef-hero-cta {
    font-size: 17px !important;
    padding: 15px 34px !important;
}

.ef-hero .ef-hero-right {
    position: relative !important;
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    margin-top: 25px !important;
    justify-content: flex-end !important;
}

.ef-hero .ef-login-card {
    width: 420px !important;
    max-width: 420px !important;
    border-radius: 24px !important;
    padding: 36px 32px 32px !important;
}

.ef-hero .ef-login-card-title,
.ef-hero .ef-login-card-title span {
    font-size: 20px !important;
}

.ef-hero .ef-login-card-title {
    margin-bottom: 28px !important;
    padding-bottom: 16px !important;
}

.ef-hero .ef-input-group {
    height: 58px !important;
    border-radius: 12px !important;
    padding: 0 18px !important;
    margin-bottom: 14px !important;
}

.ef-hero .ef-input-group i {
    font-size: 17px !important;
    color: #2c085a !important;
    min-width: 22px !important;
}

.ef-hero .ef-input-group input {
    font-size: 15px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.ef-hero .ef-login-meta {
    margin-top: 8px !important;
    margin-bottom: 24px !important;
}

.ef-hero .ef-login-btn {
    height: 58px !important;
    border-radius: 35px !important;
    font-size: 17px !important;
}

.ef-hero .ef-login-register {
    margin-top: 20px !important;
    font-size: 14px !important;
}

.ef-hero .ef-price-badge {
    width: 138px !important;
    height: 138px !important;
    left: -180px !important;
    bottom: -25px !important;
    z-index: 10 !important;
}

.ef-hero .ef-price-badge .badge-label {
    font-size: 14px !important;
}

.ef-hero .ef-price-badge .badge-price {
    font-size: 26px !important;
}

.ef-hero .ef-price-badge .badge-per {
    font-size: 13px !important;
}

/* Remove Chrome autofill blue color */
.ef-hero .ef-input-group input:-webkit-autofill,
.ef-hero .ef-input-group input:-webkit-autofill:hover,
.ef-hero .ef-input-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #f9f9f9 inset !important;
    -webkit-text-fill-color: #222 !important;
}


/* =========================
   EasyForm2290 Footer Correct Smaller Size
========================= */

.ef-footer {
    background: #3f199b !important;
    padding: 48px 0 38px !important;
    color: rgba(255,255,255,.82) !important;
}

.ef-footer-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.ef-footer-row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 48px !important;
}

.ef-footer-brand {
    flex: 0 0 250px !important;
    max-width: 250px !important;
}

.ef-footer-col {
    flex: 1 !important;
    min-width: 0 !important;
}

.ef-footer-irs-col {
    flex: 0 0 190px !important;
    max-width: 190px !important;
}

.ef-footer-col-title {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 0 18px 0 !important;
    line-height: 1.25 !important;
    text-transform: none !important;
}

.ef-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ef-footer li {
    position: relative !important;
    padding-left: 13px !important;
    margin-bottom: 13px !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
}

.ef-footer li::before {
    content: "•" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: rgba(255,255,255,.55) !important;
}

.ef-footer a {
    color: rgba(255,255,255,.82) !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

.ef-footer a:hover {
    color: #f5a000 !important;
}

.ef-footer p {
    margin: 0 !important;
}

/* logo area */
.ef-footer-brand img {
    max-width: 220px !important;
    height: auto !important;
    margin-bottom: 26px !important;
}

/* left contact labels */
.ef-footer-brand h1,
.ef-footer-brand h2,
.ef-footer-brand h3,
.ef-footer-brand h4,
.ef-footer-brand strong,
.ef-footer-brand b {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.ef-footer-brand p,
.ef-footer-brand span,
.ef-footer-brand div {
    color: rgba(255,255,255,.82) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

/* contact icons */
.ef-footer i {
    color: #3f199b !important;
    background: #f5a000 !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 10px !important;
    font-size: 13px !important;
}

/* IRS badge images */
.ef-footer-irs-col img {
    max-width: 58px !important;
    height: auto !important;
    margin-right: 8px !important;
    margin-top: 6px !important;
}

/* copyright */
.ef-footer-copyright {
    margin-top: 28px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255,255,255,.16) !important;
}

.ef-footer-copyright,
.ef-footer-copyright p,
.ef-footer-copyright span,
.ef-footer-copyright a {
    color: rgba(255,255,255,.65) !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

/* remove old footer background */
#footer-section .footer-info,
#theme-footer,
.theme-ft-company {
    background: transparent !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .ef-footer-row {
        flex-wrap: wrap !important;
        gap: 28px !important;
    }

    .ef-footer-brand {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .ef-footer-col,
    .ef-footer-irs-col {
        flex: 0 0 45% !important;
        max-width: 45% !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .ef-footer {
        padding: 38px 0 30px !important;
    }

    .ef-footer-container {
        padding: 0 18px !important;
    }

    .ef-footer-col,
    .ef-footer-irs-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}


/* Remove yellow footer link icons */
.ef-footer li i,
.ef-footer li .fa,
.ef-footer li .fas,
.ef-footer li .far,
.ef-footer li .ri,
.ef-footer li span[class*="icon"],
.ef-footer li .footer-icon,
.ef-footer li .link-icon {
    display: none !important;
}

/* Remove yellow circle/icon wrappers before footer links */
.ef-footer li a > span:first-child,
.ef-footer li > span:first-child {
    display: none !important;
}

/* Make footer links plain bullet style */
.ef-footer li {
    list-style: none !important;
    position: relative !important;
    padding-left: 14px !important;
    margin-bottom: 16px !important;
}

.ef-footer li::before {
    content: "•" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: rgba(255,255,255,0.55) !important;
    font-size: 15px !important;
}

/* Reset link spacing after icon removal */
.ef-footer li a {
    display: inline !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    gap: 0 !important;
}