.g-wrap {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.avatar1 {
    color: #8360F6;
    font-size: clamp(55px, 8vw, 120px);
    line-height: 1;
    display: inline-block;
}

.avatar1-img {
    position: absolute;
    width: clamp(45px, 5vw, 85px);
    top: -0.55em;
    left: 0.05em;
    pointer-events: none;
    z-index: 2;
}

.how-card {
    position: relative;
    overflow: hidden;
    transition: .35s;
    background: var(--sf);
    border: 1px solid var(--bd);
}

.how-card:hover {
    transform: translateY(-8px);
}

.step-no {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--grad);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, .25);
}

.how-icon {
    width: 90px;
    height: 90px;
    margin: 35px auto 25px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, .12);
    border: 1px solid rgba(99, 102, 241, .25);
    color: var(--pur);
    font-size: 38px;
    animation: floatIcon 3s ease-in-out infinite;
    transition: .35s;
}

.how-card:hover .how-icon {
    transform: scale(1.08);
    background: var(--grad);
    color: #fff;
}

.how-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--tx);
}

.how-card p {
    color: var(--tx2);
    font-size: .92rem;
    line-height: 1.7;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 25px;
    animation: scrollTestimonials 35s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.tcard {
    width: 360px;
    padding: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.tcard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg,
            transparent,
            rgba(255, 255, 255, .08),
            transparent);
    transform: translateX(-100%);
}

.tcard:hover::before {
    transform: translateX(120%);
    transition: 1.2s;
}

.tcard:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, .25);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 18px;
}

.tcard p {
    color: var(--tx2);
    line-height: 1.8;
    min-height: 110px;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.avatar.purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.avatar.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.avatar.green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.avatar.orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.avatar.pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.avatar.cyan {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.user span {
    display: block;
    color: var(--tx3);
    font-size: .82rem;
}

.contact-icon,
.contact-box-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, .12);
    border: 1px solid rgba(99, 102, 241, .25);
    color: var(--pur);
    font-size: 24px;
    transition: .35s;
}

.contact-box-icon {
    margin: auto;
}

.gc:hover .contact-box-icon,
.gc:hover .contact-icon {
    background: var(--grad);
    color: #fff;
    transform: translateY(-6px) scale(1.08);
}

.gc {
    transition: .35s;
}

.gc:hover {
    transform: translateY(-8px);
}

.contact-icon+div small {
    color: var(--tx3);
}

.contact-icon+div h6 {
    color: var(--tx);
}

.contact-box-icon+h5 {
    color: var(--tx);
}

/* =========================
   Whatsapp Chat Icon
========================= */
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

/* Text Bubble */
.whatsapp-text {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f0fff4);
    color: #111;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 1;
}

/* Arrow */
.whatsapp-text::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #f0fff4;
}

/* Hidden after 5 sec */
.whatsapp-text.hide {
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
}

/* Hover pe show */
.whatsapp-container:hover .whatsapp-text {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* WhatsApp Button */
.whatsapp-float {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* Hover */
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .whatsapp-text {
        display: none;
    }
}

/* =========================================================
   MODERN SOCIAL GROWTH HERO
========================================================= */

#hero.hero-modern {
    min-height: 780px;
    padding-top: calc(var(--nav) + 70px);
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;

    background:
        radial-gradient(circle at 12% 20%,
            rgba(139, 92, 246, 0.10),
            transparent 30%),
        radial-gradient(circle at 90% 30%,
            rgba(59, 130, 246, 0.10),
            transparent 30%),
        var(--bg);
}

/* ================= BACKGROUND ================= */

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .45;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(139, 92, 246, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(139, 92, 246, .035) 1px,
            transparent 1px);

    background-size: 55px 55px;

    mask-image: linear-gradient(to bottom,
            black,
            transparent 85%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: heroOrbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 420px;
    height: 420px;
    top: -180px;
    left: -150px;
    background: rgba(139, 92, 246, .15);
}

.hero-orb-2 {
    width: 360px;
    height: 360px;
    top: 160px;
    right: -140px;
    background: rgba(59, 130, 246, .13);
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: 45%;
    background: rgba(139, 92, 246, .10);
    animation-delay: -5s;
}

/* ================= CONTAINER ================= */

.hero-container {
    z-index: 2;
}

/* ================= LEFT CONTENT ================= */

.hero-content {
    position: relative;
    z-index: 4;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px 8px 11px;
    border-radius: 100px;
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(139, 92, 246, .20);
    color: var(--pur);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow:
        0 8px 30px rgba(139, 92, 246, .07);
    margin-bottom: 22px;
}

.hero-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow:
        0 0 0 5px rgba(139, 92, 246, .10),
        0 0 15px rgba(139, 92, 246, .5);
    animation: heroPulse 2s infinite;
}

.hero-title {
    font-size: clamp(3rem,
            6vw,
            5.5rem);

    line-height: 1.03;
    letter-spacing: -.055em;
    font-weight: 800;
    color: var(--tx);
    margin: 0 0 25px;
    max-width: 680px;
}

.hero-gradient-text {
    background:
        linear-gradient(100deg,
            #7c3aed 0%,
            #8b5cf6 35%,
            #3b82f6 70%,
            #2563eb 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: heroGradientMove 5s ease-in-out infinite;
}

.hero-description {
    max-width: 590px;
    color: var(--tx2);

    font-size: clamp(1rem,
            1.6vw,
            1.15rem);

    line-height: 1.75;
    margin-bottom: 34px;
}

/* ================= BUTTONS ================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-primary-btn {
    border: none;
    border-radius: 13px;
    padding: 13px 16px 13px 22px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--grad);
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: .94rem;
    font-weight: 700;
    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(124, 58, 237, .25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.hero-primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 38px rgba(124, 58, 237, .32);

    color: #fff;
}

.hero-btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    transition: transform .25s ease;
}

.hero-primary-btn:hover .hero-btn-icon {
    transform: translateX(3px);
}

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid var(--bd2);
    border-radius: 13px;
    background: rgba(255, 255, 255, .55);
    color: var(--tx);
    font-size: .94rem;
    font-weight: 600;
    transition: .25s;
}

.hero-secondary-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, .35);
    background: rgba(139, 92, 246, .06);
    color: var(--pur);
}

.hero-play-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, .10);
    color: var(--pur);
    font-size: .75rem;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(139, 92, 246, .20),
            rgba(59, 130, 246, .08) 40%,
            transparent 70%);

    filter: blur(8px);
    animation: heroGlowPulse 4s ease-in-out infinite;
}

/* ================= AVATAR ================= */

.hero-avatar-stage {
    width: 360px;
    height: 360px;
    position: relative;
    top: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroAvatarFloat 6s ease-in-out infinite;
}

.hero-avatar-circle {
    width: 255px;
    height: 255px;
    position: relative;
    z-index: 5;
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(145deg,
            #ede9fe,
            #dbeafe);

    border: 1px solid rgba(139, 92, 246, .18);

    box-shadow:
        0 30px 80px rgba(59, 130, 246, .18),
        0 0 0 15px rgba(139, 92, 246, .035),
        0 0 0 30px rgba(139, 92, 246, .025);
}

.hero-avatar-img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(0 18px 22px rgba(59, 130, 246, .15));

    animation: heroImageBreath 4s ease-in-out infinite;
}


.hero-avatar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, .15);
    animation: heroRingRotate 14s linear infinite;
}

.ring-1 {
    width: 290px;
    height: 290px;
}

