/* ============================================================
   EDURO EMPLOYERS — Modern Design System
   Scoped under .eduro-employers — zero conflict with legacy CSS
   ============================================================ */

.eduro-employers {
    --ef-primary:        #DE6B3B;
    --ef-secondary:      #F2943C;
    --ef-gradient:       linear-gradient(135deg, #DE6B3B 0%, #F2943C 100%);
    --ef-gradient-dark:  linear-gradient(135deg, #c95e32 0%, #e0852e 100%);
    --ef-gradient-soft:  linear-gradient(135deg, rgba(222,107,59,.08) 0%, rgba(242,148,60,.08) 100%);
    --ef-primary-light:  rgba(222,107,59,.25);
    --ef-text-dark:      #1a1a2e;
    --ef-text-med:       #4a4a6a;
    --ef-text-muted:     #8a8aaa;
    --ef-text-light:     #aaaacc;
    --ef-bg-white:       #ffffff;
    --ef-bg-light:       #f8f7ff;
    --ef-border:         #e8e8f0;
    --ef-border-light:   #f0f0f8;
    --ef-r-sm:           8px;
    --ef-r-md:           12px;
    --ef-r-lg:           16px;
    --ef-r-xl:           20px;
    --ef-r-2xl:          28px;
    --ef-r-pill:         50px;
    --ef-shadow-xs:      0 1px 4px rgba(0,0,0,.06);
    --ef-shadow-sm:      0 2px 12px rgba(0,0,0,.08);
    --ef-shadow-md:      0 4px 24px rgba(0,0,0,.10);
    --ef-shadow-lg:      0 8px 40px rgba(0,0,0,.14);
    --ef-shadow-xl:      0 16px 64px rgba(0,0,0,.16);
    --ef-trans:          .22s ease;
    font-family: 'DM Sans', 'Nunito Sans', sans-serif;
    color: var(--ef-text-dark);
}

/* ============================================
   SHARED UTILITIES
   ============================================ */
.eduro-employers *,
.eduro-employers *::before,
.eduro-employers *::after { box-sizing: border-box; }

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

.ef-section { padding: 80px 0; }

.ef-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--ef-gradient-soft);
    border: 1px solid var(--ef-primary-light);
    border-radius: var(--ef-r-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--ef-primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
}
.ef-badge--white {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

.ef-heading {
    font-size: clamp(26px,4vw,46px);
    font-weight: 800;
    color: var(--ef-text-dark);
    line-height: 1.14;
    margin: 0 0 16px;
}
.ef-heading--center { text-align: center; }

.ef-subheading {
    font-size: 17px;
    color: var(--ef-text-med);
    line-height: 1.6;
    margin: 0 0 12px;
    max-width: 680px;
}

.ef-intro { margin-bottom: 48px; }
.ef-intro--center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* Buttons */
.ef-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--ef-r-pill);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--ef-trans);
    cursor: pointer;
    border: none;
    line-height: 1;
}
.ef-btn--primary {
    background: var(--ef-gradient);
    color: #fff;
    box-shadow: 0 4px 18px rgba(222,107,59,.35);
}
.ef-btn--primary:hover {
    background: var(--ef-gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(222,107,59,.50);
    color: #fff;
}
.ef-btn--primary-hero {
    background: #fff;
    color: var(--ef-primary);
    border: 2px solid #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.ef-btn--primary-hero:hover {
    background: rgba(255,255,255,.90);
    color: var(--ef-primary);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,0,0,.20);
}
.ef-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.65);
}
.ef-btn--outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}
.ef-btn--ghost {
    background: var(--ef-gradient-soft);
    color: var(--ef-primary);
    border: 1.5px solid var(--ef-primary-light);
}
.ef-btn--ghost:hover {
    background: var(--ef-gradient);
    color: #fff;
    border-color: transparent;
}
.ef-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* ============================================
   HERO
   ============================================ */
.ef-hero {
    position: relative;
    padding: 80px 0 0;
    background: var(--ef-gradient);
    overflow: hidden;
}
.ef-hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.ef-hero__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    animation: efFloat 22s ease-in-out infinite;
}
.ef-hero__shape--1 { width: 520px; height: 520px; top: -200px; right: -120px; animation-delay: 0s; }
.ef-hero__shape--2 { width: 300px; height: 300px; bottom: -100px; left: 5%; animation-delay: -8s; animation-direction: reverse; }
@keyframes efFloat {
    0%,100% { transform: translate(0,0) rotate(0deg); }
    33%      { transform: translate(24px,-24px) rotate(120deg); }
    66%      { transform: translate(-16px,16px) rotate(240deg); }
}

.ef-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 40px;
    align-items: flex-end;
}
.ef-hero__content { padding-bottom: 80px; max-width: 660px; }

