/* ROOT VARIABLES */
:root {
    --primary: #6600cc;
    --secondary: #36d4e8;
    --dark: #1F2937;
    --muted: #6B7280;
    --light-bg: #F5F6FC;
}

/*GLOBAL STYLES */
body {
    font-family: 'Montserrat';
    color: var(--dark);
    padding-top: 80px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 90px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 50px;
}

/*BUTTONS */
.btn {
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #7b2cff);
    border: none;
    padding: 12px 28px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 0, 204, 0.35);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 26px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
}

/* =========================
    NAVBAR
========================= */
.navbar-custom {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

/* Icon SVG */
.brand-icon {
    height: 38px;
    /* icon size */
    width: auto;
}

/* Loader animation */
.logo-loader {
    animation: spinPulse 4s linear infinite;
    transform-origin: center;
}

@keyframes spinPulse {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.9;
    }
}

/* Text SVG */
.brand-text {
    height: 30px;
    /* text size */
    width: auto;
}

.brand-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin-right: 8px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-animated::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-animated:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Mobile Nav */
@media (max-width: 991px) {
    .navbar-nav {
        background: #ffffff;
        padding: 20px;
        border-radius: 18px;
        margin-top: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .nav-animated::after {
        display: none;
    }

    .brand-icon {
        height: 40px;
    }

    .brand-text {
        height: 40px;
    }
}

@media (max-width: 575px) {
    .logo-container {
        display: none !important;
    }
}



/* =========================
    HERO SECTION
========================= */
.hero-section {
    position: relative;
    padding: 70px 0 120px;
    overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    opacity: 0;
    transition: opacity .3s ease;
}

.hero-section:hover .carousel-control-prev-icon,
.hero-section:hover .carousel-control-next-icon {
    opacity: 1;
}


/* Background image */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.85),
            rgba(230, 230, 230, 0.75)),
        url("/assets/img/bg.jpg");
    background-size: cover;
    background-position: center;
    z-index: -3;
}

/* Optional soft glow */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.15),
            transparent 50%);
    z-index: -1;
}

.hero-badge {
    background: rgba(102, 0, 204, 0.12);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Typing effect */
.hero-title {
    opacity: 1;
    font-weight: bold;
}

/* Cursor */
.cursor {
    display: inline-block;
    margin-left: 4px;
    font-weight: 600;
}

/* Blink ONLY while typing */
.cursor.blink {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    /* color: var(--muted); */
    font-size: 1.1rem;
    max-width: 520px;
}

.gradient-shine {
    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary),
            var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineMove 4s linear infinite;
}

@keyframes shineMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}


.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image-wrapper img {
    border-radius: 3px;
    box-shadow: 0 35px 80px rgba(102, 0, 204, 0.35);
    transition: transform 0.4s ease;
}

.hero-image-wrapper img:hover {
    transform: scale(1.03);
}

.hero-image-wrapper::after {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(102, 0, 204, 0.25), transparent 70%);
    z-index: -1;
}

.carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
}


/* Dots */
.custom-indicators {
    bottom: -100px;
}

.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    border: none;
    margin: 0 7px;
    transition: all .35s ease;
    margin-right: 10px !important;
    margin-left: 10px !important;
}

/* hover */
.custom-indicators button:hover {
    transform: scale(1.2);
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}


/* active */
.custom-indicators .active {
    width: 40px;
    border-radius: 50%;
}

/* Arrows */
.custom-arrow {
    width: 0px;
}

.carousel-control-prev {
    left: -70px;
    /* move outside left */
}

.carousel-control-next {
    right: -70px;
    /* move outside right */
}

/* Make arrows vertically centered only */
.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    height: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 20px;
    background-size: 60% 60%;
}

@media (max-width: 992px) {
    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}



/*  HERO TEXT ANIMATION */

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.carousel-item.active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth fade transition override */
.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Prevent overlapping glitch */
.carousel-item {
    transition: opacity 0.8s ease-in-out !important;
}

/* PREMIUM HERO TEXT ANIMATION */

.animate-elements .animate-item {
    opacity: 0;
    transform: translateY(40px);
}

/* Active slide animation */
.carousel-item.active .animate-item {
    animation: heroFadeUp 0.8s ease forwards;
}

/* Stagger timing */
.carousel-item.active .animate-item:nth-child(1) {
    animation-delay: 0.2s;
}

.carousel-item.active .animate-item:nth-child(2) {
    animation-delay: 0.4s;
}

.carousel-item.active .animate-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth fade slide */
.carousel-fade .carousel-item {
    transition: opacity 0.9s ease-in-out;
}



/* =========================
    PROBLEM SECTION
========================= */
/* =========================
   PROBLEM SECTION PREMIUM
========================= */