.ring-2 {
    width: 345px;
    height: 345px;
    border-style: dashed;
    animation-duration: 22s;
    animation-direction: reverse;
}

.ring-3 {
    width: 405px;
    height: 405px;
    border-color: rgba(59, 130, 246, .09);
    animation-duration: 28s;
}

/* ================= PLATFORM BUBBLES ================= */

.platform-bubble {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    border: 3px solid var(--bg);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);

    animation: platformFloat 4s ease-in-out infinite;
}

/* =========================================================
   HERO ANIMATIONS
========================================================= */

@keyframes heroOrbFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(20px, -25px, 0) scale(1.08);
    }
}


@keyframes heroPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .65;
    }
}


@keyframes heroGradientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


@keyframes heroGlowPulse {

    0%,
    100% {
        transform: scale(.92);
        opacity: .65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


@keyframes heroAvatarFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


@keyframes heroImageBreath {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.015);
    }
}


@keyframes heroRingRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes platformFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}


/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    #hero.hero-modern {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 55px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 530px;
        margin-top: 20px;
    }

    .hero-avatar-stage {
        top: -20px;
    }
}


@media (max-width: 767px) {

    #hero.hero-modern {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 105px;
    }

    .hero-title {
        font-size: clamp(2.45rem, 11vw, 3.5rem);
        line-height: 1.06;
    }

    .hero-description {
        font-size: .94rem;
        line-height: 1.65;
    }

    .hero-visual {
        height: 440px;
        transform: scale(.84);
        transform-origin: top center;
        margin-bottom: -65px;
    }

    .hero-avatar-stage {
        transform: scale(.9);
        top: -20px;
    }
}


@media (max-width: 480px) {

    .hero-badge {
        font-size: .65rem;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        transform: scale(.68);
        height: 375px;
        margin-bottom: -90px;
    }

    .hero-avatar-stage {
        top: -15px;
    }
}

/* =========================================================
   CUSTOM PLATFORM IDENTIFIER BUBBLES
========================================================= */

.platform-bubble {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .14),
        inset 0 1px 0 rgba(255, 255, 255, .18);

    animation: platformFloat 4s ease-in-out infinite;
}

/* =========================================================
   YOUTUBE
========================================================= */

.bubble-youtube {
    top: 38px;
    left: 35px;

    background:
        linear-gradient(145deg,
            #ff4d5f,
            #e52d55);
}

.platform-yt {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.04em;
    color: #fff;
    padding: 4px 5px;
    border: 1.5px solid rgba(255, 255, 255, .8);
    border-radius: 6px;
    line-height: 1;
}

/* =========================================================
   INSTAGRAM
========================================================= */

.bubble-instagram {
    top: 65px;
    right: 25px;

    background:
        linear-gradient(145deg,
            #ff9b42,
            #e34b9b 55%,
            #7045c7);

    animation-delay: -1s;
}

.platform-ig {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1;
    padding: 5px 4px;
    border: 1.5px solid rgba(255, 255, 255, .85);
    border-radius: 7px;
}

/* =========================================================
   FACEBOOK
========================================================= */

.bubble-facebook {
    bottom: 68px;
    left: 25px;

    background:
        linear-gradient(145deg,
            #3f8cff,
            #315fd8);

    animation-delay: -2s;
}

.platform-fb {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1;
    padding: 5px 4px;
    border: 1.5px solid rgba(255, 255, 255, .75);
    border-radius: 6px;
}

/* =========================================================
   GOOGLE
========================================================= */

.bubble-google {
    bottom: 40px;
    right: 35px;

    background:
        conic-gradient(from 45deg,
            #7baaf7 0deg 90deg,
            #82d69a 90deg 180deg,
            #ffe08a 180deg 270deg,
            #f58f98 270deg 360deg);

    animation-delay: -3s;
}

.platform-go {
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.04em;
    color: #4285F4;
    line-height: 1;
    padding: 5px 6px;
    background: rgba(255, 255, 255, .78);
    border: 1.5px solid rgba(255, 255, 255, .95);
    border-radius: 7px;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, .08);

    box-shadow:
        0 3px 10px rgba(0, 0, 0, .08);
}

/* =========================================================
   SOCIAL PLATFORM MOVING MARQUEE
========================================================= */

#proof.social-marquee-section {
    position: relative;
    overflow: hidden;
    padding: 22px 0;
    background: var(--bg2);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
}

/* subtle glow */
.social-marquee-glow {
    position: absolute;
    width: 500px;
    height: 100px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background:
        radial-gradient(ellipse,
            rgba(139, 92, 246, .09),
            transparent 70%);

    filter: blur(25px);
    pointer-events: none;
}

/* =========================================================
   TRACK
========================================================= */

.social-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;

    mask-image:
        linear-gradient(90deg,
            transparent,
            black 8%,
            black 92%,
            transparent);
}

.social-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 24px;

    animation:
        socialMarqueeMove 18s linear infinite;

    will-change: transform;
}

.social-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 24px;
}

/* =========================================================
   ITEMS
========================================================= */

.social-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--tx2);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: .25s ease;
}

.social-marquee-item:hover {
    color: var(--tx);
    transform: translateY(-2px);
}

/* =========================================================
   MINI ICONS
========================================================= */

.social-mini-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: -.03em;
    border: 1px solid rgba(255, 255, 255, .15);

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .12);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.social-marquee-item:hover .social-mini-icon {
    transform: rotate(-5deg) scale(1.08);

    box-shadow:
        0 8px 25px rgba(139, 92, 246, .20);
}

/* YouTube-inspired */
.social-yt {
    background:
        linear-gradient(145deg,
            #ff6477,
            #e5395c);
}

/* Instagram-inspired */
.social-ig {
    background:
        linear-gradient(145deg,
            #ffb15c,
            #e85a9d 55%,
            #8054c9);
}

/* Facebook-inspired */
.social-fb {
    background:
        linear-gradient(145deg,
            #66a4ff,
            #4779e8);
}

/* Google-inspired */
.social-go {
    color: #4285F4;

    background:
        linear-gradient(145deg,
            #dceaff,
            #ffffff);

    border-color:
        rgba(66, 133, 244, .18);
}

/* =========================================================
   SEPARATOR
========================================================= */

.social-separator {
    font-style: normal;
    color: var(--pur);
    font-size: .65rem;
    opacity: .65;

    animation:
        separatorPulse 2s ease-in-out infinite;
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes socialMarqueeMove {

    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--marquee-shift)),
                0,
                0);
    }

}

@keyframes separatorPulse {

    0%,
    100% {
        opacity: .35;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}

/* Pause on hover */
.social-marquee:hover .social-marquee-track {
    animation-play-state: paused;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #proof.social-marquee-section {
        padding: 17px 0;
    }

    .social-marquee-track {
        gap: 18px;
        animation-duration: 24s;
    }

    .social-marquee-group {
        gap: 18px;
    }

    .social-marquee-item {
        font-size: .68rem;
    }

    .social-mini-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        font-size: .55rem;
    }

    .social-separator {
        font-size: .55rem;
    }

}

/* =========================================================
   PLATFORM CATEGORIES
========================================================= */

.platform-categories {
    position: relative;
    overflow: hidden;
    padding: 95px 0 110px;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(139, 92, 246, .08),
            transparent 30%),
        radial-gradient(circle at 90% 80%,
            rgba(59, 130, 246, .07),
            transparent 30%),
        var(--bg);
}

/* =========================================================
   BACKGROUND GLOW
========================================================= */

