.eeb-vs {
    --primary: #00092e;
    --primary-dark: #191048;
    --secondary: #35d2ed;
    --text: #2e2a4d;
    --muted: #6f6a89;
    --bg: #f5f1ff;
    --white: #ffffff;
    --line: #e7e1f7;
    --shadow: 0 20px 50px rgba(77, 48, 154, 0.12);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1240px;
}

body.eeb-vs-page {
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.eeb-vs,
.eeb-vs * {
    box-sizing: border-box;
}

.eeb-vs img {
    max-width: 100%;
    display: block;
}

.eeb-vs a {
    color: inherit;
    text-decoration: none;
}

.eeb-vs .container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.eeb-vs .section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.eeb-vs .section-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
    color: var(--secondary);
}

.eeb-vs .section-subtitle {
    text-align: center;
    color: #59627b;
    max-width: 860px;
    margin: 0 auto 50px;
    font-size: 1rem;
}

.eeb-vs .section > .container,
.eeb-vs .hero .container {
    position: relative;
    z-index: 2;
}

.eeb-vs .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 241, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(91, 76, 243, 0.08);
}

.eeb-vs .header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.eeb-vs .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.eeb-vs .logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.eeb-vs .nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.eeb-vs .nav a {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding: 4px 0;
}

.eeb-vs .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.eeb-vs .nav a:hover::after,
.eeb-vs .nav a:focus-visible::after {
    width: 100%;
}

.eeb-vs .mobile-menu-btn {
    display: none;
    border: 0;
    background: rgba(91, 76, 243, 0.1);
    color: var(--primary-dark);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
}

.eeb-vs .hero {
    background:
        radial-gradient(circle at 17% 38%, rgba(217, 10, 107, 0.185), transparent 12%),
        radial-gradient(circle at 58% 72%, rgba(49, 199, 209, 0.18), transparent 24%),
        linear-gradient(180deg, var(--bg) 0%, #f7f5ff 100%);
    overflow: hidden;
    padding: 60px 0 90px;
    position: relative;
}

.eeb-vs .hero::before,
.eeb-vs .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.eeb-vs .hero::before {
    width: 700px;
    height: 700px;
    right: -220px;
    top: -160px;
    border: 1px solid rgba(91, 76, 243, 0.1);
    box-shadow:
        0 0 0 40px rgba(91, 76, 243, 0.04),
        0 0 0 80px rgba(91, 76, 243, 0.03),
        0 0 0 120px rgba(91, 76, 243, 0.025);
}

.eeb-vs .hero::after {
    width: 540px;
    height: 540px;
    right: -140px;
    bottom: -250px;
    background: radial-gradient(circle, rgba(91, 76, 243, 0.08), rgba(91, 76, 243, 0.02), transparent 70%);
}

.eeb-vs .hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 40px;
    min-height: 680px;
    position: relative;
    z-index: 1;
}

.eeb-vs .hero-title {
    font-size: clamp(2.9rem, 7vw, 5.3rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #25195f;
    margin-bottom: 26px;
    max-width: 700px;
}

.eeb-vs .hero-title .accent {
    color: var(--secondary);
}

.eeb-vs .hero-text {
    max-width: 620px;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 34px;
}

.eeb-vs .hero-visual {
    position: relative;
    min-height: 680px;
}

.eeb-vs .hero-card,
.eeb-vs .hero-badge,
.eeb-vs .hero-square,
.eeb-vs .hero-chart,
.eeb-vs .hero-play {
    position: absolute;
}

.eeb-vs .hero-card {
    right: 10px;
    top: 130px;
    width: min(100%, 530px);
    height: 510px;
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: cardFloat 7s ease-in-out infinite;
}

.eeb-vs .hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eeb-vs .hero-square {
    top: 60px;
    right: 0;
    width: 170px;
    height: 170px;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: floatY 8s ease-in-out infinite 1s;
}

.eeb-vs .hero-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eeb-vs .hero-chart {
    right: -14px;
    bottom: 108px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: conic-gradient(var(--secondary) 0 115deg, rgba(221, 224, 239, 0.1) 115deg 360deg);
    box-shadow: var(--shadow);
    animation: rotateSlow 16s linear infinite, pulseSoft 5.5s ease-in-out infinite;
}

.eeb-vs .hero-chart::after {
    content: "";
    position: absolute;
    inset: 17px;
    border-radius: 50%;
    background: var(--bg);
}

.eeb-vs .hero-lines {
    position: absolute;
    left: 90px;
    top: 270px;
    width: 70px;
    height: 24px;
    opacity: 0.8;
    animation: shimmerWave 5s ease-in-out infinite;
}

.eeb-vs .hero-lines::before,
.eeb-vs .hero-lines::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 20%, rgba(255, 255, 255, 0.95) 20% 30%, transparent 30% 45%, rgba(255, 255, 255, 0.95) 45% 55%, transparent 55% 70%, rgba(255, 255, 255, 0.95) 70% 80%, transparent 80%);
    border-radius: 10px;
}