.ef-hero__title {
    font-size: clamp(30px,4.5vw,56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 18px;
}
.ef-hero__text {
    font-size: 17px;
    color: rgba(255,255,255,.88);
    line-height: 1.6;
    margin: 0;
}
.ef-hero__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,.80);
}
.ef-hero__note i { color: rgba(255,255,255,.9); }

/* Hero image column */
.ef-hero__img-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: -1px;
}
.ef-hero__img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,.05) 55%, transparent 75%);
    z-index: 0;
}
.ef-hero__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    width: 310px; height: 310px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.18);
    z-index: 0;
    animation: efPulse 3.5s ease-in-out infinite;
}
@keyframes efPulse {
    0%,100% { transform: translateX(-50%) scale(1);    opacity: .6; }
    50%      { transform: translateX(-50%) scale(1.05); opacity: 1; }
}
.ef-hero__img {
    position: relative;
    z-index: 1;
    height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 28px 56px rgba(0,0,0,.26));
    display: block;
}
.ef-hero__stat {
    position: absolute;
    bottom: 52px; left: -12px;
    z-index: 3;
    background: #fff;
    border-radius: var(--ef-r-pill);
    padding: 10px 18px 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.16);
    animation: efBobble 4s ease-in-out infinite;
}
@keyframes efBobble {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.ef-hero__stat-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--ef-gradient);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ef-hero__stat-icon i { font-size: 15px; color: #fff; }
.ef-hero__stat-num { font-size: 16px; font-weight: 800; color: var(--ef-text-dark); display: block; line-height: 1.2; }
.ef-hero__stat-label { font-size: 11px; color: var(--ef-text-muted); text-transform: uppercase; letter-spacing: .05em; display: block; }

/* ============================================
   BRANDS
   ============================================ */
.ef-brands {
    padding: 52px 0 56px;
    background: linear-gradient(135deg, #fdf6f2 0%, #fff8f4 50%, #fdf6f2 100%);
    position: relative;
}
.ef-brands::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ef-gradient);
    opacity: .35;
}
.ef-brands .owl-carousel .single-brand {
    display: flex; align-items: center; justify-content: center;
    padding: 8px 16px;
}
.ef-brands .owl-carousel .single-brand a {
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid rgba(222,107,59,.12);
    border-radius: 14px;
    padding: 14px 24px;
    width: 100%; min-height: 80px;
    box-shadow: 0 2px 10px rgba(222,107,59,.06);
    transition: all var(--ef-trans);
}
.ef-brands .owl-carousel .single-brand a:hover {
    border-color: var(--ef-primary-light);
    box-shadow: 0 6px 20px rgba(222,107,59,.14);
    transform: translateY(-3px);
}
.ef-brands .owl-carousel .single-brand img {
    max-height: 56px; max-width: 130px;
    width: auto; object-fit: contain;
    filter: grayscale(20%) opacity(.85);
    transition: filter var(--ef-trans);
}
.ef-brands .owl-carousel .single-brand a:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ============================================
   FLIP CARDS — Light modern design
   ============================================ */
.ef-flip {
    padding: 96px 0;
    background: linear-gradient(160deg, #fff8f5 0%, #fff 50%, #fff8f5 100%);
    position: relative;
    /* NO overflow:hidden — breaks preserve-3d in Chromium/Safari */
    overflow: visible;
}
.ef-flip::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(222,107,59,.07) 0%, transparent 70%);
    pointer-events: none;
}

.ef-flip .ef-intro { position: relative; z-index: 1; }

/* Counter auto-numbering */
.ef-flip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /* No position/z-index — stacking context breaks preserve-3d on children */
    counter-reset: ef-cards;
}
.ef-flip__item {
    height: 200px;
    /* No perspective here — item has animation transform, combining both breaks preserve-3d */
    counter-increment: ef-cards;
}
.ef-flip__inner {
    width: 100%; height: 100%;
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    -webkit-transition: -webkit-transform .6s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border-radius: 20px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
/* perspective() built into the transform so it works independently of parent */
.ef-flip__item:hover .ef-flip__inner,
.ef-flip__item:focus-within .ef-flip__inner {
    transform: perspective(1200px) rotateY(180deg);
}

.ef-flip__front,
.ef-flip__back {
    position: absolute; inset: 0;
    border-radius: 20px;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 22px 24px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* NO overflow:hidden here — that breaks 3D in some browsers */
}

/* Front: clean white card */
.ef-flip__front {
    background: #fff;
    border: 1.5px solid var(--ef-border);
    box-shadow: 0 4px 20px rgba(222,107,59,.08);
    color: var(--ef-text-dark);
}
/* Ghost number top-right */
.ef-flip__front::before {
    content: "0" counter(ef-cards);
    position: absolute;
    top: -8px; right: 12px;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    background: var(--ef-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .12;
    pointer-events: none;
    letter-spacing: -3px;
}
/* Orange bottom line on hover */
.ef-flip__front::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ef-gradient);
    border-radius: 0 0 18px 18px;
    opacity: 0;
    transition: opacity .25s ease;
}
.ef-flip__item:hover .ef-flip__front::after { opacity: 1; }