.platform-bg-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: .35;
    animation: platformGlowMove 8s ease-in-out infinite alternate;
}

.platform-glow-1 {
    left: -220px;
    top: 25%;
    background: rgba(139, 92, 246, .12);
}

.platform-glow-2 {
    right: -220px;
    bottom: 10%;
    background: rgba(59, 130, 246, .10);
    animation-delay: -4s;
}

@keyframes platformGlowMove {

    from {
        transform: translateY(-25px) scale(.9);
    }

    to {
        transform: translateY(25px) scale(1.08);
    }

}

/* =========================================================
   HEADING
========================================================= */

.platform-heading {
    margin-bottom: 55px;
}

.platform-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #8b5cf6;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow-line {
    width: 28px;
    height: 2px;
    border-radius: 20px;

    background: linear-gradient(90deg,
            #8b5cf6,
            #3b82f6);
}

.platform-title {
    margin: 0;

    font-size: clamp(2.3rem,
            4vw,
            3.5rem);

    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.045em;
    color: var(--tx);
}

.platform-title span {
    background:
        linear-gradient(135deg,
            #8b5cf6,
            #6366f1,
            #3b82f6);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.platform-subtitle {
    max-width: 650px;
    margin-top: 18px;
    color: var(--tx2);
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================================
   GRID
========================================================= */

.platform-grid {
    position: relative;
    z-index: 2;
}

/* =========================================================
   CARD
========================================================= */

.platform-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .10),
        0 2px 8px rgba(0, 0, 0, .06);

    transition:
        transform .4s cubic-bezier(.2, .8, .2, 1),
        box-shadow .4s ease;

    cursor: pointer;
}

.platform-card:hover {
    transform:
        translateY(-9px);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .18),
        0 8px 20px rgba(99, 102, 241, .10);
}

/* =========================================================
   MAIN COLOR AREA
========================================================= */

.platform-card-main {
    position: relative;
    min-height: 250px;
    padding: 38px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

/* =========================================================
   SHINE
========================================================= */

.platform-shine {
    position: absolute;
    width: 180px;
    height: 500px;
    top: -100px;
    left: -250px;
    transform: rotate(25deg);

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .16),
            transparent);

    transition:
        left .8s ease;
}

.platform-card:hover .platform-shine {
    left: 120%;
}

/* =========================================================
   YOUTUBE
========================================================= */

