/* =========================================================
   ENGAGE & APPS
========================================================= */

.ea-hero-section,
.ea-section,
.ea-apps-section {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.ea-hero-section {
    min-height: 500px;
    padding: 86px 0;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(199, 45, 73, .10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f8f9ff 0%,
            #ffffff 52%,
            #f5f6ff 100%
        );
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.ea-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.ea-glow-one {
    width: 350px;
    height: 350px;

    left: -160px;
    top: -180px;

    background: rgba(87, 87, 209, .09);

    animation: eaGlowOne 8s ease-in-out infinite;
}

.ea-glow-two {
    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -230px;

    background: rgba(199, 45, 73, .07);

    animation: eaGlowTwo 10s ease-in-out infinite;
}

.ea-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(87, 87, 209, .04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(87, 87, 209, .04) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 25%,
        black 75%,
        transparent
    );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.ea-hero-content {
    position: relative;
    z-index: 5;

    animation: eaContentReveal 1s ease forwards;
}

.ea-hero-badge,
.ea-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

    margin-bottom: 18px;

    border-radius: 50px;

      background: radial-gradient(circle at 85% 25%, rgba(108, 44, 255, .16), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(233, 30, 99, .12), transparent 30%),
        #ffffff;

    color: #1f1343;

    font-size: 12px;
    font-weight: 600;
}

.ea-hero-badge i,
.ea-badge i {
    animation: eaIconPulse 2s infinite;
        color: #c72d49;
}

.ea-hero-title {
    max-width: 620px;

    margin-bottom: 18px;

    color: #1f1343;

    font-size: 54px;
    line-height: 1.08;
    font-weight: 700;
}

.ea-hero-title span {
    color: #c72d49;
    position: relative;
}

/* .ea-hero-title span::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 100%;
    height: 3px;

    background: #1f1343;

    border-radius: 10px;

    transform: scaleX(0);
    transform-origin: left;

    animation: eaUnderline 1s ease .8s forwards;
} */

.ea-hero-text {
    max-width: 570px;

    margin-bottom: 25px;

    color: #707483;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.ea-hero-buttons {
    display: flex;
    gap: 12px;
    align-items: center;

    margin-bottom: 28px;
}

.ea-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 21px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: all .35s ease;
}

.ea-btn i {
    transition: transform .3s ease;
}

.ea-btn:hover i {
    transform: translateX(5px);
}

.ea-btn-primary {
    background: #1f1343;
    color: #fff ;

    box-shadow:
        0 12px 30px rgba(31, 19, 67, .20);
}

.ea-btn-primary:hover {
    color: #fff !important;
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(31, 19, 67, .28);
}

.ea-btn-outline {
    background: #fff;

    border: 1px solid #dddfea;

    color: #302f43;
}

.ea-btn-outline:hover {
    color: #c72d49;

    border-color: #c72d49;

    transform: translateY(-4px);
}


/* =========================================================
   HERO FEATURES
========================================================= */

.ea-hero-features {
    display: flex;
    align-items: center;

    gap: 20px;
}

.ea-hero-feature {
    display: flex;
    align-items: center;

    gap: 8px;
}

.ea-hero-feature > span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(199, 45, 73, .08);

    color: #c72d49;

    font-size: 13px;
}

.ea-hero-feature strong {
    display: block;

    color: #1f1343;

    font-size: 11px;
}

.ea-hero-feature small {
    display: block;

    margin-top: 2px;

    color: #9093a0;

    font-size: 9px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.ea-hero-visual {
    position: relative;

    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: eaVisualReveal 1.2s ease forwards;
}


/* =========================================================
   RINGS
========================================================= */

.ea-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(87, 87, 209, .18);
}

.ea-ring-one {
    width: 430px;
    height: 430px;

    animation: eaRotate 24s linear infinite;
}

.ea-ring-two {
    width: 350px;
    height: 350px;

    border-color: rgba(199, 45, 73, .12);

    animation: eaRotateReverse 18s linear infinite;
}


/* =========================================================
   APP CARD
========================================================= */

.ea-app-card {
    position: relative;
    z-index: 4;

    width: 390px;

    padding: 23px;

    border-radius: 25px;

    background: rgba(255, 255, 255, .95);

    border: 1px solid rgba(255, 255, 255, .8);

    box-shadow:
        0 30px 80px rgba(30, 25, 70, .14),
        0 5px 20px rgba(0, 0, 0, .04);

    backdrop-filter: blur(20px);

    animation: eaCardFloat 5s ease-in-out infinite;
}


/* =========================================================
   APP HEADER
========================================================= */

.ea-app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.ea-app-title {
    display: flex;
    align-items: center;

    gap: 10px;
}

.ea-app-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #c72d49;

    color: #fff;

    box-shadow:
        0 10px 25px rgba(199, 45, 73, .22);

    animation: eaIconFloat 3s ease-in-out infinite;
}