.ef-flip__front p {
    font-size: 15px; font-weight: 700;
    color: var(--ef-text-dark);
    margin: 0; line-height: 1.4;
    position: relative; z-index: 1;
}

/* Icon */
.ef-flip__icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--ef-gradient);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(222,107,59,.35);
    position: relative; z-index: 1;
}
.ef-flip__icon i { color: #fff; font-size: 17px; }

/* Back: orange gradient */
.ef-flip__back {
    background: var(--ef-gradient);
    transform: rotateY(180deg);
    box-shadow: 0 8px 32px rgba(222,107,59,.35);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 22px;
}
.ef-flip__back p {
    font-size: 15px; font-weight: 700;
    color: #fff;
    margin: 0; line-height: 1.55;
}

/* Staggered entrance on the ITEM (not the inner) — keeps flip free */
.ef-flip__item:nth-child(1) { animation: efCardIn .45s .05s both; }
.ef-flip__item:nth-child(2) { animation: efCardIn .45s .12s both; }
.ef-flip__item:nth-child(3) { animation: efCardIn .45s .19s both; }
.ef-flip__item:nth-child(4) { animation: efCardIn .45s .26s both; }
.ef-flip__item:nth-child(5) { animation: efCardIn .45s .33s both; }
.ef-flip__item:nth-child(6) { animation: efCardIn .45s .40s both; }
@keyframes efCardIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FEATURE (Block 3)
   ============================================ */
.ef-feature {
    padding: 80px 0;
    background: var(--ef-bg-light);
}
.ef-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.ef-feature__img-wrap {
    margin: 20px 0;
    border-radius: var(--ef-r-xl);
    overflow: hidden;
    box-shadow: var(--ef-shadow-md);
}
.ef-feature__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.ef-feature__img-wrap:hover .ef-feature__img { transform: scale(1.03); }
.ef-feature__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--ef-text-dark);
    margin: 0 0 10px;
}
.ef-feature__text {
    font-size: 15px;
    color: var(--ef-text-med);
    line-height: 1.7;
    margin: 0 0 24px;
}
/* Info boxes on the right */
.ef-feature__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 12px;
}
.ef-feature__box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--ef-bg-white);
    border: 1px solid var(--ef-border);
    border-radius: var(--ef-r-lg);
    padding: 20px 22px;
    box-shadow: var(--ef-shadow-xs);
    transition: all var(--ef-trans);
}
.ef-feature__box:hover {
    border-color: var(--ef-primary-light);
    box-shadow: var(--ef-shadow-sm);
    transform: translateX(4px);
}
.ef-feature__box-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: var(--ef-r-md);
    background: var(--ef-gradient-soft);
    display: flex; align-items: center; justify-content: center;
}
.ef-feature__box-icon i { color: var(--ef-primary); font-size: 18px; }
.ef-feature__box h4 {
    font-size: 15px; font-weight: 700;
    color: var(--ef-text-dark);
    margin: 0 0 4px;
}
.ef-feature__box p {
    font-size: 13px;
    color: var(--ef-text-med);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   BANNER (Block 4)
   ============================================ */
.ef-banner {
    padding: 0 0 80px;
    background: var(--ef-bg-light);
}
.ef-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    background: var(--ef-gradient);
    border-radius: var(--ef-r-2xl);
    padding: 52px 56px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 48px rgba(222,107,59,.30);
}
.ef-banner__inner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
}
.ef-banner__title {
    font-size: clamp(22px,3.5vw,38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 12px;
}
.ef-banner__text {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    margin: 0;
}
.ef-banner__img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.2));
    position: relative;
    z-index: 1;
}

/* ============================================
   STATS (Block 5) — Glass cards on gradient
   ============================================ */
.ef-stats {
    padding: 0;
    background: var(--ef-bg-white);
}
.ef-stats__video {
    margin: 0 auto;
    max-width: 720px;
    border-radius: var(--ef-r-xl);
    overflow: hidden;
    box-shadow: var(--ef-shadow-lg);
    padding: 0 24px 64px;
}
.ef-stats__video video { width: 100%; display: block; }

/* Full-width orange banner */
.ef-stats__band {
    background: linear-gradient(135deg, #c95e32 0%, #DE6B3B 40%, #F2943C 100%);
    position: relative;
    overflow: hidden;
    padding: 72px 24px;
}
.ef-stats__band::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    top: -280px; right: -100px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}
.ef-stats__band::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    bottom: -160px; left: -40px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}

.ef-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Glass card per stat */
.ef-stats__item {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background .25s ease, transform .25s ease;
    /* Stagger in */
    opacity: 0;
    transform: translateY(20px);
}
.ef-stats__item.ef-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease, background .25s ease;
}
.ef-stats__item:nth-child(1).ef-visible { transition-delay: 0s; }
.ef-stats__item:nth-child(2).ef-visible { transition-delay: .1s; }
.ef-stats__item:nth-child(3).ef-visible { transition-delay: .2s; }
.ef-stats__item:nth-child(4).ef-visible { transition-delay: .3s; }
.ef-stats__item:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-4px);
}

