/* =========================================================
   MESSAGING PAGE
========================================================= */

.msg-hero {
    position: relative;
    overflow: hidden;

    height: 595px;
    min-height: 595px;

    display: flex;
    align-items: center;

    /* background:
        radial-gradient(circle at 85% 20%, rgba(116, 92, 255, .20), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(0, 170, 255, .12), transparent 30%),
        linear-gradient(135deg, #07152f 0%, #0b1f46 50%, #101b42 100%); */
 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: #fff;
}

.min-vh-75 {
    min-height: 550px;
}

.msg-hero-content {
    position: relative;
    z-index: 5;
}

.msg-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    background: rgb(243 77 12 / 8%);
    backdrop-filter: blur(10px);
    color: #c72d49;
    font-size: 13px;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #1f1343;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(53,229,138,.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    70% {
        box-shadow: 0 0 0 10px rgba(53,229,138,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(53,229,138,0);
    }
}

.msg-hero h1 {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 25px;
    color:#c72d49 ;
}

.msg-hero h1 span {
    display: block;
    background: #1f1343;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.msg-hero-text {
    max-width: 570px;
    color: rgba(53 63 79);
    font-size: 18px;
    line-height: 1.8;
}

.msg-buttons {
    display: flex;
    gap: 15px;
    margin-top: 32px;
}

.msg-btn-primary {
    color: #fff;
    background: linear-gradient(90deg,#596cff,#8867ff);
    padding: 14px 25px;
    border-radius: 8px;
    border: 0;
    transition: .3s;
}

.msg-btn-primary i {
    margin-left: 8px;
}

.msg-btn-primary:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(93,105,255,.35);
}

.msg-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    padding: 14px 25px;
    border-radius: 8px;
    transition: .3s;
}

.msg-btn-outline:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}

.msg-trust {
    display: flex;
    gap: 45px;
    margin-top: 45px;
}

.msg-trust div {
    display: flex;
    flex-direction: column;
}

.msg-trust strong {
    font-size: 25px;
}

.msg-trust span {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    margin-top: 3px;
}


/* =========================================================
   CHAT VISUAL
========================================================= */

.msg-visual {
    position: relative;
    width: 100%;
    height: 620px;          /* FIXED HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.msg-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: #6674ff;
    filter: blur(130px);
    opacity: .22;
    animation: glowMove 5s ease-in-out infinite alternate;
}

@keyframes glowMove {
    from {
        transform: scale(.85);
    }
    to {
        transform: scale(1.1);
    }
}

.chat-card {
    position: relative;
    z-index: 3;

    width: 390px;
    height: 447px;          /* FIXED HEIGHT */
    min-height: 471px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 25px;

    background: rgba(236,229,221);
    backdrop-filter: blur(20px);

    box-shadow: 0 30px 80px rgba(0,0,0,.35);

    animation: chatFloat 4s ease-in-out infinite;
    margin-top: 57px;
}

@keyframes chatFloat {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(0 0 0 / 10%);
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#c72d49,#1f1343);
    font-weight: 700;
}

.chat-user strong,
.chat-user small {
    display: block;
    color:#1f1343 ;
}

.chat-user small {
    color: rgba(109 116 133);
    margin-top: 3px;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #35e58a;
    border-radius: 50%;
    box-shadow: 0 0 12px #35e58a;
}

.chat-body {
    padding: 10px 20px;
    min-height: 200px;
}

.message {
    max-width: 80%;
    padding: 12px 15px;
    margin-bottom: 14px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.5;
    animation: messageAppear .8s both;
}

.received {
    background: rgba(255 255 255);
    border-bottom-left-radius: 3px;
    color: #07152f;
}