.platform-youtube .platform-card-main {
    background:
        linear-gradient(135deg,
            #d90000 0%,
            #e90022 55%,
            #c80000 100%);
}

/* =========================================================
   INSTAGRAM
========================================================= */

.platform-instagram .platform-card-main {
    background:
        linear-gradient(135deg,
            #ffb347 0%,
            #f34c63 42%,
            #d51d76 72%,
            #b91383 100%);
}

/* =========================================================
   REELS
========================================================= */

.platform-reels .platform-card-main {
    background:
        linear-gradient(120deg,
            #b900c9 0%,
            #ed005b 38%,
            #ff2411 70%,
            #ffc21c 100%);
}

/* =========================================================
   FACEBOOK
========================================================= */

.platform-facebook .platform-card-main {
    background:
        linear-gradient(135deg,
            #5b9bf6,
            #4388ef,
            #3982ed);
}

/* =========================================================
   DEFAULT
========================================================= */

.platform-default .platform-card-main {
    background:
        linear-gradient(135deg,
            #8b5cf6,
            #6366f1,
            #3b82f6);
}

/* =========================================================
   ICON AREA
========================================================= */

.platform-symbol {
    position: relative;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* =========================================================
   YOUTUBE-STYLE CUSTOM SYMBOL
========================================================= */

.symbol-play {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;

    background:
        linear-gradient(145deg,
            #ff5a7d,
            #ec3d68);

    box-shadow:
        inset 10px 10px 18px rgba(255, 255, 255, .12),
        inset -10px -12px 20px rgba(0, 0, 0, .14),
        0 15px 35px rgba(0, 0, 0, .20);

    transition:
        transform .45s ease;
}

.platform-card:hover .symbol-play {
    transform: scale(1.07) rotate(-4deg);
}

.symbol-play::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    left: 17px;
    top: 17px;
    border-radius: 50%;

    border-bottom:
        12px solid rgba(110, 0, 45, .25);

    transform: rotate(-25deg);
}

.symbol-play span {
    position: absolute;
    left: 58px;
    top: 45px;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 45px solid #fff;

    filter:
        drop-shadow(0 4px 4px rgba(0, 0, 0, .08));
}

/* =========================================================
   INSTAGRAM-STYLE CUSTOM SYMBOL
========================================================= */

.symbol-camera {
    position: relative;
    width: 155px;
    height: 155px;
    border-radius: 38px;

    background:
        linear-gradient(145deg,
            #ffd36a,
            #ff7048 45%,
            #df327f 75%,
            #9a43c7);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, .18);

    transition:
        transform .45s ease;
}

.platform-card:hover .symbol-camera {
    transform: scale(1.06) rotate(3deg);
}

.symbol-camera::before {
    content: "";
    position: absolute;
    inset: 27px;
    border: 9px solid rgba(255, 255, 255, .96);
    border-radius: 30px;
}

.camera-lens {
    position: absolute;
    width: 52px;
    height: 52px;
    left: 45px;
    top: 51px;
    border: 9px solid white;
    border-radius: 50%;
}

.camera-dot {
    position: absolute;
    width: 17px;
    height: 17px;
    right: 30px;
    top: 30px;
    background: white;
    border-radius: 50%;
}

/* =========================================================
   REELS STYLE
========================================================= */

.symbol-reels {
    position: relative;
    width: 155px;
    height: 155px;
    border: 10px solid white;
    border-radius: 35px;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
    transition: transform .45s ease;
}

.platform-card:hover .symbol-reels {
    transform: scale(1.06) rotate(-3deg);
}

.reels-top {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 35px;
    height: 10px;
    background: white;
    border-radius: 10px;
}

.reels-top::before,
.reels-top::after {
    content: "";
    position: absolute;
    width: 42px;
    height: 10px;
    background: white;
    border-radius: 10px;
    transform: rotate(45deg);
    transform-origin: left center;
}

.reels-top::before {
    left: 17px;
}

.reels-top::after {
    left: 62px;
}

.reels-play {
    position: absolute;
    left: 58px;
    top: 67px;
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 34px solid white;
}

/* =========================================================
   LETTER BASE
========================================================= */

.symbol-letter {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
    transition: transform .45s ease;
}

.platform-card:hover .symbol-letter {
    transform: scale(1.07) rotate(-3deg);
}

/* FACEBOOK */
.symbol-fb {
    background:
        linear-gradient(145deg,
            #4d7cf4,
            #2763d9);

    font-size: 7rem;
    font-family: Arial, sans-serif;
    line-height: 1;
    padding-top: 27px;
}

/* GOOGLE */
.platform-google .platform-card-main {
    background:
        linear-gradient(135deg,
            #4285F4 0%,
            #5b7ff2 35%,
            #7b61e8 65%,
            #8b5cf6 100%);
}

.symbol-google {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    background:
        conic-gradient(from 35deg,
            #4285F4 0deg 90deg,
            #34A853 90deg 180deg,
            #FBBC05 180deg 270deg,
            #EA4335 270deg 360deg);

    color: #ffffff;
    font-size: 76px;
    font-weight: 800;
    font-family: "Space Grotesk", sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    box-shadow: 0 18px 45px rgba(66, 133, 244, .25);
    position: relative;
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* Inner white area */
.symbol-google::before {
    content: "";
    position: absolute;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #ffffff;
}


/* G stays above whitecircle */

.symbol-google {
    isolation: isolate;
}

.symbol-google {
    z-index: 1;
}

.symbol-google::after {
    content: "G";
    position: absolute;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #4285F4;
    font-size: 62px;
    font-weight: 800;
    z-index: 2;
}

/* Hover */
.platform-google:hover .symbol-google {
    transform: translateY(-8px) scale(1.06);

    box-shadow:
        0 25px 60px rgba(66, 133, 244, .35);
}

/* GENERIC */
.symbol-generic {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: white;
    font-size: 4rem;
    border: 2px solid rgba(255, 255, 255, .35);
}

/* =========================================================
   CARD TITLE
========================================================= */
.platform-card-title {
    width: 45%;
    position: relative;
    z-index: 3;
    color: white;
}

.platform-card-title h3 {
    margin: 0;
    font-size: 1.85rem;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -.03em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .12);
}

.platform-card-title h3 span {
    display: inline-block;
}

/* =========================================================
   FOOTER
========================================================= */

.platform-card-footer {
    min-height: 64px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #fff;
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 5;

    transition:
        background .3s ease,
        color .3s ease;
}

.platform-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f2f8;
    color: #6366f1;
    font-size: .75rem;

    transition:
        transform .3s ease,
        background .3s ease;
}

.platform-card:hover .platform-arrow {
    transform: translateX(5px);
    background: #6366f1;
    color: white;
}

/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.platform-view-all {
    margin-top: 55px;
}

.platform-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px 13px 24px;
    border-radius: 13px;
    text-decoration: none;
    color: white;
    font-weight: 700;

    background:
        linear-gradient(135deg,
            #8b5cf6,
            #3b82f6);

    box-shadow: 0 12px 30px rgba(99, 102, 241, .25);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.platform-all-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(99, 102, 241, .35);
}

.all-btn-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .18);
}

/* =========================================================
   CARD ENTRANCE ANIMATION
========================================================= */

.platform-grid .rv {
    animation:
        categoryCardIn .7s cubic-bezier(.2, .8, .2, 1) both;
}

.platform-grid .rv:nth-child(1) {
    animation-delay: .05s;
}

.platform-grid .rv:nth-child(2) {
    animation-delay: .12s;
}

.platform-grid .rv:nth-child(3) {
    animation-delay: .19s;
}

.platform-grid .rv:nth-child(4) {
    animation-delay: .26s;
}

.platform-grid .rv:nth-child(5) {
    animation-delay: .33s;
}

.platform-grid .rv:nth-child(6) {
    animation-delay: .40s;
}

@keyframes categoryCardIn {

    from {
        opacity: 0;

        transform:
            translateY(35px) scale(.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .platform-card-main {
        min-height: 300px;
    }

    .symbol-play,
    .symbol-camera,
    .symbol-reels,
    .symbol-letter,
    .symbol-x,
    .symbol-music,
    .symbol-generic {
        width: 125px;
        height: 125px;
    }

    .symbol-play span {
        left: 49px;
        top: 38px;

        border-top-width: 25px;
        border-bottom-width: 25px;
        border-left-width: 38px;
    }

    .symbol-camera::before {
        inset: 22px;
    }

    .camera-lens {
        left: 41px;
        top: 41px;
    }

    .platform-card-title h3 {
        font-size: 1.55rem;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .platform-categories {
        padding: 70px 0 80px;
    }

    .platform-heading {
        margin-bottom: 35px;
    }

    .platform-title {
        font-size: 2.15rem;
    }

    .platform-subtitle {
        font-size: .88rem;
    }

    .platform-card-main {
        min-height: 270px;

        padding: 25px 20px;
    }

    .platform-symbol {
        width: 48%;
    }

    .platform-card-title {
        width: 48%;
    }

    .platform-card-title h3 {
        font-size: 1.35rem;
    }

    .symbol-play,
    .symbol-camera,
    .symbol-reels,
    .symbol-letter,
    .symbol-x,
    .symbol-music,
    .symbol-generic {
        width: 105px;
        height: 105px;
    }

    .symbol-play span {
        left: 41px;
        top: 31px;

        border-top-width: 21px;
        border-bottom-width: 21px;
        border-left-width: 31px;
    }

    .symbol-camera::before {
        inset: 18px;

        border-width: 7px;
    }

    .camera-lens {
        width: 38px;
        height: 38px;

        left: 33px;
        top: 33px;

        border-width: 7px;
    }

    .camera-dot {
        width: 12px;
        height: 12px;

        right: 20px;
        top: 20px;
    }

    .symbol-fb {
        font-size: 5rem;
        padding-top: 20px;
    }

    .symbol-in {
        font-size: 3.4rem;
    }

    .symbol-x {
        font-size: 4rem;
    }

    .symbol-music {
        font-size: 5rem;
    }

    .platform-card-footer {
        min-height: 58px;

        font-size: .82rem;
    }

    .platform-arrow {
        width: 27px;
        height: 27px;
    }

}

/* =========================================================
   COLORFUL FEATURES
========================================================= */

.features-colorful {
    position: relative;
    overflow: hidden;
}

/* CARD */
.feature-card {
    position: relative;
    padding: 30px;
    border-radius: 22px;
    min-height: 280px;

    border: 1px solid rgba(0, 0, 0, .05);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

    overflow: hidden;
}

/* Decorative soft circle */
.feature-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    right: -45px;
    bottom: -45px;
    background: rgba(255, 255, 255, .35);
    transition: transform .4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .10);
}

.feature-card:hover::after {
    transform: scale(1.4);
}

/* =========================================================
   COLORS
========================================================= */

.fc-orange {
    background: #fff1e8;
    border-color: #ffd8c2;
}

.fc-orange .feature-icon {
    background: #ff7a2f;
    color: #fff;
}

.fc-orange .feature-tag {
    background: #ffe0cf;
    color: #e85d0f;
}

.fc-blue {
    background: #edf5ff;
    border-color: #d4e7ff;
}

.fc-blue .feature-icon {
    background: #4f8df7;
    color: #fff;
}

.fc-blue .feature-tag {
    background: #dceaff;
    color: #2867d5;
}

.fc-green {
    background: #ecfaf3;
    border-color: #cdeedc;
}

.fc-green .feature-icon {
    background: #2dbb78;
    color: #fff;
}

.fc-green .feature-tag {
    background: #d7f4e4;
    color: #168653;
}

.fc-purple {
    background: #f5efff;
    border-color: #e5d7ff;
}

.fc-purple .feature-icon {
    background: #8b5cf6;
    color: #fff;
}

.fc-purple .feature-tag {
    background: #e9ddff;
    color: #7040d8;
}

.fc-pink {
    background: #fff0f5;
    border-color: #ffd6e4;
}

.fc-pink .feature-icon {
    background: #ec5b91;
    color: #fff;
}

.fc-pink .feature-tag {
    background: #ffdce9;
    color: #d63c73;
}

.fc-yellow {
    background: #fff9df;
    border-color: #f6e9ae;
}

.fc-yellow .feature-icon {
    background: #eab308;
    color: #fff;
}

.fc-yellow .feature-tag {
    background: #fff0b8;
    color: #a87800;
}

/* =========================================================
   ICON
========================================================= */

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 2;
}

/* =========================================================
   TEXT
========================================================= */

.feature-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.feature-card p {
    position: relative;
    z-index: 2;
    font-size: .9rem;
    line-height: 1.7;
    color: #667085;
    margin-bottom: 20px;
}

/* =========================================================
   TAG
========================================================= */

.feature-tag {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1px;
}

.feature-tag i {
    font-size: .68rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .feature-card {
        padding: 25px;
        min-height: auto;
    }

    .feature-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 18px;
    }

}

/* =========================================================
   COMPACT SOCIAL GROWTH BANNER
   ========================================================= */

.social-growth-banner {
    padding: 45px 0;
    overflow: hidden;
}


/* MAIN BANNER */

.growth-banner {
    position: relative;
    overflow: hidden;

    max-width: 1400px;
    min-height: 330px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    border-radius: 26px;

    background:
        linear-gradient(110deg,
            #fff3e9 0%,
            #f7f0ff 52%,
            #eef7ff 100%);

    border: 1px solid rgba(0, 0, 0, .05);

    box-shadow:
        0 15px 40px rgba(31, 41, 55, .07);
}


/* =========================================================
   BACKGROUND ORBS
   ========================================================= */

.growth-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.growth-orb-1 {
    width: 190px;
    height: 190px;

    background: rgba(249, 115, 22, .10);

    left: -70px;
    top: -90px;
}

.growth-orb-2 {
    width: 220px;
    height: 220px;

    background: rgba(139, 92, 246, .08);

    right: -80px;
    bottom: -110px;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.growth-banner-content {
    position: relative;
    z-index: 5;

    padding: 42px 20px 42px 45px;
}


.growth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 6px 12px;

    margin-bottom: 13px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .8);

    color: #e85d0f;

    font-size: .7rem;
    font-weight: 700;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .04);
}


.growth-eyebrow i {
    font-size: .68rem;
}


/* =========================================================
   HEADING
   ========================================================= */

.growth-banner-content h2 {
    max-width: 600px;

    margin: 0 0 10px;

    color: #1f2937;

    font-size: clamp(1.8rem, 3vw, 2.7rem);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;
}


.growth-banner-content h2 span {
    display: inline;

    background:
        linear-gradient(90deg,
            #f97316,
            #ec4899,
            #8b5cf6);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.growth-banner-content p {
    max-width: 510px;

    margin: 0 0 18px;

    color: #667085;

    font-size: .88rem;

    line-height: 1.6;
}


/* =========================================================
   BUTTON
   ========================================================= */

.growth-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 17px;

    border-radius: 10px;

    background: #f97316;
    color: #fff;

    text-decoration: none;

    font-size: .78rem;
    font-weight: 700;

    box-shadow:
        0 7px 16px rgba(249, 115, 22, .20);

    transition: all .25s ease;
}


.growth-btn:hover {
    background: #ea580c;
    color: #fff;

    transform: translateY(-2px);
}


.growth-btn i {
    transition: transform .2s ease;
}


.growth-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.growth-banner-visual {
    position: relative;

    height: 330px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* =========================================================
   CIRCLE
   ========================================================= */

.visual-circle {
    position: absolute;

    width: 255px;
    height: 255px;

    right: 55px;
    bottom: 25px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .78);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .05);
}


/* =========================================================
   CHARACTER
   ========================================================= */

.growth-character {
    position: relative;
    z-index: 3;

    height: 315px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.growth-character img {
    position: relative;
    z-index: 3;

    width: min(100%, 330px);

    max-height: 315px;

    object-fit: contain;

    filter:
        drop-shadow(0 12px 15px rgba(0, 0, 0, .10));

    transition: transform .35s ease;
}


.growth-banner:hover .growth-character img {
    transform: translateY(-4px);
}


.character-glow {
    position: absolute;

    width: 180px;
    height: 55px;

    bottom: 15px;

    border-radius: 50%;

    background: rgba(249, 115, 22, .15);

    filter: blur(22px);
}


/* =========================================================
   SMALL FLOATING LABELS
   ========================================================= */

.mini-stat {
    position: absolute;
    z-index: 6;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 8px 11px;

    background: rgba(255, 255, 255, .92);

    border-radius: 10px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .08);

    color: #344054;

    font-size: .65rem;
    font-weight: 700;

    white-space: nowrap;
}


.mini-stat i {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #eaf8ef;

    color: #20a464;

    font-size: .65rem;
}


.mini-stat-bottom i {
    background: #ffe9f0;
    color: #e94d83;
}


.mini-stat-top {
    top: 48px;
    right: 15px;
}


.mini-stat-bottom {
    bottom: 45px;
    left: 25px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .growth-banner-content {
        padding: 35px 25px 15px;
        text-align: center;
    }

    .growth-banner-content h2,
    .growth-banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .growth-banner-visual {
        height: 280px;
    }

    .growth-character {
        height: 275px;
    }

    .growth-character img {
        max-height: 275px;
    }

    .visual-circle {
        width: 220px;
        height: 220px;

        right: 50%;
        transform: translateX(50%);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .social-growth-banner {
        padding: 30px 10px;
    }

    .growth-banner {
        min-height: auto;
        border-radius: 20px;
    }

    .growth-banner-content {
        padding: 30px 18px 10px;
    }

    .growth-banner-content h2 {
        font-size: 1.85rem;
    }

    .growth-banner-content p {
        font-size: .82rem;
    }

    .growth-banner-visual {
        height: 250px;
    }

    .growth-character {
        height: 245px;
    }

    .growth-character img {
        max-height: 245px;
        width: 280px;
    }

    .visual-circle {
        width: 190px;
        height: 190px;

        bottom: 15px;
    }

    .mini-stat-top {
        top: 20px;
        right: 10px;
    }

    .mini-stat-bottom {
        bottom: 20px;
        left: 10px;
    }

}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {
    position: relative;
    background: #fafbfc;
    overflow: hidden;
}


/* =========================================================
   STEPS WRAPPER
   ========================================================= */

.how-steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================================
   CONNECTING LINE
   ========================================================= */

.how-steps::before {
    content: "";

    position: absolute;

    top: 48px;
    left: 12%;
    right: 12%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #ffcfb2,
            #c8ddff,
            #dcc9ff,
            #c5edd9
        );

    z-index: 0;
}


/* =========================================================
   STEP
   ========================================================= */

.how-step {
    position: relative;
    z-index: 1;
}


/* =========================================================
   CARD
   ========================================================= */

.how-card {
    position: relative;

    min-height: 255px;

    padding: 25px 22px 24px;

    border-radius: 20px;

    border: 1px solid transparent;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.how-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 16px 35px rgba(31,41,55,.09);
}


/* =========================================================
   CARD COLORS
   ========================================================= */

.how-orange {
    background: #fff1e8;
    border-color: #ffd9c3;
}


.how-blue {
    background: #edf5ff;
    border-color: #d5e7ff;
}


.how-purple {
    background: #f5efff;
    border-color: #e4d7ff;
}


.how-green {
    background: #ecfaf3;
    border-color: #ceeedc;
}


/* =========================================================
   TOP AREA
   ========================================================= */

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}


/* =========================================================
   STEP NUMBER
   ========================================================= */

.step-no {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: #fff;

    font-size: .75rem;
    font-weight: 800;

    color: #667085;

    box-shadow:
        0 5px 15px rgba(0,0,0,.06);
}


/* Individual number colors */

.how-orange .step-no {
    color: #e85d0f;
}

.how-blue .step-no {
    color: #2867d5;
}

.how-purple .step-no {
    color: #7040d8;
}

.how-green .step-no {
    color: #168653;
}


/* =========================================================
   ICON
   ========================================================= */

.how-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    font-size: 20px;

    color: #fff;

    box-shadow:
        0 8px 18px rgba(0,0,0,.08);
}


.how-orange .how-icon {
    background: #ff7a2f;
}


.how-blue .how-icon {
    background: #4f8df7;
}


.how-purple .how-icon {
    background: #8b5cf6;
}


.how-green .how-icon {
    background: #2dbb78;
}


/* =========================================================
   TEXT
   ========================================================= */

.how-card h4 {
    margin-bottom: 9px;

    color: #1f2937;

    font-size: 1.05rem;
    font-weight: 750;
}


.how-card p {
    margin: 0;

    color: #667085;

    font-size: .84rem;

    line-height: 1.65;
}


/* =========================================================
   LITTLE ARROW BETWEEN CARDS
   ========================================================= */

.how-step:not(:last-child)::after {
    content: "\f061";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;

    z-index: 4;

    top: 39px;
    right: -18px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: #98a2b3;

    font-size: 11px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.07);
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.how-card::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -35px;
    bottom: -40px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);

    transition: transform .4s ease;

    pointer-events: none;
}