.ef-stats__num {
    display: block;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}
.ef-stats__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px;
}
.ef-stats__desc {
    font-size: 13px;
    color: rgba(255,255,255,.88);
    line-height: 1.5;
    margin: 0;
}
.ef-stats__quote {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;
    padding: 3px 12px;
    letter-spacing: .04em;
}

/* ============================================
   STORIES SLIDER (Block 6) — Horizontal cards
   ============================================ */
.ef-stories {
    padding: 80px 0;
    background: var(--ef-bg-white);
}
/* Horizontal card: image left, text right */
.ef-stories__card {
    background: var(--ef-bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
    border: 1.5px solid var(--ef-border);
    margin: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
    transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.ef-stories__card:hover {
    box-shadow: 0 8px 36px rgba(222,107,59,.14);
    border-color: rgba(222,107,59,.3);
    transform: translateY(-3px);
}
/* Left: image fills full height */
.ef-stories__img-wrap {
    overflow: hidden;
    background: var(--ef-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1.5px solid var(--ef-border);
}
.ef-stories__img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    display: block;
    transition: transform .5s ease;
}
.ef-stories__card:hover .ef-stories__img { transform: scale(1.03); }
/* Right: content */
.ef-stories__content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ef-stories__meta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700;
    color: var(--ef-primary);
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 12px;
}
.ef-stories__meta i { font-size: 10px; }
.ef-stories__name {
    font-size: 20px; font-weight: 800;
    color: var(--ef-text-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}
.ef-stories__text {
    font-size: 14px; color: var(--ef-text-med);
    line-height: 1.65; margin: 0;
}
.ef-stories__cta { text-align: center; margin-top: 44px; }

/* Owl nav for stories — below cards */
.eduro-employers .interview__active.owl-carousel {
    padding-bottom: 64px;
}
.eduro-employers .interview__active .owl-nav {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    position: absolute !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    top: auto !important;
}
.eduro-employers .interview__active .owl-nav .owl-prev,
.eduro-employers .interview__active .owl-nav .owl-next {
    position: static !important;
}
.eduro-employers .interview__active .owl-nav button i,
.eduro-employers .interview__active .owl-nav button span {
    width: 42px !important; height: 42px !important;
    border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    background: var(--ef-bg-white) !important;
    color: var(--ef-primary) !important;
    border: 1.5px solid rgba(222,107,59,.3) !important;
    box-shadow: 0 2px 8px rgba(222,107,59,.1) !important;
    transition: all var(--ef-trans) !important;
    font-size: 16px !important;
}
.eduro-employers .interview__active .owl-nav button:hover i,
.eduro-employers .interview__active .owl-nav button:hover span {
    background: var(--ef-primary) !important;
    color: #fff !important;
    border-color: var(--ef-primary) !important;
}

/* ============================================
   PLANS
   ============================================ */
.ef-plans {
    padding: 80px 0;
    background: var(--ef-bg-white);
}
.ef-plans__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.ef-plans__tab {
    padding: 10px 24px;
    border-radius: var(--ef-r-pill);
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid var(--ef-border);
    background: var(--ef-bg-white);
    color: var(--ef-text-med);
    cursor: pointer;
    transition: all var(--ef-trans);
}
.ef-plans__tab.active,
.ef-plans__tab:hover {
    background: var(--ef-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(222,107,59,.3);
}
.ef-plans__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: var(--ef-bg-light);
    border-radius: var(--ef-r-2xl);
    padding: 48px 52px;
    border: 1px solid var(--ef-border);
    box-shadow: var(--ef-shadow-sm);
}
.ef-plans__label {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--ef-primary); margin: 0 0 8px;
}
.ef-plans__name {
    font-size: 26px; font-weight: 800;
    color: var(--ef-text-dark); margin: 0 0 16px;
}
.ef-plans__price {
    margin-bottom: 20px;
    display: flex; align-items: baseline; gap: 4px;
}
.ef-plans__price-amount {
    font-size: 48px; font-weight: 900;
    background: var(--ef-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.ef-plans__price-period {
    font-size: 16px; color: var(--ef-text-muted); font-weight: 600;
}
.ef-plans__price-text {
    font-size: 28px; font-weight: 800; color: var(--ef-primary);
}
.ef-plans__perks {
    list-style: none; padding: 0; margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 8px;
}
.ef-plans__perks li {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--ef-text-med);
}
.ef-plans__perks li i { color: var(--ef-primary); flex-shrink: 0; }
.ef-plans__desc {
    font-size: 14px; color: var(--ef-text-med);
    line-height: 1.6; margin: 0 0 24px;
}
.ef-plans__features-title {
    font-size: 14px; font-weight: 700;
    color: var(--ef-text-dark);
    text-transform: uppercase; letter-spacing: .06em;
    margin: 0 0 16px;
}
.ef-plans__features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.ef-plans__features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--ef-text-med); line-height: 1.5;
}
.ef-plans__features li i { color: var(--ef-primary); flex-shrink: 0; margin-top: 2px; }