.sent {
    margin-left: auto;
    background: linear-gradient(135deg,#596cff,#8268ff);
    border-bottom-right-radius: 3px;
}

.delay-1 {
    animation-delay: .8s;
}

.delay-2 {
    animation-delay: 1.5s;
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(15px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.typing {
    display: flex;
    gap: 5px;
    width: 55px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(2 2 2 / 10%);
}

.typing span {
    width: 6px;
    height: 6px;
    background: #000;
    opacity: .6;
    border-radius: 50%;
    animation: typing 1.3s infinite;
}

.typing span:nth-child(2) {
    animation-delay: .2s;
}

.typing span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes typing {
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 15px 15px;
    padding: 10px 10px 10px 15px;
    border-radius: 12px;
    background: rgba(0,0,0,.18);
    color: rgba(0 0 0 / 40%);
    font-size: 12px;
}

.chat-input button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg,#596cff,#8969ff);
}


/* =========================================================
   FLOATING ICONS
========================================================= */

.floating-icon {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 17px;
    /* border: 1px solid rgba(255,255,255,.18); */
    border-radius: 15px;
    background: #f74780;
    backdrop-filter: blur(12px);
    /* box-shadow: 0 15px 35px rgba(0,0,0,.2); */
    font-size: 13px;
    animation: floating 4s ease-in-out infinite;
}

.floating-icon i {
    font-size: 19px;
}
.floating-icon span {
    color: #1f1343;
}

.sms-icon {
    top: 17%;
    left: 2%;
    animation-delay: .2s;
}

.whatsapp-icon {
    top: 26%;
    right: 0;
    animation-delay: .8s;
}

.email-icon {
    bottom: 17%;
    left: 3%;
    animation-delay: 1.2s;
}

.rcs-icon {
    bottom: 7%;
    right: 5%;
    animation-delay: 1.7s;
}
.call-icon {
    bottom: 37%;
    right: 0%;
    animation-delay: 1.7s;
}

@keyframes floating {
    0%,100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}


/* =========================================================
   PARTICLES
========================================================= */

.msg-particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    animation: particleMove 8s linear infinite;
}

.msg-particles span:nth-child(1) {
    left: 15%;
    top: 20%;
}

.msg-particles span:nth-child(2) {
    left: 30%;
    top: 70%;
    animation-delay: 2s;
}

.msg-particles span:nth-child(3) {
    left: 70%;
    top: 15%;
    animation-delay: 4s;
}

.msg-particles span:nth-child(4) {
    left: 85%;
    top: 70%;
    animation-delay: 1s;
}

.msg-particles span:nth-child(5) {
    left: 55%;
    top: 85%;
    animation-delay: 3s;
}

@keyframes particleMove {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: .7;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section-space {
    padding: 100px 0;
}

.section-heading {
    max-width: 760px;
    margin: auto;
}

.section-label {
    display: inline-block;
    color: #1f1343;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 45px;
    font-weight: 700;
    color: #1f1343;
    line-height: 1.2;
}

.section-heading h2 span {
    display: block;
    background: #1f1343;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    color: #6d7485;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   CHANNELS
========================================================= */

.msg-channels {
    background: #f8faff;
}

.channel-card {
    height: 100%;
    padding: 35px 28px;
    border: 1px solid #e8ebf5;
    border-radius: 20px;
    background: #fff;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

.channel-card:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -50px;
    top: -50px;
    border-radius: 50%;
    background: #6875ff;
    opacity: .08;
    transition: .4s;
}

.channel-card:hover {
    transform: translateY(-12px);
    border-color: transparent;
    box-shadow: 0 25px 60px rgba(38,55,100,.13);
}

.channel-card:hover:before {
    transform: scale(4);
}

.channel-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 18px;
    font-size: 28px;
    transition: .4s;
}

.channel-card:hover .channel-icon {
    transform: rotate(-8deg) scale(1.1);
}

.channel-icon.sms {
    background: #eaf0ff;
    color: #536cff;
}

.channel-icon.whatsapp {
    background: #e9fff3;
    color: #20c77a;
}

.channel-icon.rcs {
    background: #f1ecff;
    color: #805eff;
}

.channel-icon.email {
    background: #fff0f1;
    color: #ed5f70;
}

.channel-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #18223e;
}

.channel-card p {
    color: #747b8c;
    line-height: 1.7;
    font-size: 14px;
    min-height: 95px;
}

.channel-card a {
    color: #1f1343;
    font-size: 13px;
    font-weight: 600;
}

.channel-card a i {
    margin-left: 6px;
    transition: .3s;
}

.channel-card:hover a i {
    transform: translateX(5px);
}


/* =========================================================
   BENEFITS
========================================================= */

.msg-benefits {
    background: #fff;
}

.benefit-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border-radius: 22px;
    border: 1px solid #e9ecf5;
    background: #fff;
    overflow: hidden;
    transition: .4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(35,52,95,.12);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 45px;
    font-weight: 800;
    color: #f2f3f8;
}