.eeb-vs .divider-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.eeb-vs .divider-title::before,
.eeb-vs .divider-title::after {
    content: "";
    height: 1px;
    background: var(--line);
}

.eeb-vs .divider-title span {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #312567;
}

.eeb-vs .quick-section {
    background: #fff;
}

.eeb-vs .quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.eeb-vs .quick-card,
.eeb-vs .tutorial-card,
.eeb-vs .req-item,
.eeb-vs .faq-wrap,
.eeb-vs .phone-wrap {
    position: relative;
    overflow: hidden;
}

.eeb-vs .quick-card {
    border-radius: 28px;
    padding: 34px 26px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    box-shadow: 0 14px 40px rgba(41, 29, 94, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eeb-vs .quick-card:hover,
.eeb-vs .tutorial-card:hover {
    transform: translateY(-8px);
}

.eeb-vs .quick-card:hover {
    box-shadow: 0 20px 50px rgba(41, 29, 94, 0.12);
}

.eeb-vs .quick-card:nth-child(1) {
    background: #eaf5f2;
}

.eeb-vs .quick-card:nth-child(2) {
    background: #f8f3e8;
}

.eeb-vs .quick-card:nth-child(3) {
    background: #efeafb;
}

.eeb-vs .quick-card::after,
.eeb-vs .tutorial-card::after,
.eeb-vs .req-item::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -50px;
    bottom: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
    transition: transform 0.35s ease;
    pointer-events: none;
}

.eeb-vs .quick-card:hover::after,
.eeb-vs .tutorial-card:hover::after,
.eeb-vs .req-item:hover::after {
    transform: scale(1.15) translate(-12px, -18px);
}

.eeb-vs .quick-icon {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    overflow: hidden;
    animation: softBob 5.5s ease-in-out infinite;
}

.eeb-vs .quick-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.eeb-vs .quick-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: #2c2557;
}

.eeb-vs .quick-card p {
    color: #63607b;
    max-width: 280px;
}

.eeb-vs .quick-card a {
    margin-top: auto;
    padding-top: 22px;
    font-weight: 700;
    color: var(--primary);
}

.eeb-vs .whatsapp-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.eeb-vs .whatsapp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.eeb-vs .whatsapp-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eeb-vs .whatsapp-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.eeb-vs .whatsapp-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: #00092e;
    margin-bottom: 30px;
    font-weight: 800;
}

.eeb-vs .whatsapp-btn-image {
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 14px;
}

.eeb-vs .whatsapp-btn-image:hover {
    transform: translateY(-4px);
}