.ea-app-title span {
    display: block;

    color: #9699a5;

    font-size: 8px;

    letter-spacing: .7px;
}

.ea-app-title strong {
    display: block;

    margin-top: 3px;

    color: #1f1343;

    font-size: 13px;
}

.ea-live {
    display: flex;
    align-items: center;

    gap: 5px;

    padding: 5px 9px;

    border-radius: 20px;

    background: rgba(34, 197, 94, .08);

    color: #16a34a;

    font-size: 9px;
    font-weight: 600;
}

.ea-live i {
    font-size: 6px;

    animation: eaLive 1.5s infinite;
}


/* =========================================================
   USER CARD
========================================================= */

.ea-user-card {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px;

    margin-bottom: 14px;

    border-radius: 14px;

    background: #fafaff;

    border: 1px solid #ededf3;
}

.ea-user-avatar {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(87, 87, 209, .10);

    color: #5757d1;
}

.ea-user-info {
    flex: 1;
}

.ea-user-info strong {
    display: block;

    color: #27263a;

    font-size: 12px;
}

.ea-user-info small {
    display: block;

    margin-top: 2px;

    color: #9194a1;

    font-size: 9px;
}

.ea-online {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #22c55e;

    color: #fff;

    font-size: 10px;

    animation: eaSuccessPulse 2s infinite;
}


/* =========================================================
   STATS
========================================================= */

.ea-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin-bottom: 15px;
}

.ea-stat {
    padding: 12px 8px;

    text-align: center;

    border-radius: 12px;

    background: #fff;

    border: 1px solid #eeeeF3;

    transition: all .3s ease;
}

.ea-stat:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .07);
}

.ea-stat span {
    display: block;

    color: #999ca8;

    font-size: 8px;
}

.ea-stat strong {
    display: block;

    margin-top: 3px;

    color: #1f1343;

    font-size: 17px;
}

.ea-stat small {
    display: block;

    margin-top: 2px;

    color: #22a35a;

    font-size: 8px;
}


/* =========================================================
   ACTIVITY
========================================================= */

.ea-activity {
    padding-top: 13px;

    border-top: 1px solid #eeeeF3;
}

.ea-activity-title {
    display: flex;
    justify-content: space-between;

    margin-bottom: 10px;
}

.ea-activity-title strong {
    color: #29283d;
    font-size: 11px;
}

.ea-activity-title span {
    color: #22a35a;
    font-size: 9px;
}

.ea-activity-item {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 9px 0;

    border-bottom: 1px solid #f1f1f5;
}

.ea-activity-item:last-child {
    border-bottom: 0;
}

.ea-activity-icon {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(87, 87, 209, .09);

    color: #5757d1;

    font-size: 10px;
}

.ea-activity-icon.ea-green {
    background: rgba(34, 197, 94, .09);
    color: #22a35a;
}

.ea-activity-icon.ea-orange {
    background: rgba(245, 158, 11, .10);
    color: #f59e0b;
}

.ea-activity-item > div:nth-child(2) {
    flex: 1;
}

.ea-activity-item strong {
    display: block;

    color: #333246;

    font-size: 10px;
}

.ea-activity-item small {
    display: block;

    margin-top: 2px;

    color: #979aa6;

    font-size: 8px;
}

.ea-success {
    color: #22a35a;

    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   FLOATING ICONS
========================================================= */

.ea-floating {
    position: absolute;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #fff;

    color: #5757d1;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .12);

    z-index: 8;
}

.ea-floating-one {
    top: 50px;
    right: 15px;

    animation: eaFloatOne 4s ease-in-out infinite;
}

.ea-floating-two {
    bottom: 55px;
    left: 15px;

    color: #22a35a;

    animation: eaFloatTwo 4.5s ease-in-out infinite;
}

.ea-floating-three {
    top: 42%;
    right: -5px;

    color: #f59e0b;

    animation: eaFloatThree 5s ease-in-out infinite;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.ea-section {
    padding: 80px 0;

    background: #f7f9fc;
}

.ea-section-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    right: -250px;
    top: 100px;

    border-radius: 50%;

    background: rgba(87, 87, 209, .06);

    filter: blur(10px);

    animation: eaSectionGlow 9s ease-in-out infinite;
}

.ea-section-title {
    margin-bottom: 15px;

    color: #1f1343;

    font-size: 42px;
    font-weight: 700;
}

.ea-section-title span {
    color: #c72d49;
}

.ea-section-subtitle {
    color: #737785;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   CARDS
========================================================= */

.ea-card {
    position: relative;

    height: 100%;

    padding: 28px 25px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid #ececf2;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

    animation: eaCardReveal .8s ease forwards;
}

.ea-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -65px;
    right: -65px;

    border-radius: 50%;

    background: rgba(199, 45, 73, .06);

    transition: transform .5s ease;
}

.ea-card:hover {
    transform: translateY(-9px);

    border-color: rgba(199, 45, 73, .20);

    box-shadow:
        0 25px 55px rgba(30, 25, 70, .10);
}

.ea-card:hover::before {
    transform: scale(2.4);
}

.ea-card-icon {
    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 15px;

    background: rgba(199, 45, 73, .08);

    color: #c72d49;

    font-size: 20px;

    transition: all .4s ease;
}

.ea-card:hover .ea-card-icon {
    transform: rotateY(180deg) scale(1.08);

    background: #c72d49;

    color: #fff;
}

.ea-card h4 {
    position: relative;

    margin-bottom: 9px;

    color: #29283d;

    font-size: 18px;
    font-weight: 700;
}

.ea-card p {
    position: relative;

    margin-bottom: 17px;

    color: #7d808d;

    font-size: 13px;
    line-height: 1.7;
}

.ea-card-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #1f1343;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;
}