.how-card:hover::after {
    transform: scale(1.5);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-steps::before {
        display: none;
    }

    .how-step::after {
        display: none !important;
    }

}


@media (max-width: 575px) {

    .how-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .how-card {
        min-height: auto;
        padding: 22px;
    }

    .step-top {
        margin-bottom: 18px;
    }

}

/* =========================================================
   PRICING
   ========================================================= */

.pricing-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f5f8ff 100%
        );
}


/* =========================================================
   PRICING CARDS
   ========================================================= */

.price-card {
    position: relative;

    padding: 27px;

    border-radius: 22px;

    border: 1px solid rgba(70, 110, 180, .14);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* ---------------------------------------------------------
   CARD COLORS
   --------------------------------------------------------- */

/* Blue + very light lavender */
.price-ig {
    background: #f0f5ff;

    border-color: #d7e4fb;
}


/* Strongest blue */
.price-fb {
    background: #eaf3ff;

    border-color: #c8ddfa;
}


/* Blue + mint */
.price-yt {
    background: #eef9f7;

    border-color: #d0ebe5;
}


.price-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(42, 76, 125, .11);
}


/* =========================================================
   POPULAR CARD
   ========================================================= */

.price-fb.popular {
    border: 2px solid #6f9fe9;

    box-shadow:
        0 12px 32px rgba(63, 113, 190, .14);
}