/* ============================================
   TALENTS TICKER
   ============================================ */
.ef-talents {
    padding: 80px 0 0;
    background: var(--ef-bg-light);
    overflow: hidden;
}
.ef-talents .ef-heading--center { margin-bottom: 48px; }

/* Reuse ticker-wrap from old CSS — just override the card design */
.eduro-employers .ticker-wrap { overflow: hidden; padding: 0 0 80px; }

.ef-talent-card {
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    background: var(--ef-bg-white);
    border: 1px solid var(--ef-border);
    border-radius: var(--ef-r-xl);
    padding: 16px 20px;
    margin: 0 10px;
    min-width: 220px;
    max-width: 280px;
    box-shadow: var(--ef-shadow-xs);
    vertical-align: middle;
}
.ef-talent-card__avatar {
    position: relative;
    flex-shrink: 0;
}
.ef-talent-card__avatar img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(222,107,59,.25);
    display: block;
}
.ef-talent-card__check {
    position: absolute;
    bottom: -2px; right: -2px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--ef-gradient);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}
.ef-talent-card__check i { font-size: 8px; color: #fff; }
.ef-talent-card__body h4 {
    font-size: 14px; font-weight: 700;
    color: var(--ef-text-dark); margin: 0 0 2px;
}
.ef-talent-card__role {
    font-size: 12px; color: var(--ef-primary);
    font-weight: 600; margin: 0 0 6px;
}
.ef-talent-card__langs {
    display: flex; flex-wrap: wrap; gap: 4px;
    margin-bottom: 6px;
}
.ef-talent-card__langs span {
    font-size: 10px; font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--ef-r-pill);
    background: var(--ef-gradient-soft);
    border: 1px solid var(--ef-primary-light);
    color: var(--ef-primary);
}
.ef-talent-card__location {
    font-size: 11px; color: var(--ef-text-muted);
    display: flex; align-items: center; gap: 4px;
    margin: 0;
}
.ef-talent-card__location i { color: var(--ef-primary); font-size: 10px; }

/* ============================================
   FAQ
   ============================================ */
.ef-faq {
    padding: 80px 0;
    background: var(--ef-bg-white);
}
.ef-faq__list { margin-top: 40px; }
.ef-faq__item {
    background: var(--ef-bg-white);
    border: 1px solid var(--ef-border);
    border-radius: var(--ef-r-md);
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: var(--ef-shadow-xs);
    transition: box-shadow var(--ef-trans);
}
.ef-faq__item:hover { box-shadow: var(--ef-shadow-sm); }
.ef-faq__item .accordion-button {
    font-family: inherit;
    font-size: 15px; font-weight: 700;
    color: var(--ef-text-dark);
    background: var(--ef-bg-white);
    padding: 18px 24px;
    box-shadow: none;
}
.ef-faq__item .accordion-button:not(.collapsed) {
    color: var(--ef-primary);
    background: var(--ef-gradient-soft);
    box-shadow: none;
}
.ef-faq__item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DE6B3B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.ef-faq__item .accordion-body {
    font-size: 14px;
    color: var(--ef-text-med);
    line-height: 1.7;
    padding: 16px 24px 20px;
}

/* ============================================
   OWL DOTS
   ============================================ */