.eeb-vs .whatsapp-btn-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.eeb-vs .tutorial-section {
    background: linear-gradient(180deg, #fcfbff 0%, #f7f5ff 100%);
}

.eeb-vs .tutorial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.eeb-vs .tutorial-card {
    flex: 0 0 calc((100% - 72px) / 4);
    max-width: calc((100% - 72px) / 4);
    background: #fff;
    border: 1px solid rgba(91, 76, 243, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(48, 32, 111, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eeb-vs .tutorial-card:hover {
    box-shadow: 0 18px 40px rgba(48, 32, 111, 0.1);
}

.eeb-vs .tutorial-card h3 {
    font-size: 1.12rem;
    line-height: 1.35;
    color: #25195f;
}

.eeb-vs .tutorial-card p {
    color: #65607a;
    font-size: 0.96rem;
}

.eeb-vs .tutorial-card .tutorial-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
}

.eeb-vs [class^="tutorial-thumb"] {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: transparent;
    font-weight: 800;
    background-size: cover;
    background-position: center;
    animation: softBob 7s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.eeb-vs [class^="tutorial-thumb"]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.eeb-vs .tutorial-thumb1 {
    background-image: url(https://virtualsupport.naturalenglish.com/wp-content/uploads/2026/04/01-zomm.png);
}

.eeb-vs .tutorial-thumb2 {
    background-image: url(https://virtualsupport.naturalenglish.com/wp-content/uploads/2026/04/02-reserva.png);
}

.eeb-vs .tutorial-thumb3 {
    background-image: url(https://virtualsupport.naturalenglish.com/wp-content/uploads/2026/04/03-cancelar.png);
}

.eeb-vs .tutorial-thumb4 {
    background-image: url(https://virtualsupport.naturalenglish.com/wp-content/uploads/2026/04/04-Dashboard.png);
}

.eeb-vs .tutorial-thumb5 {
    background-image: url(https://virtualsupport.naturalenglish.com/wp-content/uploads/2026/04/05-nplay.png);
}

.eeb-vs .tutorial-thumb6 {
    background-image: url(https://virtualsupport.naturalenglish.com/wp-content/uploads/2026/04/06-wp.png);
}

.eeb-vs .tutorial-thumb7 {
    background-image: url(https://virtualsupport.naturalenglish.com/wp-content/uploads/2026/04/07-app.png);
}

.eeb-vs .requirements-section {
    overflow: hidden;
    background: #fff;
}

.eeb-vs .requirements-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(198, 236, 253, 0.55), rgba(107, 220, 249, 0.89));
    clip-path: ellipse(85% 75% at 50% 100%);
    z-index: 0;
}

.eeb-vs .requirements-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 34px;
    margin-top: 56px;
}

.eeb-vs .req-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 10px;
}

.eeb-vs .req-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.eeb-vs .req-item h3 {
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 10px;
    color: #01132a;
}

.eeb-vs .req-item.req-small h3 {
    font-size: 1.35rem;
    color: #01132a;
    margin-top: 4px;
}

.eeb-vs .req-item p,
.eeb-vs .req-item ul {
    color: #6d6d73;
    font-size: 1rem;
}

.eeb-vs .req-item ul {
    list-style: none;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.eeb-vs .faq-section {
    background: #80e1fa;
}

.eeb-vs .faq-wrap,
.eeb-vs .phone-wrap {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(239, 245, 247, 0.63);
    padding: 22px;
    border-radius: 25px;
}

.eeb-vs .faq-wrap::before,
.eeb-vs .phone-wrap::before {
    content: "";
    position: absolute;
    inset: auto auto -60px -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 209, 237, 0.18), transparent 70%);
    animation: pulseSoft 8s ease-in-out infinite;
    pointer-events: none;
}

.eeb-vs .faq-list,
.eeb-vs .phone-list {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 25px;
}

.eeb-vs .faq-item,
.eeb-vs .phone-item {
    border-bottom: 1px solid #ececec;
    position: relative;
    overflow: hidden;
}

.eeb-vs .faq-item:last-child,
.eeb-vs .phone-item:last-child {
    border-bottom: 0;
}

.eeb-vs .faq-question,
.eeb-vs .phone-title {
    padding: 18px 22px;
    font-weight: 800;
    font-size: 1rem;
    color: #01113e;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.eeb-vs .faq-answer,
.eeb-vs .phone-content {
    max-height: 0;
    opacity: 0;
    padding: 0 22px;
    color: #666;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.22s ease;
}

.eeb-vs .faq-item.is-open .faq-answer,
.eeb-vs .phone-item.is-open .phone-content {
    max-height: 2000px;
    opacity: 1;
    padding: 0 22px 18px;
}

.eeb-vs .faq-item.is-open .faq-question,
.eeb-vs .phone-item.is-open .phone-title {
    color: #3654c5;
    background: #fff;
}

.eeb-vs .faq-answer p,
.eeb-vs .phone-content p,
.eeb-vs .phone-content a,
.eeb-vs .faq-answer a {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #666;
}

.eeb-vs .phone-content {
    display: block;
}

.eeb-vs .phone-content a:hover,
.eeb-vs .faq-answer a:hover {
    color: var(--primary);
}

.eeb-vs .flag-icon {
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.eeb-vs .phone-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 8px;
}

.eeb-vs .phone-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
    color: #6d6d73;
}

.eeb-vs .phone-table th,
.eeb-vs .phone-table td {
    border: 1px solid #d9d9d9;
    padding: 14px 16px;
    text-align: center;
    vertical-align: middle;
}

.eeb-vs .phone-table th {
    font-weight: 700;
    color: #7a7a7a;
    background: #f7f7f7;
}

.eeb-vs .phone-table td a {
    color: #149c5a;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.eeb-vs .phone-table td a:hover {
    color: #0f7d48;
}

.eeb-vs .phone-table td a.phone-whatsapp-link {
    color: #149c5a;
}

.eeb-vs .phone-table td a.phone-whatsapp-link i {
    font-size: 1.1rem;
    line-height: 1;
}

.eeb-vs .footer {
    padding: 34px 0 50px;
    background: #fff;
    border-top: 1px solid var(--line);
    text-align: center;
    color: #6e6888;
}

.eeb-vs-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1f155d 0%, #35d2ed 100%);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(24, 19, 82, 0.28);
    cursor: pointer;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.25s ease;
}

.eeb-vs-back-to-top span {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
}

.eeb-vs-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.eeb-vs-back-to-top:hover,
.eeb-vs-back-to-top:focus-visible {
    box-shadow: 0 24px 48px rgba(24, 19, 82, 0.34);
    transform: translateY(-2px);
}

.eeb-vs-back-to-top:focus-visible {
    outline: 3px solid rgba(53, 210, 237, 0.35);
    outline-offset: 3px;
}

.eeb-vs .decor-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.eeb-vs .decor {
    position: absolute;
    display: block;
    pointer-events: none;
    will-change: transform, opacity;
}

.eeb-vs .decor-circle {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.82), rgba(52, 209, 237, 0.974) 45%, rgba(13, 3, 92, 0.08) 100%);
    animation: floatY 9s ease-in-out infinite;
}

.eeb-vs .decor-circle.solid {
    background: linear-gradient(135deg, rgba(52, 209, 237, 0.24), rgba(193, 9, 122, 0.56));
    box-shadow: 0 18px 45px rgba(52, 209, 237, 0.12);
}

.eeb-vs .decor-ring,
.eeb-vs .decor-wave {
    border-radius: 50%;
    border: 1px solid rgba(0, 11, 65, 0.35);
}

.eeb-vs .decor-ring::before,
.eeb-vs .decor-ring::after,
.eeb-vs .decor-wave::before,
.eeb-vs .decor-wave::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 18px;
    border: 1px solid rgba(45, 4, 111, 0.26);
}

.eeb-vs .decor-ring::after,
.eeb-vs .decor-wave::after {
    inset: 36px;
    border-color: rgba(13, 3, 92, 0.12);
}

.eeb-vs .decor-ring {
    animation: rotateSlow 22s linear infinite;
}

.eeb-vs .decor-wave {
    animation: pulseSoft 7s ease-in-out infinite, driftXY 11s ease-in-out infinite;
}

.eeb-vs .decor-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, rgba(52, 209, 237, 0.61), rgba(13, 3, 92, 0.08));
    animation: floatSpin 13s ease-in-out infinite;
}