.price-fb.popular:hover {
    box-shadow:
        0 20px 42px rgba(63, 113, 190, .20);
}


/* =========================================================
   POPULAR BADGE
   ========================================================= */

.popular-badge {
    position: absolute;

    top: 17px;
    right: 17px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 6px 11px;

    border-radius: 50px;

    background: #d7e7ff;

    color: #2864bb;

    font-size: .62rem;

    font-weight: 800;

    box-shadow:
        0 4px 10px rgba(50, 100, 180, .08);
}


.popular-badge i {
    font-size: .55rem;
}


/* =========================================================
   PLATFORM TOP
   ========================================================= */

.price-top {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 20px;
}


/* =========================================================
   PLATFORM ICON
   ========================================================= */

.platform-icon {
    width: 49px;
    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    color: #fff;

    font-size: 19px;

    box-shadow:
        0 8px 18px rgba(50, 100, 180, .15);
}


/* IG = blue-indigo */

.price-ig .platform-icon {
    background:
        linear-gradient(
            135deg,
            #5b8def,
            #7567d9
        );
}


/* FB = main blue */

.price-fb .platform-icon {
    background:
        linear-gradient(
            135deg,
            #4f8df7,
            #3974d5
        );
}


/* YT = blue + teal */

.price-yt .platform-icon {
    background:
        linear-gradient(
            135deg,
            #4388d8,
            #35a895
        );
}


/* =========================================================
   PLATFORM LABEL
   ========================================================= */

.platform-label {
    display: block;

    color: #334155;

    font-size: .79rem;

    font-weight: 850;

    letter-spacing: .08em;
}


.price-top small {
    display: block;

    margin-top: 2px;

    color: #8290a5;

    font-size: .65rem;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.price-card h3 {
    margin: 0 0 8px;

    color: #1e293b;

    font-size: 1.22rem;

    font-weight: 800;
}


.price-description {
    min-height: 50px;

    margin: 0;

    color: #66758a;

    font-size: .83rem;

    line-height: 1.6;
}


/* =========================================================
   PRICE
   ========================================================= */

.price-box {
    display: flex;

    align-items: baseline;

    gap: 7px;

    margin-top: 20px;
}


.price-amount {
    color: #2864b8;

    font-size: 3.15rem;

    line-height: 1;

    font-weight: 850;

    letter-spacing: -2px;
}


.price-amount sup {
    position: relative;

    top: -.7em;

    margin-right: 2px;

    font-size: 1.1rem;

    font-weight: 750;
}


.price-box span {
    color: #8290a5;

    font-size: .73rem;

    font-weight: 500;
}


/* Slight color variation */

.price-ig .price-amount {
    color: #536fc4;
}


.price-fb .price-amount {
    color: #2864b8;
}


.price-yt .price-amount {
    color: #287d86;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.price-divider {
    height: 1px;

    margin: 21px 0 18px;

    background: rgba(92, 124, 170, .15);
}


/* =========================================================
   FEATURES
   ========================================================= */

.price-features {
    display: flex;

    flex-direction: column;

    gap: 11px;
}


.price-features div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #475569;

    font-size: .79rem;
}


.price-features i {
    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #dbe9fc;

    color: #3271c7;

    font-size: .55rem;
}


/* Color variation for check circles */

.price-ig .price-features i {
    background: #e2e5ff;

    color: #6467c9;
}


.price-fb .price-features i {
    background: #d8e8ff;

    color: #3474d1;
}


.price-yt .price-features i {
    background: #d9f0eb;

    color: #318c81;
}


/* =========================================================
   BUTTON
   ========================================================= */

.price-btn {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: 100%;

    margin-top: 25px;

    padding: 11px 15px;

    border-radius: 11px;

    color: #fff;

    text-decoration: none;

    font-size: .8rem;

    font-weight: 750;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


/* IG */

.price-ig .price-btn {
    background:
        linear-gradient(
            135deg,
            #6389e9,
            #6868d5
        );

    box-shadow:
        0 7px 16px rgba(91, 112, 210, .18);
}


/* FB */

.price-fb .price-btn {
    background:
        linear-gradient(
            135deg,
            #4f8df7,
            #3976d8
        );

    box-shadow:
        0 7px 16px rgba(79, 141, 247, .20);
}


/* YT */

.price-yt .price-btn {
    background:
        linear-gradient(
            135deg,
            #428bd4,
            #3b9f91
        );

    box-shadow:
        0 7px 16px rgba(54, 143, 145, .18);
}


.price-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    filter: brightness(.96);

    box-shadow:
        0 11px 23px rgba(50, 90, 150, .20);
}


.price-btn i {
    font-size: .68rem;

    transition:
        transform .2s ease;
}


.price-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   COLORFUL CARD DECORATION
   ========================================================= */

.price-card::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    background: rgba(255,255,255,.48);

    pointer-events: none;

    transition:
        transform .4s ease;
}