.ea-card-link i {
    transition: transform .3s ease;
}

.ea-card:hover .ea-card-link i {
    transform: translateX(5px);
}


/* =========================================================
   APPS SECTION
========================================================= */

.ea-apps-section {
    padding: 85px 0;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f7f8ff
        );
}

.ea-apps-content h2 {
    max-width: 550px;

    margin-bottom: 17px;

    color: #1f1343;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.ea-apps-content h2 span {
    color: #c72d49;
}

.ea-apps-content > p {
    max-width: 530px;

    margin-bottom: 22px;

    color: #737785;

    font-size: 15px;
    line-height: 1.7;
}

.ea-app-checks {
    margin-bottom: 25px;
}

.ea-app-checks > div {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #4e5060;

    font-size: 13px;
}

.ea-app-checks i {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(34, 197, 94, .10);

    color: #c72d49;

    font-size: 9px;
}


/* =========================================================
   PHONE
========================================================= */

.ea-phone-wrapper {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ea-phone-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background: rgba(199, 45, 73, .10);

    filter: blur(30px);

    animation: eaPhoneGlow 5s ease-in-out infinite;
}

.ea-phone {
    position: relative;
    z-index: 3;

    width: 270px;
    height: 500px;

    padding: 9px;

    border-radius: 38px;

    background: #1f1343;

    box-shadow:
        0 35px 80px rgba(31, 19, 67, .25);

    animation: eaPhoneFloat 5s ease-in-out infinite;
}

.ea-phone-notch {
    position: absolute;

    z-index: 5;

    width: 95px;
    height: 22px;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 0 0 15px 15px;

    background: #1f1343;
}

.ea-phone-screen {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 35px 17px 15px;

    border-radius: 30px;

    background: #f8f9ff;

    overflow: hidden;
}

.ea-phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #1f1343;

    font-size: 13px;
}

.ea-phone-header i {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff;

    color: #c72d49;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
}

.ea-welcome {
    margin-top: 25px;
}

.ea-welcome small {
    display: block;

    color: #8e919e;

    font-size: 9px;
}

.ea-welcome strong {
    display: block;

    margin-top: 3px;

    color: #1f1343;

    font-size: 18px;
}

.ea-phone-stat {
    margin-top: 20px;

    padding: 17px;

    border-radius: 17px;

    background: #1f1343;

    color: #fff;

    box-shadow:
        0 15px 30px rgba(31, 19, 67, .20);

    animation: eaStatPulse 4s ease-in-out infinite;
}

.ea-phone-stat span {
    display: block;

    opacity: .7;

    font-size: 9px;
}

.ea-phone-stat strong {
    display: block;

    margin-top: 5px;

    font-size: 27px;
}

.ea-phone-stat small {
    display: block;

    margin-top: 4px;

    color: #6ee7b7;

    font-size: 8px;
}

.ea-phone-actions {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin-top: 18px;
}

.ea-phone-actions > div {
    padding: 12px 5px;

    text-align: center;

    border-radius: 13px;

    background: #fff;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);

    transition: all .3s ease;
}

.ea-phone-actions > div:hover {
    transform: translateY(-5px);
}

.ea-phone-actions i {
    display: block;

    margin-bottom: 5px;

    color: #c72d49;

    font-size: 14px;
}

.ea-phone-actions span {
    color: #777a88;

    font-size: 7px;
}

.ea-phone-bottom {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 13px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    padding: 10px;

    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .07);
}

.ea-phone-bottom span {
    color: #999ca8;

    font-size: 13px;
}

.ea-phone-bottom .active {
    color: #c72d49;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes eaContentReveal {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes eaVisualReveal {
    from {
        opacity: 0;
        transform: translateX(45px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes eaUnderline {
    to {
        transform: scaleX(1);
    }
}

@keyframes eaGlowOne {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(60px, 45px);
    }
}

@keyframes eaGlowTwo {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-55px, -40px);
    }
}