.eeb-vs .decor-dots {
    background-image: radial-gradient(rgba(52, 209, 237, 0.28) 1.8px, transparent 1.8px);
    background-size: 14px 14px;
    border-radius: 28px;
    opacity: 0.55;
    animation: driftXY 12s ease-in-out infinite;
}

.eeb-vs .decor-line-wave {
    width: 240px;
    height: 90px;
    opacity: 0.35;
    background:
        radial-gradient(circle at 0 100%, transparent 18px, rgba(52, 209, 237, 0.16) 19px, rgba(52, 209, 237, 0.16) 21px, transparent 22px) 0 0 / 60px 45px repeat-x,
        radial-gradient(circle at 30px 0, transparent 18px, rgba(13, 3, 92, 0.12) 19px, rgba(13, 3, 92, 0.12) 21px, transparent 22px) 0 45px / 60px 45px repeat-x;
    animation: waveSlide 18s linear infinite;
}

.eeb-vs .fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    animation: fadeInLeft 1.2s ease-out forwards;
}

.eeb-vs .scroll-reveal {
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.eeb-vs .scroll-reveal.from-left {
    transform: translateX(-70px);
}

.eeb-vs .scroll-reveal.from-right {
    transform: translateX(70px);
}

.eeb-vs .scroll-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.eeb-vs .scroll-reveal.delay-1 {
    transition-delay: 0.08s;
}

.eeb-vs .scroll-reveal.delay-2 {
    transition-delay: 0.16s;
}

.eeb-vs .scroll-reveal.delay-3 {
    transition-delay: 0.24s;
}

.eeb-vs .scroll-reveal.delay-4 {
    transition-delay: 0.32s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -18px, 0);
    }
}