.eduro-employers .owl-dot span {
    background: var(--ef-border) !important;
    width: 8px !important; height: 8px !important;
    border-radius: 50% !important;
    transition: all var(--ef-trans) !important;
}
.eduro-employers .owl-dot.active span {
    background: var(--ef-primary) !important;
    width: 22px !important;
    border-radius: 4px !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .ef-hero__inner { grid-template-columns: 1fr 360px; }
    .ef-hero__img { height: 420px; }
    .ef-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .ef-plans__body { padding: 36px 40px; }
}
@media (max-width: 900px) {
    .ef-hero { padding: 64px 0 0; }
    .ef-hero__inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
    .ef-hero__content { padding-bottom: 40px; }
    .ef-hero__img-wrap { margin: 0 auto; max-width: 300px; }
    .ef-hero__img { height: 300px; }
    .ef-hero__img-wrap::before { width: 260px; height: 260px; }
    .ef-hero__img-wrap::after { display: none; }
    .ef-hero__stat { left: 0; bottom: 28px; }
    .ef-btn-group { justify-content: center; }
    .ef-feature__grid { grid-template-columns: 1fr; gap: 40px; }
    .ef-banner__inner { grid-template-columns: 1fr; text-align: center; }
    .ef-banner__img { margin: 20px auto 0; }
    .ef-plans__body { grid-template-columns: 1fr; }
    .ef-flip__grid { grid-template-columns: repeat(2, 1fr); }
    .ef-flip__item { height: 210px; }
    /* Stories: stack on tablet */
    .ef-stories__card { grid-template-columns: 1fr; min-height: auto; }
    .ef-stories__img-wrap { border-right: none; border-bottom: 1.5px solid var(--ef-border); max-height: 280px; }
    .ef-stories__img { max-height: 240px; }
}
@media (max-width: 640px) {
    .ef-hero { padding: 48px 0 0; }
    .ef-hero__title { font-size: 28px; }
    .ef-hero__img { height: 240px; }
    .ef-hero__img-wrap { max-width: 240px; }
    .ef-hero__stat { left: -8px; bottom: 20px; }
    .ef-btn-group { flex-direction: column; align-items: stretch; }
    .ef-btn-group .ef-btn { width: 100%; justify-content: center; }
    .ef-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ef-stats__band { padding: 48px 16px; }
    .ef-banner__inner { padding: 36px 28px; }
    .ef-plans__body { padding: 28px 24px; }
    .ef-flip__grid { grid-template-columns: 1fr; }
    .ef-flip__item { height: 180px; }
    .ef-container { padding: 0 16px; }
    .ef-stories__content { padding: 24px 20px; }
}
@media (max-width: 420px) {
    .ef-hero__stat { display: none; }
    .ef-stats__grid { grid-template-columns: 1fr; gap: 12px; }
    .ef-stats__item { min-height: 120px; padding: 24px 20px; }
}

/* ============================================
   MOBILE REFINEMENTS — extended breakpoints
   ============================================ */

/* Better tap highlight + scroll */
.eduro-employers {
    -webkit-tap-highlight-color: rgba(222,107,59,.15);
    scroll-behavior: smooth;
}

/* ---- Fix iOS fixed backgrounds ---- */
@media (max-width: 900px) {
    .ef-stats__band { background-attachment: scroll; }
}

/* ---- 768px: refined tablet ---- */
@media (max-width: 768px) {
    .ef-hero { padding: 56px 0 0; }
    .ef-hero__title { font-size: clamp(26px,6.5vw,40px); }
    .ef-hero__content { padding-bottom: 40px; max-width: 100%; }

    /* Section padding */
    .ef-flip, .ef-feature, .ef-stories, .ef-plans, .ef-talents, .ef-faq { padding: 64px 0; }
    .ef-banner { padding: 0 0 64px; }
    .ef-stats { padding-bottom: 0; }

    /* Flip: 2 columns, slightly taller */
    .ef-flip__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ef-flip__item { height: 200px; }

    /* Feature */
    .ef-feature__grid { grid-template-columns: 1fr; gap: 36px; }
    .ef-feature__box { padding: 18px 18px; }

    /* Stats */
    .ef-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ef-stats__band { padding: 60px 20px; }
    .ef-stats__num { font-size: clamp(36px,7vw,52px); }

    /* Plans tabs: scrollable */
    .ef-plans__tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
        /* hide scrollbar but keep function */
        scrollbar-width: none;
    }
    .ef-plans__tabs::-webkit-scrollbar { display: none; }
    .ef-plans__tab { scroll-snap-align: start; white-space: nowrap; flex-shrink: 0; }

    /* Stories card: stacked */
    .ef-stories__card { grid-template-columns: 1fr; min-height: auto; }
    .ef-stories__img-wrap { border-right: none; border-bottom: 1.5px solid var(--ef-border); max-height: 240px; }
    .ef-stories__content { padding: 24px 22px; }

    /* Ticker: comfortable on tablet */
    .ef-talent-card { width: 200px; padding: 18px 16px; }
}