.price-card:hover::after {
    transform: scale(1.5);
}


/* Small top glow */

.price-card::before {
    content: "";

    position: absolute;

    width: 75px;
    height: 75px;

    top: -40px;
    left: 30%;

    border-radius: 50%;

    background: rgba(255,255,255,.35);

    pointer-events: none;
}


/* =========================================================
   BOTTOM NOTE
   ========================================================= */

.pricing-note {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 26px;

    color: #7b8799;

    font-size: .7rem;
}


.pricing-note i {
    color: #4285d4;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .price-description {
        min-height: auto;
    }

}


@media (max-width: 575px) {

    .price-card {
        padding: 23px;

        border-radius: 19px;
    }


    .price-amount {
        font-size: 2.75rem;
    }


    .pricing-note {
        flex-direction: column;

        text-align: center;
    }

}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials-section {
    position: relative;
    overflow: hidden;

    background: #f8fbff;
}


/* =========================================================
   SLIDER
   ========================================================= */

.testimonial-slider {
    width: 100%;

    overflow: hidden;

    padding: 8px 0 18px;
}


.testimonial-track {
    display: flex;

    width: max-content;

    gap: 20px;

    animation:
        testimonialScroll 38s linear infinite;
}


/* Pause when user hovers */

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}


/* =========================================================
   CARDS
   ========================================================= */

.tcard {
    position: relative;

    width: 330px;

    min-height: 225px;

    padding: 23px;

    flex-shrink: 0;

    border-radius: 20px;

    border: 1px solid transparent;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.tcard:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 35px rgba(40,70,110,.10);
}


/* =========================================================
   CARD COLORS
   Same language as How It Works
   ========================================================= */

.tcard-blue {
    background: #edf5ff;
    border-color: #d5e6fc;
}


.tcard-purple {
    background: #f4efff;
    border-color: #e3d7fb;
}


.tcard-green {
    background: #ecfaf3;
    border-color: #d0eddd;
}


.tcard-orange {
    background: #fff4e9;
    border-color: #f9dfc8;
}


.tcard-sky {
    background: #eef8ff;
    border-color: #d4eafb;
}


.tcard-teal {
    background: #edf9f8;
    border-color: #d0ebe8;
}


/* =========================================================
   TOP
   ========================================================= */

.tcard-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 17px;
}


/* =========================================================
   QUOTE ICON
   ========================================================= */

.quote-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: rgba(255,255,255,.75);

    color: #4f8df7;

    font-size: 14px;

    box-shadow:
        0 5px 12px rgba(0,0,0,.04);
}


/* Color variations */

.tcard-purple .quote-icon {
    color: #8056d8;
}


.tcard-green .quote-icon {
    color: #23915f;
}


.tcard-orange .quote-icon {
    color: #e58a3c;
}


.tcard-sky .quote-icon {
    color: #4388c9;
}


.tcard-teal .quote-icon {
    color: #298f88;
}


/* =========================================================
   STARS
   ========================================================= */

.stars {
    color: #f4b740;

    font-size: .78rem;

    letter-spacing: 2px;
}


/* =========================================================
   TESTIMONIAL TEXT
   ========================================================= */

.testimonial-text {
    min-height: 78px;

    margin: 0;

    color: #475467;

    font-size: .84rem;

    line-height: 1.7;
}


/* =========================================================
   USER
   ========================================================= */

.user {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 18px;

    padding-top: 15px;

    border-top: 1px solid rgba(60,90,130,.10);
}


/* =========================================================
   AVATAR
   ========================================================= */

.avatar {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #4f8df7;

    color: #fff;

    font-size: .82rem;

    font-weight: 800;

    box-shadow:
        0 5px 12px rgba(50,100,170,.14);
}


/* Avatar colors */

.tcard-purple .avatar {
    background: #8056d8;
}


.tcard-green .avatar {
    background: #2dbb78;
}


.tcard-orange .avatar {
    background: #e99a50;
}


.tcard-sky .avatar {
    background: #4a91d1;
}


.tcard-teal .avatar {
    background: #319b91;
}


/* =========================================================
   USER INFO
   ========================================================= */

.user-info {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.user-info strong {
    color: #26364a;

    font-size: .78rem;

    font-weight: 750;
}


.user-info span {
    color: #7d8b9e;

    font-size: .64rem;
}


.user-info span i {
    margin-right: 3px;

    color: #3d8be5;

    font-size: .55rem;
}


/* =========================================================
   CARD DECORATION
   ========================================================= */

.tcard::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -38px;
    bottom: -40px;

    border-radius: 50%;

    background: rgba(255,255,255,.40);

    pointer-events: none;

    transition:
        transform .4s ease;
}


.tcard:hover::after {
    transform: scale(1.5);
}


/* =========================================================
   INFINITE SLIDER
   ========================================================= */

@keyframes testimonialScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .testimonial-track {
        gap: 14px;

        animation-duration: 32s;
    }


    .tcard {
        width: 290px;

        min-height: 220px;

        padding: 21px;
    }


    .testimonial-text {
        font-size: .81rem;
    }

}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    position: relative;

    overflow: hidden;

    background: #f8fbff;
}


/* =========================================================
   ACCORDION
   ========================================================= */

.faq-accordion {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.faq-accordion .accordion-item {
    position: relative;

    overflow: hidden;

    border: 1px solid transparent;

    border-radius: 16px;

    box-shadow:
        0 4px 14px rgba(40,70,110,.035);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.faq-accordion .accordion-item:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(40,70,110,.08);
}


/* =========================================================
   COLORFUL BACKGROUNDS
   ========================================================= */

.faq-blue {
    background: #edf5ff;

    border-color: #d6e6fa !important;
}


.faq-purple {
    background: #f4efff;

    border-color: #e3d8f8 !important;
}


.faq-green {
    background: #ecfaf3;

    border-color: #d2ecdd !important;
}


.faq-orange {
    background: #fff5e9;

    border-color: #f7dfc7 !important;
}


.faq-sky {
    background: #eef8ff;

    border-color: #d5eaf9 !important;
}


.faq-teal {
    background: #edf9f7;

    border-color: #d1ebe7 !important;
}


/* =========================================================
   BUTTON
   ========================================================= */

.faq-accordion .accordion-button {
    position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px 20px;

    background: transparent;

    color: #26364a;

    font-size: .87rem;

    font-weight: 750;

    box-shadow: none !important;
}


/* Remove Bootstrap background */

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;

    color: #26364a;

    box-shadow: none;
}


/* =========================================================
   FAQ ICON
   ========================================================= */

.faq-icon {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: rgba(255,255,255,.72);

    color: #4f8df7;

    font-size: .75rem;

    box-shadow:
        0 4px 10px rgba(30,70,120,.05);
}


/* Icon colors */

.faq-purple .faq-icon {
    color: #8056d8;
}


.faq-green .faq-icon {
    color: #269765;
}


.faq-orange .faq-icon {
    color: #e48a3d;
}


.faq-sky .faq-icon {
    color: #4389c9;
}


.faq-teal .faq-icon {
    color: #2b9189;
}


/* =========================================================
   ARROW
   ========================================================= */

.faq-accordion .accordion-button::after {
    width: 9px;
    height: 9px;

    margin-left: auto;

    background-size: 9px;

    opacity: .55;
}


.faq-accordion .accordion-button:not(.collapsed)::after {
    opacity: .75;
}


/* =========================================================
   ANSWER
   ========================================================= */