@keyframes driftXY {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(14px, -12px, 0);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

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

@keyframes pulseSoft {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}

@keyframes floatSpin {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(12px, -18px, 0) rotate(8deg);
    }
}

@keyframes waveSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(60px);
    }
}

@keyframes shimmerWave {
    0%,
    100% {
        transform: translateX(0) scale(1);
        opacity: 0.75;
    }

    50% {
        transform: translateX(8px) scale(1.05);
        opacity: 1;
    }
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes softBob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .eeb-vs .decor,
    .eeb-vs .hero-card,
    .eeb-vs .hero-square,
    .eeb-vs .hero-chart,
    .eeb-vs .hero-lines,
    .eeb-vs .quick-icon,
    .eeb-vs [class^="tutorial-thumb"],
    .eeb-vs .scroll-reveal,
    .eeb-vs .scroll-reveal.from-left,
    .eeb-vs .scroll-reveal.from-right {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1180px) {
    .eeb-vs .hero-grid,
    .eeb-vs .quick-grid,
    .eeb-vs .requirements-grid {
        grid-template-columns: 1fr 1fr;
    }

    .eeb-vs .tutorial-card {
        flex: 0 0 calc((100% - 48px) / 3);
        max-width: calc((100% - 48px) / 3);
    }

    .eeb-vs .hero-visual {
        min-height: 620px;
    }
}

@media (max-width: 920px) {
    .eeb-vs .site-header {
        padding: 8px 0 12px;
    }

    .eeb-vs .header-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 10px 0 0;
    }

    .eeb-vs .logo {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .eeb-vs .logo img {
        height: 62px;
        max-width: min(100%, 280px);
    }

    .eeb-vs .mobile-menu-btn {
        display: inline-grid;
        place-items: center;
        order: 2;
        margin: 0 auto;
    }

    .eeb-vs .nav {
        width: 100%;
        order: 3;
        justify-content: center;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 8px 0 4px;
        text-align: center;
    }

    .eeb-vs .nav.is-open {
        display: flex;
    }

    .eeb-vs .nav a {
        width: 100%;
        padding: 6px 0;
    }

    .eeb-vs-back-to-top {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .eeb-vs .hero-grid,
    .eeb-vs .quick-grid,
    .eeb-vs .requirements-grid,
    .eeb-vs .whatsapp-container {
        grid-template-columns: 1fr;
    }

    .eeb-vs .hero {
        padding-top: 36px;
    }

    .eeb-vs .hero-grid {
        min-height: auto;
    }

    .eeb-vs .hero-title {
        max-width: 100%;
    }

    .eeb-vs .hero-visual {
        min-height: 560px;
    }

    .eeb-vs .hero-card {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 420px;
    }

    .eeb-vs .hero-square {
        right: 10px;
        top: 10px;
        width: 110px;
        height: 110px;
    }

    .eeb-vs .hero-chart {
        right: 20px;
        bottom: 28px;
    }

    .eeb-vs .hero-lines {
        display: none;
    }

    .eeb-vs .section {
        padding: 72px 0;
    }

    .eeb-vs .tutorial-card,
    .eeb-vs .quick-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .eeb-vs .whatsapp-content {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .eeb-vs .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .eeb-vs .site-header {
        padding-bottom: 10px;
    }

    .eeb-vs .header-inner {
        gap: 10px;
    }

    .eeb-vs .logo img {
        height: 56px;
        max-width: min(100%, 240px);
    }

    .eeb-vs .hero-title {
        font-size: 2.55rem;
    }

    .eeb-vs .hero-text {
        font-size: 1rem;
    }

    .eeb-vs .hero-visual {
        min-height: 440px;
    }

    .eeb-vs .hero-card {
        height: 320px;
        border-radius: 26px;
    }

    .eeb-vs .hero-square {
        width: 78px;
        height: 78px;
    }

    .eeb-vs .quick-card {
        min-height: 220px;
    }

    .eeb-vs .req-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .eeb-vs .req-item h3 {
        font-size: 1.6rem;
    }

    .eeb-vs .section-title,
    .eeb-vs .whatsapp-content h2 {
        font-size: 2.3rem;
    }

    .eeb-vs .phone-table {
        min-width: 700px;
    }
}