/* ---- 640px: smartphone portrait ---- */
@media (max-width: 640px) {
    .ef-container { padding: 0 18px; }

    /* Hero */
    .ef-hero { padding: 40px 0 0; }
    .ef-hero__title { font-size: clamp(22px,8vw,32px); line-height: 1.15; }
    .ef-hero__text { font-size: 15px; }
    .ef-hero__content { padding-bottom: 32px; }

    /* Hero image: remove glow rings on small screens for performance */
    .ef-hero__img-wrap::before { width: 200px; height: 200px; }
    .ef-hero__img { height: 220px; }
    .ef-hero__img-wrap { max-width: 220px; }

    /* Hero stat: static, not absolute */
    .ef-hero__stat {
        position: static;
        display: inline-flex;
        margin: 12px auto 0;
        animation: none;
        box-shadow: 0 4px 16px rgba(0,0,0,.14);
    }

    /* Buttons: full width */
    .ef-btn { padding: 14px 24px; min-height: 48px; font-size: 15px; }
    .ef-btn-group { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 18px; }
    .ef-btn-group .ef-btn { width: 100%; justify-content: center; }

    /* Headings */
    .ef-heading { font-size: clamp(21px,6.5vw,28px); }
    .ef-subheading { font-size: 15px; }
    .ef-intro { margin-bottom: 28px; }

    /* Badges */
    .ef-badge { font-size: 11px; padding: 5px 12px; }

    /* Section padding: tighter */
    .ef-flip { padding: 52px 0; }
    .ef-feature { padding: 48px 0; }
    .ef-banner { padding: 0 0 48px; }
    .ef-stories { padding: 48px 0; }
    .ef-plans { padding: 48px 0; }
    .ef-talents { padding: 48px 0; }
    .ef-faq { padding: 48px 0; }

    /* Brands */
    .ef-brands { padding: 32px 0 36px; }
    .ef-brands .owl-carousel .single-brand a { min-height: 64px; padding: 10px 16px; }
    .ef-brands .owl-carousel .single-brand img { max-height: 44px; }

    /* Flip cards: single column, shorter, no perspective flip */
    .ef-flip__grid { grid-template-columns: 1fr; gap: 12px; }
    .ef-flip__item {
        height: auto;
        min-height: 100px;
    }
    /* On mobile: disable the 3D flip, show both sides stacked in one card */
    .ef-flip__inner {
        transform-style: flat;
        -webkit-transform-style: flat;
        transform: none !important;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        border-radius: 16px;
        overflow: hidden;
    }
    .ef-flip__front,
    .ef-flip__back {
        position: static;
        height: auto;
        min-height: 80px;
        border-radius: 0;
        padding: 20px 20px;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
    }
    .ef-flip__front { border-radius: 16px 16px 0 0; }
    .ef-flip__back {
        transform: none;
        border-radius: 0 0 16px 16px;
        align-items: flex-start;
        text-align: left;
        padding: 16px 20px;
        min-height: 64px;
    }
    .ef-flip__front::before { font-size: 64px; }
    .ef-flip__icon { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 10px; }

    /* Feature */
    .ef-feature__grid { gap: 28px; }
    .ef-feature__img { height: 200px; }
    .ef-feature__box { padding: 16px 16px; }
    .ef-feature__box-icon { width: 38px; height: 38px; }
    /* Remove hover translate on touch */
    .ef-feature__box:hover { transform: none; }
    .ef-feature__box:active {
        border-color: var(--ef-primary-light);
        box-shadow: var(--ef-shadow-sm);
        transform: none;
    }

    /* Banner inner */
    .ef-banner__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        border-radius: var(--ef-r-xl);
        gap: 24px;
    }
    .ef-banner__title { font-size: clamp(20px,6vw,28px); }
    .ef-banner__text { font-size: 14px; }
    .ef-banner__img { max-height: 140px; margin: 0 auto; }

    /* Stats */
    .ef-stats__band { padding: 44px 14px; }
    .ef-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ef-stats__item { padding: 24px 16px; min-height: 130px; }
    .ef-stats__num { font-size: clamp(30px,8vw,46px); letter-spacing: 0; }
    .ef-stats__desc { font-size: 12px; }

    /* Stories */
    .ef-stories__card { border-radius: 16px; margin: 6px; }
    .ef-stories__img-wrap { max-height: 200px; padding: 16px; }
    .ef-stories__img { max-height: 180px; }
    .ef-stories__content { padding: 20px 18px; }
    .ef-stories__name { font-size: 16px; }
    .ef-stories__text { font-size: 13px; }
    .ef-stories__cta { margin-top: 24px; text-align: center; }

    /* Plans */
    .ef-plans__tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scrollbar-width: none;
        gap: 8px;
    }
    .ef-plans__tabs::-webkit-scrollbar { display: none; }
    .ef-plans__tab { white-space: nowrap; flex-shrink: 0; padding: 10px 20px; font-size: 14px; }
    .ef-plans__body { padding: 24px 20px; }
    .ef-plans__name { font-size: 22px; }
    .ef-plans__price-amount { font-size: 40px; }
    .ef-plans__perks li { font-size: 13px; }
    .ef-plans__features-title { font-size: 14px; }
    .ef-plans__features li { font-size: 13px; }

    /* Talents ticker: narrower cards */
    .ef-talent-card { width: 175px; padding: 16px 14px; border-radius: 14px; }
    .ef-talent-card__avatar { width: 44px; height: 44px; }
    .ef-talent-card__body h4 { font-size: 13px; }
    .ef-talent-card__role { font-size: 11px; }
    .ef-talent-card__langs span { font-size: 10px; padding: 2px 6px; }

    /* FAQ */
    .ef-faq__list { margin-top: 24px; }
    .ef-faq__item { margin-bottom: 8px; }
    .ef-faq__item .accordion-button { font-size: 14px; padding: 14px 18px; }
    .ef-faq__item .accordion-body { padding: 12px 18px 18px; font-size: 13px; }
}