.faq-accordion .accordion-body {
    padding:

        0
        58px
        19px
        70px;

    color: #66758a;

    font-size: .81rem;

    line-height: 1.7;
}


/* =========================================================
   ACTIVE ITEM
   ========================================================= */

.faq-accordion
.accordion-item:has(.accordion-button:not(.collapsed)) {

    box-shadow:
        0 10px 26px rgba(40,70,110,.07);
}


/* =========================================================
   SMALL DECORATION
   ========================================================= */

.faq-accordion .accordion-item::after {
    content: "";

    position: absolute;

    width: 75px;
    height: 75px;

    right: -35px;
    bottom: -35px;

    border-radius: 50%;

    background: rgba(255,255,255,.38);

    pointer-events: none;

    transition:
        transform .35s ease;
}


.faq-accordion .accordion-item:hover::after {
    transform: scale(1.45);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .faq-accordion .accordion-button {
        padding: 15px 15px;

        gap: 10px;

        font-size: .82rem;
    }


    .faq-icon {
        width: 34px;
        height: 34px;

        border-radius: 10px;

        font-size: .68rem;
    }


    .faq-accordion .accordion-body {
        padding:
            0
            20px
            17px
            59px;

        font-size: .77rem;
    }

}



/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    position: relative;

    padding-top: 75px;
    padding-bottom: 75px;

    overflow: hidden;

    background: #f8fbff;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.contact-section .row {
    position: relative;

    z-index: 1;
}


/* =========================================================
   LEFT MAIN CARD
   ========================================================= */

.contact-main-card {
    position: relative;

    min-height: 100%;

    padding: 32px;

    overflow: hidden;

    border-radius: 22px;

    border: 1px solid #d8e6f6;

    background:
        linear-gradient(
            145deg,
            #edf5ff 0%,
            #f4f8ff 100%
        );

    box-shadow:
        0 10px 28px rgba(47, 82, 125, .07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.contact-main-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 17px 35px rgba(47, 82, 125, .11);
}


/* =========================================================
   LEFT DECORATIONS
   ========================================================= */

.contact-main-circle {
    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background: rgba(255,255,255,.48);

    pointer-events: none;
}


.contact-main-circle-small {
    position: absolute;

    width: 75px;
    height: 75px;

    right: 50px;
    bottom: -38px;

    border-radius: 50%;

    background: rgba(96,145,218,.08);

    pointer-events: none;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.contact-main-content {
    position: relative;

    z-index: 2;
}


/* =========================================================
   MINI LABEL
   ========================================================= */

.contact-mini-label {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    margin-bottom: 15px;

    border-radius: 50px;

    background: rgba(255,255,255,.72);

    color: #3978d4;

    font-size: .63rem;

    font-weight: 800;

    box-shadow:
        0 4px 10px rgba(55,100,160,.05);
}


.contact-mini-label i {
    font-size: .62rem;
}


/* =========================================================
   LEFT HEADING
   ========================================================= */

.contact-main-card h3 {
    margin: 0 0 10px;

    color: #24364d;

    font-size: 1.55rem;

    font-weight: 800;
}


.contact-main-card h3 span {
    font-size: 1.3rem;
}


/* =========================================================
   INTRO
   ========================================================= */

.contact-intro {
    max-width: 440px;

    margin: 0 0 24px;

    color: #6b7b90;

    font-size: .81rem;

    line-height: 1.7;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-detail {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;
}


.contact-detail:last-child {
    margin-bottom: 0;
}


/* =========================================================
   DETAIL ICON
   ========================================================= */

.contact-detail-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    font-size: .75rem;

    box-shadow:
        0 5px 12px rgba(50,90,140,.07);
}


/* BLUE */

.contact-blue {
    background: #dceaff;

    color: #3678d6;
}


/* PURPLE */

.contact-purple {
    background: #e8e3ff;

    color: #7062c7;
}


/* ORANGE */

.contact-orange {
    background: #ffecd9;

    color: #dc893d;
}


/* =========================================================
   DETAIL TEXT
   ========================================================= */

.contact-detail-text small {
    display: block;

    margin-bottom: 2px;

    color: #8794a7;

    font-size: .62rem;

    font-weight: 600;
}


.contact-detail-text strong {
    display: block;

    color: #35475e;

    font-size: .73rem;

    font-weight: 750;

    word-break: break-word;
}


/* =========================================================
   RIGHT OPTIONS
   ========================================================= */

.contact-options {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;

    height: 100%;
}


/* =========================================================
   OPTION CARD
   ========================================================= */

.contact-option {
    position: relative;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    padding: 22px;

    overflow: hidden;

    border-radius: 19px;

    border: 1px solid transparent;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.contact-option:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 28px rgba(45,75,115,.09);
}


/* =========================================================
   CARD COLORS
   ========================================================= */


/* BLUE */

.contact-blue-card {
    background: #edf5ff;

    border-color: #d5e5fa;
}


/* PURPLE */

.contact-purple-card {
    background: #f2efff;

    border-color: #e1dafa;
}


/* GREEN */

.contact-green-card {
    background: #ebfaf3;

    border-color: #d2ecdd;
}


/* ORANGE */

.contact-orange-card {
    background: #fff4e8;

    border-color: #f4dfc8;
}


/* =========================================================
   OPTION ICON
   ========================================================= */

.contact-option-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 11px;

    border-radius: 12px;

    background: rgba(255,255,255,.72);

    color: #3978d4;

    font-size: .78rem;

    box-shadow:
        0 5px 11px rgba(50,90,140,.05);
}


/* Icon colors */

.contact-purple-card .contact-option-icon {
    color: #7563c9;
}


.contact-green-card .contact-option-icon {
    color: #29946b;
}


.contact-orange-card .contact-option-icon {
    color: #dd8a3f;
}


/* =========================================================
   OPTION TEXT
   ========================================================= */

.contact-option-content h5 {
    margin: 0 0 4px;

    color: #2d3f56;

    font-size: .9rem;

    font-weight: 800;
}


.contact-option-content p {
    max-width: 220px;

    margin: 0;

    color: #718095;

    font-size: .69rem;

    line-height: 1.5;
}


/* =========================================================
   ARROW
   ========================================================= */

.contact-arrow {
    position: absolute;

    right: 15px;
    bottom: 15px;

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.65);

    color: #7590b2;

    font-size: .57rem;

    transition:
        transform .25s ease,
        background .25s ease;
}


.contact-option:hover .contact-arrow {
    transform: translateX(3px);

    background: rgba(255,255,255,.95);
}


/* =========================================================
   CARD DECORATION
   ========================================================= */

.contact-option::after {
    content: "";

    position: absolute;

    width: 75px;
    height: 75px;

    right: -35px;
    top: -35px;

    border-radius: 50%;

    background: rgba(255,255,255,.38);

    pointer-events: none;

    transition:
        transform .4s ease;
}


.contact-option:hover::after {
    transform: scale(1.5);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .contact-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }


    .contact-main-card {
        min-height: auto;
    }


    .contact-options {
        height: auto;
    }

}


@media (max-width: 767px) {

    .contact-options {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .contact-option {
        min-height: 135px;

        padding: 19px;
    }

}


@media (max-width: 575px) {

    .contact-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    .contact-main-card {
        padding: 25px;

        border-radius: 20px;
    }


    .contact-options {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .contact-option {
        min-height: 120px;

        padding: 19px;
    }


    .contact-main-card h3 {
        font-size: 1.4rem;
    }


    .contact-intro {
        font-size: .79rem;
    }

}