@keyframes eaIconPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes eaRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes eaRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes eaCardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes eaIconFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes eaLive {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}

@keyframes eaSuccessPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

@keyframes eaFloatOne {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-17px) rotate(8deg);
    }
}

@keyframes eaFloatTwo {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(16px);
    }
}

@keyframes eaFloatThree {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-12px, -15px) rotate(-7deg);
    }
}

@keyframes eaSectionGlow {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 40px);
    }
}

@keyframes eaCardReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes eaPhoneGlow {
    0%, 100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes eaPhoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes eaStatPulse {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ea-hero-section {
        min-height: auto;
        padding: 65px 0;
    }

    .ea-hero-content {
        text-align: center;
        margin-bottom: 35px;
    }

    .ea-hero-title {
        margin-left: auto;
        margin-right: auto;

        font-size: 45px;
    }

    .ea-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .ea-hero-buttons,
    .ea-hero-features {
        justify-content: center;
    }

    .ea-hero-visual {
        min-height: 440px;
    }

    .ea-apps-content {
        text-align: center;
        margin-bottom: 45px;
    }

    .ea-apps-content h2,
    .ea-apps-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .ea-app-checks {
        display: inline-block;
        text-align: left;
    }

    .ea-phone-wrapper {
        min-height: 500px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ea-hero-section {
        padding: 50px 0;
    }

    .ea-hero-title {
        font-size: 36px;
    }

    .ea-hero-text {
        font-size: 14px;
    }

    .ea-hero-buttons {
        flex-wrap: wrap;
    }

    .ea-hero-features {
        gap: 12px;
        flex-wrap: wrap;
    }

    .ea-hero-visual {
        min-height: 390px;
    }

    .ea-app-card {
        width: 360px;
        max-width: 92%;
        padding: 20px;
    }

    .ea-ring-one {
        width: 390px;
        height: 390px;
    }

    .ea-ring-two {
        width: 310px;
        height: 310px;
    }

    .ea-floating {
        width: 42px;
        height: 42px;
    }

    .ea-floating-one {
        right: 0;
    }

    .ea-floating-two {
        left: 0;
    }

    .ea-floating-three {
        right: -3px;
    }

    .ea-section {
        padding: 60px 0;
    }

    .ea-section-title {
        font-size: 32px;
    }

    .ea-apps-section {
        padding: 65px 0;
    }

    .ea-apps-content h2 {
        font-size: 32px;
    }

    .ea-phone-wrapper {
        min-height: 490px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .ea-hero-section {
        padding: 40px 0;
    }

    .ea-hero-title {
        font-size: 30px;
    }

    .ea-hero-text {
        font-size: 13px;
    }

    .ea-hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .ea-btn {
        width: 100%;
    }

    .ea-hero-features {
        justify-content: space-between;
        gap: 7px;
    }

    .ea-hero-feature {
        gap: 5px;
    }

    .ea-hero-feature > span {
        width: 29px;
        height: 29px;

        font-size: 11px;
    }

    .ea-hero-feature strong {
        font-size: 9px;
    }

    .ea-hero-feature small {
        font-size: 7px;
    }

    .ea-hero-visual {
        min-height: 350px;
    }

    .ea-app-card {
        width: 100%;
        max-width: 100%;

        padding: 17px;

        border-radius: 21px;
    }

    .ea-ring-one {
        width: 320px;
        height: 320px;
    }

    .ea-ring-two {
        width: 260px;
        height: 260px;
    }

    .ea-floating {
        display: none;
    }

    .ea-section {
        padding: 50px 0;
    }

    .ea-section-title {
        font-size: 28px;
    }

    .ea-section-subtitle {
        font-size: 13px;
    }

    .ea-card {
        padding: 23px 20px;
    }

    .ea-apps-section {
        padding: 55px 0;
    }

    .ea-apps-content h2 {
        font-size: 29px;
    }

    .ea-phone-wrapper {
        min-height: 450px;
    }

    .ea-phone {
        width: 245px;
        height: 455px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .ea-hero-title {
        font-size: 27px;
    }

    .ea-hero-features {
        gap: 5px;
    }

    .ea-app-card {
        padding: 14px;
    }

    .ea-stats {
        gap: 5px;
    }

    .ea-stat {
        padding: 10px 5px;
    }

    .ea-stat strong {
        font-size: 15px;
    }

    .ea-phone {
        width: 230px;
        height: 430px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ea-hero-section *,
    .ea-section *,
    .ea-apps-section *,
    .ea-hero-glow,
    .ea-hero-grid,
    .ea-section-glow,
    .ea-phone-glow {
        animation: none !important;
        transition: none !important;
    }
}