.benefit-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg,#c72d49,#c72d49);
    font-size: 24px;
    transition: .4s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 12px 30px rgba(89,108,255,.3);
}

.benefit-card h4 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    color: #1f1343;
}

.benefit-card p {
    position: relative;
    z-index: 2;
    color: #737a8c;
    font-size: 14px;
    line-height: 1.8;
}

.benefit-line {
    width: 35px;
    height: 3px;
    margin-top: 20px;
    border-radius: 5px;
    background: linear-gradient(90deg,#596cff,#9369ff);
    transition: .4s;
}

.benefit-card:hover .benefit-line {
    width: 80px;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.msg-how {
    background: #f8faff;
}

.process-row {
    position: relative;
}

.process-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.process-icon {
    position: relative;
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
    border-radius: 50%;
    color: #c72d49;
    background: #fff;
    border: 1px solid #e5e8f2;
    font-size: 28px;
    box-shadow: 0 15px 40px rgba(35,52,95,.08);
}

.process-icon span {
    position: absolute;
    top: -7px;
    right: -5px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1f1343;
    color: #fff;
    font-size: 10px;
}

.process-card h4 {
    font-size: 21px;
}

.process-card p {
    max-width: 300px;
    margin: auto;
    color: #747b8c;
    line-height: 1.7;
    font-size: 14px;
}


/* =========================================================
   CTA
========================================================= */

.msg-cta {
    padding: 90px 0;
    background: #f8faff;
}

.msg-cta-box {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(160,130,255,.35), transparent 30%),
        linear-gradient(135deg,#f74780,#f74780);
    box-shadow: 0 30px 70px rgba(35,47,110,.2);
}

.msg-cta-box h2 {
    font-size: 43px;
    line-height: 1.2;
    margin-bottom: 15px;
    color:#fff ;
}

.msg-cta-box h2 span {
    color: #aeb8ff;
}

.msg-cta-box p {
    color: rgb(240, 241, 243);
    max-width: 600px;
}

.section-label.light {
    color: #fff;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 9px;
    color: #172653;
    background: #fff;
    font-weight: 600;
    transition: .3s;
}

.cta-button:hover {
    color: #172653;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
}

.p1 {
    width: 200px;
    height: 200px;
    right: -60px;
    top: -60px;
}

.p2 {
    width: 100px;
    height: 100px;
    left: 40%;
    bottom: -60px;
}

.p3 {
    width: 30px;
    height: 30px;
    right: 35%;
    top: 20%;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .msg-hero {
        padding: 100px 0 70px;
    }

    .msg-hero h1 {
        font-size: 48px;
    }

    .msg-visual {
        min-height: 600px;
        margin-top: 30px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .msg-cta-box {
        padding: 50px 35px;
    }

    .msg-cta-box h2 {
        font-size: 35px;
    }

    .msg-cta-box .text-lg-end {
        text-align: left !important;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {

    .msg-hero h1 {
        font-size: 39px;
    }

    .msg-hero-text {
        font-size: 15px;
    }

    .msg-buttons {
        flex-direction: column;
    }

    .msg-trust {
        gap: 20px;
    }

    .msg-trust strong {
        font-size: 20px;
    }

    .chat-card {
        width: 310px;
    }

    .floating-icon {
        padding: 8px 11px;
        font-size: 10px;
    }

    .sms-icon {
        left: 0;
    }

    .whatsapp-icon {
        right: 0;
    }

    .section-space {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .msg-cta {
        padding: 60px 0;
    }

    .msg-cta-box {
        padding: 40px 25px;
        border-radius: 20px;
    }
}

/* =========================================================
   RESPONSIVE - MESSAGING PAGE
========================================================= */

/* ---------------------------------------------------------
   LARGE DESKTOP
   1200px+
--------------------------------------------------------- */

@media (min-width: 1200px) {

    .msg-hero {
        height: 595px;
        min-height: 595px;
    }

    .msg-visual {
        height: 620px;
        min-height: 620px;
    }

    /* .chat-card {
        width: 390px;
        height: 447px;
        min-height: 447px;
    } */

}


/* ---------------------------------------------------------
   LAPTOP
   992px - 1199px
--------------------------------------------------------- */

@media (min-width: 992px) and (max-width: 1199px) {

    .msg-hero {
        height: auto;
        min-height: 620px;
        padding: 70px 0;
    }

    .msg-hero h1 {
        font-size: 48px;
        line-height: 1.1;
    }

    .msg-hero-text {
        max-width: 500px;
        font-size: 16px;
    }

    .msg-visual {
        width: 100%;
        height: 570px;
        min-height: 570px;
    }

    .chat-card {
        width: 350px;
        height: 483px;
        min-height: 483px;
        margin-top: 30px;
    }

    .msg-glow {
        width: 380px;
        height: 380px;
    }

    .floating-icon {
        padding: 10px 13px;
        font-size: 12px;
    }

    .sms-icon {
        left: 0;
        top: 16%;
    }

    .whatsapp-icon {
        right: 0;
        top: 25%;
    }

    .email-icon {
        left: 0;
        bottom: 17%;
    }

    .rcs-icon {
        right: 0;
        bottom: 8%;
    }

    .call-icon {
        right: 0;
        bottom: 38%;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .msg-cta-box {
        padding: 55px 45px;
    }

}


/* ---------------------------------------------------------
   TABLET
   768px - 991px
--------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 991px) {

    .msg-hero {
        height: auto;
        min-height: auto;
        padding: 110px 0 80px;
    }

    .msg-hero .container {
        width: 100%;
    }

    .msg-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .msg-badge {
        margin-bottom: 20px;
    }

    .msg-hero h1 {
        font-size: 48px;
        line-height: 1.12;
        letter-spacing: -1.5px;
    }

    .msg-hero-text {
        max-width: 650px;
        margin: 0 auto;
        font-size: 16px;
    }

    .msg-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .msg-trust {
        justify-content: center;
        gap: 40px;
    }

    /* CHAT */

    .msg-visual {
        width: 100%;
        height: 600px;
        min-height: 600px;
        margin-top: 45px;
    }

    .chat-card {
        width: 370px;
        height: 486px;
        min-height: 486px;
        margin-top: 0;
    }

    .msg-glow {
        width: 400px;
        height: 400px;
    }

    /* FLOATING ICONS */

    .floating-icon {
        padding: 10px 13px;
        font-size: 11px;
    }

    .floating-icon i {
        font-size: 16px;
    }

    .sms-icon {
        left: 5%;
        top: 17%;
    }

    .whatsapp-icon {
        right: 5%;
        top: 24%;
    }

    .email-icon {
        left: 5%;
        bottom: 18%;
    }

    .rcs-icon {
        right: 5%;
        bottom: 10%;
    }

    .call-icon {
        right: 5%;
        bottom: 37%;
    }

    /* SECTIONS */

    .section-space {
        padding: 80px 0;
    }

    .section-heading {
        padding: 0 20px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    /* CHANNELS */

    .channel-card {
        padding: 30px 22px;
    }

    .channel-card h4 {
        font-size: 20px;
    }

    /* BENEFITS */

    .benefit-card {
        padding: 30px;
    }

    /* CTA */

    .msg-cta {
        padding: 70px 0;
    }

    .msg-cta-box {
        padding: 50px 35px;
    }

    .msg-cta-box h2 {
        font-size: 36px;
    }

}


/* ---------------------------------------------------------
   MOBILE LARGE
   576px - 767px
--------------------------------------------------------- */

@media (min-width: 576px) and (max-width: 767px) {

    .msg-hero {
        height: auto;
        min-height: auto;
        padding: 100px 0 70px;
    }

    .msg-hero-content {
        text-align: center;
    }

    .msg-badge {
        margin-bottom: 18px;
    }

    .msg-hero h1 {
        font-size: 42px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .msg-hero-text {
        max-width: 600px;
        margin: auto;
        font-size: 15px;
        line-height: 1.7;
    }

    .msg-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .msg-trust {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    /* CHAT */

    .msg-visual {
        width: 100%;
        height: 560px;
        min-height: 560px;
        margin-top: 35px;
    }

    .chat-card {
        width: 340px;
        height: 450px;
        min-height: 450px;
        margin-top: 0;
    }

    .msg-glow {
        width: 350px;
        height: 350px;
    }

    /* FLOATING */

    .floating-icon {
        padding: 9px 12px;
        font-size: 10px;
        gap: 5px;
    }

    .floating-icon i {
        font-size: 15px;
    }

    .sms-icon {
        left: 0;
        top: 18%;
    }

    .whatsapp-icon {
        right: 0;
        top: 25%;
    }

    .email-icon {
        left: 0;
        bottom: 19%;
    }

    .rcs-icon {
        right: 0;
        bottom: 10%;
    }

    .call-icon {
        right: 0;
        bottom: 38%;
    }

    /* SECTIONS */

    .section-space {
        padding: 70px 0;
    }

    .section-heading {
        padding: 0 15px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 15px;
    }

    /* CTA */

    .msg-cta {
        padding: 60px 0;
    }

    .msg-cta-box {
        padding: 45px 30px;
        border-radius: 22px;
    }

    .msg-cta-box h2 {
        font-size: 32px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   0 - 575px
--------------------------------------------------------- */

@media (max-width: 575px) {

    /* HERO */

    .msg-hero {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 90px 0 50px;
    }

    .msg-hero .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .msg-hero-content {
        width: 100%;
        text-align: center;
    }

    .msg-badge {
        padding: 7px 13px;
        font-size: 11px;
        gap: 6px;
        margin-bottom: 18px;
    }

    .pulse-dot {
        width: 7px;
        height: 7px;
    }

    .msg-hero h1 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.8px;
        margin-bottom: 18px;
    }

    .msg-hero h1 span {
        display: inline;
    }

    .msg-hero-text {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    /* BUTTONS */

    .msg-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .msg-btn-primary,
    .msg-btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 13px 20px;
    }

    /* TRUST */

    .msg-trust {
        width: 100%;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .msg-trust div {
        min-width: 80px;
        text-align: center;
    }

    .msg-trust strong {
        font-size: 19px;
    }

    .msg-trust span {
        font-size: 10px;
    }


    /* =====================================================
       CHAT VISUAL
    ===================================================== */

    .msg-visual {
        width: 100%;
        height: 520px;
        min-height: 520px;
        margin-top: 30px;
        overflow: visible;
    }

    .msg-glow {
        width: 280px;
        height: 280px;
        filter: blur(90px);
        opacity: .18;
    }

    .chat-card {
        width: calc(100% - 65px);
        max-width: 320px;

        height: 386px;
        min-height: 386px;

        margin-top: 0;

        border-radius: 20px;
    }

    .chat-header {
        padding: 15px;
    }

    .chat-avatar {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .chat-user {
        gap: 9px;
    }

    .chat-user strong {
        font-size: 13px;
    }

    .chat-user small {
        font-size: 10px;
    }

    .online-dot {
        width: 8px;
        height: 8px;
    }

    .chat-body {
        padding: 10px 14px;
    }

    .message {
        max-width: 88%;
        padding: 10px 12px;
        margin-bottom: 10px;
        font-size: 11px;
    }

    .typing {
        width: 48px;
        padding: 10px;
    }

    .typing span {
        width: 5px;
        height: 5px;
    }

    .chat-input {
        margin: 0 10px 10px;
        padding: 8px 8px 8px 12px;
        font-size: 10px;
    }

    .chat-input button {
        width: 32px;
        height: 32px;
    }


    /* =====================================================
       FLOATING ICONS
    ===================================================== */

    .floating-icon {
        padding: 7px 9px;
        gap: 5px;
        border-radius: 10px;
        font-size: 9px;
    }

    .floating-icon i {
        font-size: 13px;
    }

    .sms-icon {
        left: 0;
        top: 15%;
    }

    .whatsapp-icon {
        right: 0;
        top: 22%;
    }

    .email-icon {
        left: 0;
        bottom: 20%;
    }

    .rcs-icon {
        right: 0;
        bottom: 11%;
    }

    .call-icon {
        right: 0;
        bottom: 38%;
    }


    /* =====================================================
       COMMON SECTION
    ===================================================== */

    .section-space {
        padding: 60px 0;
    }

    .section-heading {
        width: 100%;
        padding: 0 15px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .section-heading h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* =====================================================
       CHANNELS
    ===================================================== */

    .msg-channels {
        padding: 60px 0;
    }

    .channel-card {
        width: 100%;
        padding: 25px 20px;
        border-radius: 17px;
    }

    .channel-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
        border-radius: 15px;
        font-size: 23px;
    }

    .channel-card h4 {
        font-size: 19px;
    }

    .channel-card p {
        min-height: auto;
        font-size: 13px;
        line-height: 1.7;
    }


    /* =====================================================
       BENEFITS
    ===================================================== */

    .msg-benefits {
        padding: 60px 0;
    }

    .benefit-card {
        padding: 25px 20px;
        border-radius: 17px;
    }

    .benefit-number {
        top: 15px;
        right: 18px;
        font-size: 35px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
        border-radius: 15px;
        font-size: 21px;
    }

    .benefit-card h4 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* =====================================================
       HOW IT WORKS
    ===================================================== */

    .msg-how {
        padding: 60px 0;
    }

    .process-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .process-icon {
        width: 85px;
        height: 85px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .process-icon span {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .process-card h4 {
        font-size: 19px;
    }

    .process-card p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .msg-cta {
        padding: 50px 0;
    }

    .msg-cta-box {
        padding: 35px 20px;
        border-radius: 18px;
        text-align: center;
    }

    .msg-cta-box h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .msg-cta-box p {
        font-size: 13px;
        line-height: 1.7;
    }

    .cta-button {
        padding: 13px 22px;
        font-size: 13px;
    }

}


/* ---------------------------------------------------------
   VERY SMALL MOBILE
   0 - 380px
--------------------------------------------------------- */

@media (max-width: 380px) {

    .msg-hero {
        padding-top: 80px;
    }

    .msg-hero h1 {
        font-size: 29px;
    }

    .msg-hero-text {
        font-size: 13px;
    }

    .msg-visual {
        height: 480px;
        min-height: 480px;
    }

    .chat-card {
        width: 275px;
        height: 361px;
        min-height: 355px;
    }

    .chat-body {
        padding: 8px 10px;
    }

    .message {
        font-size: 10px;
        padding: 8px 10px;
    }

    .floating-icon {
        padding: 6px 7px;
        font-size: 8px;
    }

    .floating-icon span {
        display: none;
    }

    .floating-icon i {
        font-size: 15px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .benefit-card {
        padding: 22px 17px;
    }

    .msg-cta-box {
        padding: 30px 17px;
    }

    .msg-cta-box h2 {
        font-size: 25px;
    }

}

/* =========================================================
   FIX: SECTIONS NOT VISIBLE ON MOBILE
========================================================= */

@media (max-width: 767px) {

    .wow {
        visibility: visible !important;
        animation-name: none !important;
    }

}

@media (max-width: 767px) {

    .wow {
        visibility: visible !important;
    }

}

@media (max-width: 767px) {

    .msg-hero {
        height: auto !important;
        min-height: auto !important;
        padding: 90px 0 60px;
    }

    .msg-visual {
        height: 306px !important;
        min-height: 306px !important;
    }

}


/* =========================================================
   TABLET 768px - 991px FIX
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    /* WOW animation hidden fix */
    .wow {
        visibility: visible !important;
    }

    /* Make all messaging sections visible */
    .msg-channels,
    .msg-benefits,
    .msg-how,
    .msg-cta {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Prevent animation from keeping content hidden */
    .msg-channels .wow,
    .msg-benefits .wow,
    .msg-how .wow,
    .msg-cta .wow {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