.problem-section {
    background: linear-gradient(180deg, #ffffff, #f7f5ff);
    position: relative;
    overflow: hidden;
}

.problem-badge {
    background: rgba(102, 0, 204, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Card Base */
.problem-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;

    opacity: 0;
    transform: translateY(50px);
}

/* Scroll Reveal */
.problem-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Lift */
.problem-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 30px 70px rgba(102, 0, 204, 0.25);
}

/* Gradient Glow Border */
.problem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

/* Glass Effect on Hover */
.problem-card:hover {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

/* Icon Styling */
.problem-card img {
    max-height: 110px;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

/* Icon Pulse */
.problem-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

/* Text */
.problem-card p {
    font-weight: 600;
    margin: 0;
}

/* Floating Animation */
.problem-card {
    animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {

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

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



/* =========================
    FEATURES SECTION
========================= */
.features-section {
    background: linear-gradient(180deg, #ffffff, #f7f5ff);
    overflow: hidden;
}

.feature-badge {
    background: rgba(102, 0, 204, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 30px rgba(102, 0, 204, 0.15);
}

.feature-list .icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}



/* =========================
    CATEGORIES SECTION
========================= */
.categories-section {
    background: linear-gradient(180deg, #ffffff, #f7f5ff);
    position: relative;
}

.category-badge {
    background: rgba(102, 0, 204, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

.category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 22px 50px rgba(102, 0, 204, 0.2);
}

.category-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card p {
    font-weight: 600;
    margin: 0;
}

/*HOW IT WORKS */
.how-section {
    background: linear-gradient(180deg, #f9f8ff, #ffffff);
}

.how-badge {
    background: rgba(102, 0, 204, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

.how-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(102, 0, 204, 0.2);
}

.how-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
}

/* HORIZONTAL CATEGORY SCROLL */

/* hide scrollbar */
.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-track {
    display: flex;
    gap: 22px;
    width: max-content;
}

/* card width */
.category-item {
    min-width: 200px;
    flex-shrink: 0;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp .7s ease forwards;
}

/* stagger animation */
.category-item:nth-child(1) {
    animation-delay: .1s
}

.category-item:nth-child(2) {
    animation-delay: .2s
}

.category-item:nth-child(3) {
    animation-delay: .3s
}

.category-item:nth-child(4) {
    animation-delay: .4s
}

.category-item:nth-child(5) {
    animation-delay: .5s
}

.category-item:nth-child(6) {
    animation-delay: .6s
}

.category-item:nth-child(7) {
    animation-delay: .7s
}

.category-item:nth-child(8) {
    animation-delay: .8s
}

.category-item:nth-child(9) {
    animation-delay: .9s
}

.category-item:nth-child(10) {
    animation-delay: 1s
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* drag cursor */
.category-scroll:active {
    cursor: grabbing;
}

.category-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    cursor: grab;
    border-radius: 30px;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%);
}

.category-track {
    display: flex;
    gap: 20px;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 1;
}

/* CATEGORY ARROWS */

.category-arrow {
    position: absolute;
    top: 64%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(102, 0, 204, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hover effect */
.category-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(102, 0, 204, 0.6);
}

/* Left & Right positioning */
.category-control-prev {
    left: 100px;
}

.category-control-next {
    right: 100px;
}

/* Hide arrows on small screens (optional) */
@media (max-width: 768px) {
    .category-arrow {
        display: none;
    }
}




/* =========================
    CTA SECTION 
========================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 110px 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-section::before {
    top: -80px;
    left: -80px;
}

.cta-section::after {
    bottom: -80px;
    right: -80px;
}



/* =========================
    VIDEO SECTION
========================= */

.video-section {
    background: linear-gradient(180deg, #ffffff, #f7f5ff);
    position: relative;
    overflow: hidden;
}

.video-badge {
    background: rgba(102, 0, 204, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Video Wrapper */
.video-wrapper {
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(102, 0, 204, 0.25);
    transition: transform 0.4s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/* =========================
    PRICING SECTION
========================= */

.pricing-section {
    background: linear-gradient(180deg, #ffffff, #f7f5ff);
}

.pricing-badge {
    background: rgba(102, 0, 204, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(102, 0, 204, 0.2);
}

.plan-name {
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--dark);
}

.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--primary);
    font-weight: bold;
}

.cross {
    color: #ccc;
}


/* =========================
    CONTACT SECTION
========================= */

.contact-section {
    background: linear-gradient(180deg, #ffffff, #f7f5ff);
}

.contact-badge {
    background: rgba(102, 0, 204, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

.contact-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(102, 0, 204, 0.2);
}

/* Custom Input Styling */
.custom-input {
    border-radius: 14px;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 0, 204, 0.1);
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: none !important;
}



/* =========================
    DOWNLOAD APP SECTION
========================= */

.download-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.download-section::before,
.download-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.download-section::before {
    top: -80px;
    left: -80px;
}

.download-section::after {
    bottom: -80px;
    right: -80px;
}

.download-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: var(--dark);
    padding: 14px 24px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 210px;
}

.store-btn i {
    font-size: 28px;
}

.store-btn small {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
}

.store-btn strong {
    font-size: 1rem;
}

.store-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}


/* =========================
    FOOTER SECTION
========================= */
.footer-advanced {
    background: linear-gradient(180deg, #f7f5ff 0%, #ffffff 100%);
    padding: 90px 0 35px;
}

/* Brand */
.footer-brand img {
    height: 36px;
}

.footer-desc {
    color: var(--muted);
    max-width: 340px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--dark);
    letter-spacing: 0.3px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    position: relative;
    transition: all 0.25s ease;
}

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

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Bottom */
.footer-bottom {
    margin-top: 60px;
    padding-top: 22px;
    font-size: 0.85rem;
    color: var(--muted);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-advanced {
        padding: 70px 0 30px;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
}



@media (max-width: 576px) {
    .category-card img {
        height: 100px;
    }

    .cta-actions .btn {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
}