/* ---- 420px / tiny phones ---- */
@media (max-width: 420px) {
    .ef-container { padding: 0 14px; }
    .ef-hero { padding: 32px 0 0; }
    .ef-hero__title { font-size: 21px; }
    .ef-hero__img { height: 180px; }
    .ef-hero__img-wrap { max-width: 180px; }
    .ef-hero__img-wrap::before { width: 160px; height: 160px; }
    .ef-heading { font-size: 20px; }

    /* Stats: 1 column on tiny */
    .ef-stats__grid { grid-template-columns: 1fr; gap: 8px; }
    .ef-stats__item { min-height: 110px; padding: 20px 14px; }
    .ef-stats__num { font-size: 36px; }

    /* Flip: even more compact */
    .ef-flip__front, .ef-flip__back { padding: 16px; }

    /* Banner */
    .ef-banner__inner { padding: 28px 18px; border-radius: var(--ef-r-lg); }

    /* Plans */
    .ef-plans__body { padding: 20px 16px; }
}

/* ---- prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
    .ef-hero__shape,
    .ef-hero__img-wrap::after,
    .ef-hero__stat,
    .ef-flip__item,
    .ticker, .ticker2 { animation: none; }
    .ef-flip__inner { transition: none; }
    .ef-stats__item { transition: none; opacity: 1; transform: none; }
}

/* ============================================
   CUSTOM PLAN PANES (ersetzt Bootstrap tab-pane)
   ============================================ */
.ef-plans__tab-content { position: relative; }
.ef-plans__pane {
    display: none;
}
.ef-plans__pane--active {
    display: block;
    animation: efPaneFadeIn .25s ease;
}
@keyframes efPaneFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FAQ – CUSTOM ACCORDION (ersetzt Bootstrap)
   ============================================ */
.ef-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--ef-text-dark);
    background: var(--ef-bg-white);
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    transition: color var(--ef-trans), background var(--ef-trans);
}
.ef-faq__question:hover,
.ef-faq__question--open {
    color: var(--ef-primary);
    background: var(--ef-gradient-soft);
}
.ef-faq__chevron {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--ef-primary);
    transition: transform .25s ease;
}
.ef-faq__question--open .ef-faq__chevron {
    transform: rotate(180deg);
}
.ef-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.ef-faq__answer-inner {
    font-size: 14px;
    color: var(--ef-text-med);
    line-height: 1.7;
    padding: 0 24px 20px;
}

/* ============================================
   PRICING OVERVIEW – 3-Spalten Preisblock
   ============================================ */
.ef-pricing-overview {
    padding: 80px 0;
    background: var(--ef-bg-light);
}
.ef-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.ef-pricing-card {
    background: var(--ef-bg-white);
    border: 1.5px solid var(--ef-border);
    border-radius: var(--ef-r-2xl);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    box-shadow: var(--ef-shadow-xs);
    transition: box-shadow var(--ef-trans), transform var(--ef-trans);
}
.ef-pricing-card:hover {
    box-shadow: var(--ef-shadow-md);
    transform: translateY(-4px);
}
.ef-pricing-card--featured {
    border-color: var(--ef-primary);
    box-shadow: 0 8px 32px rgba(222,107,59,.18);
}
.ef-pricing-card--featured:hover {
    box-shadow: 0 16px 48px rgba(222,107,59,.28);
}
.ef-pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ef-gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 14px;
    border-radius: var(--ef-r-pill);
    white-space: nowrap;
}
.ef-pricing-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--ef-r-lg);
    background: var(--ef-gradient-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--ef-primary);
    margin-bottom: 16px;
}
.ef-pricing-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ef-text-dark);
    margin: 0 0 16px;
}
.ef-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.ef-pricing-card__amount {
    font-size: 48px;
    font-weight: 900;
    background: var(--ef-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.ef-pricing-card__currency {
    font-size: 24px;
    font-weight: 800;
    color: var(--ef-primary);
    -webkit-text-fill-color: var(--ef-primary);
}
.ef-pricing-card__period {
    font-size: 14px;
    color: var(--ef-text-muted);
    font-weight: 600;
}
.ef-pricing-card__features {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.ef-pricing-card__features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--ef-text-med);
}
.ef-pricing-card__features li i {
    color: var(--ef-primary);
    flex-shrink: 0;
    font-size: 13px;
}
.ef-pricing-card__btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}
.ef-pricing-card__note {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--ef-text-muted);
    text-align: center;
}
.ef-pricing-note {
    text-align: center;
    margin-top: 36px;
    font-size: 13px;
    color: var(--ef-text-muted);
}
.ef-pricing-note i { color: var(--ef-primary); margin-right: 4px; }

/* Responsive Pricing */
@media (max-width: 900px) {
    .ef-pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .ef-pricing-overview { padding: 64px 0; }
}
@media (max-width: 480px) {
    .ef-pricing-card { padding: 28px 20px 24px; }
    .ef-pricing-card__amount { font-size: 38px; }
    .ef-faq__question { font-size: 14px; padding: 14px 18px; }
    .ef-faq__answer-inner { padding: 0 18px 16px; font-size: 13px; }
}
