:root {
    --navbar-height: 80px;

    --radmojo-purple: #652b82;
    --radmojo-purple-deep: #25102e;
    --radmojo-purple-dark: #170a1e;

    --radmojo-orange: #f47732;
    --radmojo-orange-dark: #da5b19;

    --radmojo-pink: #e52b98;
    --radmojo-blue: #22b8e8;

    --radmojo-ink: #221a25;
    --radmojo-text: #746d77;
    --radmojo-light: #f7f4f8;
    --radmojo-white: #ffffff;

    --transition: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   GLOBAL
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: var(--radmojo-ink);
    background: #ffffff;
    font-family: "DM Sans", Arial, sans-serif;
}

.site-main {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.section-space {
    padding: 36px 0;
}

.section-kicker {
    display: inline-block;
    color: var(--radmojo-orange);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 750px;
    color: var(--radmojo-ink);
    font-size: clamp(1.5rem, 3vw, 5.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.055em;
}

.section-heading span,
.formula-heading span,
.contact-heading span {
    color: var(--radmojo-orange);
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 600;
}

.section-text {
    color: var(--radmojo-text);
    font-size: 1rem;
    line-height: 1.55;
}

.text-orange {
    color: var(--radmojo-orange) !important;
}


/* =========================================================
   HEADER
========================================================= */

.site-header .navbar {
    min-height: var(--navbar-height);
    padding: 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 25px rgba(35, 16, 43, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1050;

    transition:
        min-height 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.site-header .navbar .container {
    min-height: var(--navbar-height);
}

.navbar-space {
    width: 100%;
    height: var(--navbar-height);
}

.header-spacer {
    height: var(--navbar-height);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.header-logo {
    width: 145px;
    height: 75px;
    object-fit: contain;

    transition: transform 0.35s var(--transition);
}

.navbar-brand:hover .header-logo {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 3px;
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0 3px;
    padding: 29px 14px !important;

    color: #28202b;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 14px;
    bottom: 18px;
    left: 14px;

    height: 3px;

    content: "";

    background: linear-gradient(90deg,
            var(--radmojo-orange),
            var(--radmojo-purple));

    border-radius: 20px;

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 0.35s var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--radmojo-orange);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--radmojo-purple);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* Header contact button */

.header-contact-btn {
    position: relative;
    z-index: 1;

    display: inline-flex;
    min-width: 135px;
    min-height: 50px;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 12px 24px;

    color: #ffffff;

    background: linear-gradient(90deg,
            var(--radmojo-orange),
            var(--radmojo-pink));

    border: 0;
    border-radius: 50px;

    font-size: 0.9rem;
    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s var(--transition),
        box-shadow 0.3s ease;
}

.header-contact-btn::before {
    position: absolute;
    inset: 0;
    z-index: -1;

    content: "";

    background: linear-gradient(90deg,
            var(--radmojo-purple),
            var(--radmojo-purple-deep));

    transform: translateX(-101%);

    transition: transform 0.4s var(--transition);
}

.header-contact-btn:hover::before,
.header-contact-btn.active::before {
    transform: translateX(0);
}

.header-contact-btn:hover,
.header-contact-btn.active {
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(101, 43, 130, 0.24);
    transform: translateY(-3px);
}


/* =========================================================
   BUTTON
========================================================= */

.btn-radmojo {
    position: relative;
    z-index: 1;

    display: inline-flex;
    min-height: 54px;

    align-items: center;
    justify-content: center;

    gap: 18px;

    overflow: hidden;

    padding: 0 28px;

    color: #ffffff;

    background: linear-gradient(90deg,
            var(--radmojo-orange),
            var(--radmojo-pink));

    border: 0;
    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    transition:
        transform 0.35s var(--transition),
        box-shadow 0.35s ease,
        color 0.35s ease;
}

.btn-radmojo::before {
    position: absolute;
    inset: 0;
    z-index: -1;

    content: "";

    background: linear-gradient(90deg,
            var(--radmojo-purple),
            var(--radmojo-purple-deep));

    transform: translateX(-102%);

    transition: transform 0.45s var(--transition);
}

.btn-radmojo:hover {
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(101, 43, 130, 0.25);
    transform: translateY(-4px);
}

.btn-radmojo:hover::before {
    transform: translateX(0);
}

.btn-radmojo span {
    transition: transform 0.35s var(--transition);
}

.btn-radmojo:hover span {
    transform: translateX(5px);
}


/* =========================================================
   HERO BANNER
========================================================= */

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #100518;
}

.hero-banner-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;

    object-fit: contain;
    object-position: center top;

    animation: heroEntrance 1.2s var(--transition) both;
}

.hero-shine {
    position: absolute;
    top: -30%;
    left: -25%;

    width: 22%;
    height: 160%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.16),
            transparent);

    pointer-events: none;

    transform: rotate(18deg);

    animation: heroShine 5.5s ease-in-out 1.4s infinite;
}

.scroll-down {
    position: absolute;
    bottom: 26px;
    left: 50%;
    z-index: 4;

    width: 30px;
    height: 48px;

    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;

    transform: translateX(-50%);
}

.scroll-down span {
    position: absolute;
    top: 9px;
    left: 50%;

    width: 5px;
    height: 8px;

    background: #ffffff;
    border-radius: 5px;

    transform: translateX(-50%);

    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroShine {

    0%,
    65% {
        left: -25%;
        opacity: 0;
    }

    72% {
        opacity: 1;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 18px);
    }
}

/* =========================================================
   CAROUSEL CONTROLS & INDICATORS
========================================================= */

#heroBannerCarousel .carousel-indicators {
    bottom: 30px;
    z-index: 5;
    gap: 10px;
    margin-bottom: 0;
}

#heroBannerCarousel .carousel-indicators [data-bs-target] {
    width: 35px;
    height: 6px;
    margin: 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.4s ease;
    opacity: 0.7;
}

#heroBannerCarousel .carousel-indicators .active {
    width: 55px;
    background: linear-gradient(90deg, var(--radmojo-orange), var(--radmojo-pink));
    opacity: 1;
    box-shadow: 0 0 12px rgba(244, 119, 50, 0.6);
}

#heroBannerCarousel .carousel-control-prev,
#heroBannerCarousel .carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 5, 24, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.85;
    transition: all 0.3s ease;
    z-index: 5;
}

#heroBannerCarousel .carousel-control-prev {
    left: 24px;
}

#heroBannerCarousel .carousel-control-next {
    right: 24px;
}

#heroBannerCarousel .carousel-control-prev:hover,
#heroBannerCarousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--radmojo-purple);
    border-color: var(--radmojo-orange);
    box-shadow: 0 0 18px rgba(244, 119, 50, 0.45);
    transform: translateY(-50%) scale(1.08);
}




/* =========================================================
   ABOUT SECTION
========================================================= */

.about-media {
    position: relative;
    padding: 0 38px 38px 0;
}

.about-image {
    width: 100%;
    height: 480px;

    padding: 15px;

    object-fit: cover;
    object-position: center;

    border-radius: 22px;
    background: #ffffff;

    box-shadow: 0 20px 55px rgba(39, 20, 47, 0.11);
}

.about-floating-card {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 245px;

    padding: 15px 18px;

    color: #ffffff;

    background: linear-gradient(135deg,
            var(--radmojo-orange),
            var(--radmojo-pink));

    border-radius: 12px;

    box-shadow: 0 20px 45px rgba(244, 119, 50, 0.25);

    animation: floatingCard 4s ease-in-out infinite;
}

.about-floating-card span,
.about-floating-card strong {
    display: block;
}

.about-floating-card span {
    margin-bottom: 7px;

    opacity: 0.8;

    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-floating-card strong {
    font-size: 1.25rem;
}

.about-dots {
    position: absolute;
    top: -30px;
    left: -28px;
    z-index: -1;

    width: 150px;
    height: 150px;

    opacity: 0.45;

    background-image: radial-gradient(var(--radmojo-orange) 1.5px,
            transparent 1.5px);

    background-size: 13px 13px;
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================================
   FORMULA SECTION
========================================================= */

.formula-section {
    color: #ffffff;

    background:
        radial-gradient(circle at 20% 20%,
            rgba(101, 43, 130, 0.55),
            transparent 35%),
        linear-gradient(135deg,
            #100517,
            #291036);
}

.formula-heading {
    color: #ffffff;

    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;

    line-height: 0.98;
    letter-spacing: -0.055em;
}

.formula-text {
    max-width: 850px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 1.08rem;
    line-height: 1.85;
}

.formula-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    animation: orbFloat 7s ease-in-out infinite;
}

.formula-orb-one {
    top: -100px;
    left: -80px;

    width: 260px;
    height: 260px;

    background: rgba(244, 119, 50, 0.12);
}

.formula-orb-two {
    right: -120px;
    bottom: -140px;

    width: 350px;
    height: 350px;

    background: rgba(179, 39, 198, 0.14);

    animation-delay: -2s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(28px) scale(1.07);
    }
}

/* =========================================================
   PRODUCT CATEGORIES
========================================================= */

.products-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 12%,
            rgba(244, 119, 50, 0.09),
            transparent 25%),
        radial-gradient(circle at 94% 88%,
            rgba(101, 43, 130, 0.08),
            transparent 27%),
        #f8f5f9;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.products-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.products-decoration-one {
    top: 80px;
    right: -170px;
    width: 360px;
    height: 360px;
    border: 65px solid rgba(101, 43, 130, 0.025);
}

.products-decoration-two {
    bottom: -150px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: rgba(244, 119, 50, 0.035);
}

.product-section-heading {
    max-width: 930px;
}

.product-section-heading span {
    display: block;
    margin-top: 8px;
}

.product-section-copy {
    max-width: 430px;
    margin-left: auto;
}


/* =========================================================
   MASONRY GRID
========================================================= */

.product-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 225px;
    gap: 20px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-modern-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #24132a;
    border: 1px solid rgba(101, 43, 130, 0.1);
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(35, 17, 42, 0.09);

    transition:
        transform 0.45s var(--transition),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}

.product-modern-card:hover {
    border-color: rgba(244, 119, 50, 0.5);
    box-shadow: 0 25px 55px rgba(35, 17, 42, 0.18);
    transform: translateY(-8px);
}


/* Large first card */

.product-modern-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}


/* Smaller card arrangement */

.product-modern-card:nth-child(4) {
    grid-column: span 2;
}

.product-modern-card:nth-child(5),
.product-modern-card:nth-child(6),
.product-modern-card:nth-child(7),
.product-modern-card:nth-child(8) {
    grid-column: span 1;
}


/* =========================================================
   CARD LINK AND IMAGE
========================================================= */

.product-modern-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #ffffff;
}

.product-modern-link:hover {
    color: #ffffff;
}

.product-modern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    transition:
        transform 0.85s var(--transition),
        filter 0.45s ease;
}

.product-modern-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(20, 7, 26, 0.08) 10%,
            rgba(20, 7, 26, 0.22) 48%,
            rgba(20, 7, 26, 0.95) 100%);

    transition: background 0.45s ease;
}


/* =========================================================
   TOP ELEMENTS
========================================================= */

.product-modern-top {
    position: absolute;
    top: 17px;
    right: 17px;
    left: 17px;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-modern-number {
    display: inline-flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: rgba(25, 9, 32, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.product-modern-arrow {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;

    color: var(--radmojo-orange);
    background: rgba(255, 255, 255, 0.93);
    border-radius: 50%;
    font-size: 0.95rem;

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.4s var(--transition);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.product-modern-content {
    position: absolute;
    right: 20px;
    bottom: 19px;
    left: 20px;
    z-index: 3;

    transition: transform 0.4s var(--transition);
}

.product-modern-subtitle {
    display: block;
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-modern-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 1.32rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.product-modern-content p {
    max-width: 520px;
    margin: 13px 0 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.9rem;
    line-height: 1.65;
}

.product-modern-explore {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 12px;

    color: var(--radmojo-orange);

    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(10px);

    transition:
        opacity 0.35s ease,
        transform 0.35s var(--transition),
        gap 0.35s ease;
}

.product-modern-explore i {
    font-style: normal;
}


/* Featured card typography */

.product-modern-card-featured .product-modern-top {
    top: 23px;
    right: 23px;
    left: 23px;
}

.product-modern-card-featured .product-modern-number,
.product-modern-card-featured .product-modern-arrow {
    width: 46px;
    height: 46px;
}

.product-modern-card-featured .product-modern-content {
    right: 32px;
    bottom: 30px;
    left: 32px;
}

.product-modern-card-featured .product-modern-subtitle {
    margin-bottom: 8px;
    font-size: 0.68rem;
}

.product-modern-card-featured .product-modern-content h3 {
    font-size: clamp(2.2rem, 3vw, 3.7rem);
}

.product-modern-card-featured .product-modern-explore {
    font-size: 0.7rem;
}


/* =========================================================
   CARD HOVER
========================================================= */

.product-modern-card:hover .product-modern-image {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.08);
}

.product-modern-card:hover .product-modern-overlay {
    background:
        linear-gradient(180deg,
            rgba(70, 23, 88, 0.08) 8%,
            rgba(42, 13, 54, 0.28) 48%,
            rgba(21, 6, 27, 0.97) 100%);
}

.product-modern-card:hover .product-modern-arrow {
    color: #ffffff;
    background: var(--radmojo-orange);
    transform: rotate(45deg);
}

.product-modern-card:hover .product-modern-content {
    transform: translateY(-3px);
}

.product-modern-card:hover .product-modern-explore {
    gap: 14px;
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   PRODUCT GRID RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .product-masonry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 215px;
    }

    .product-modern-card-featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .product-modern-card:nth-child(4),
    .product-modern-card:nth-child(7) {
        grid-column: span 1;
    }

    .product-modern-card:nth-child(6) {
        grid-column: span 2;
    }
}


/* =========================================================
   PRODUCT GRID RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .product-section-copy {
        margin-left: 0;
    }

    .product-masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 240px;
        gap: 18px;
    }

    .product-modern-card-featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .product-modern-card:nth-child(4),
    .product-modern-card:nth-child(6),
    .product-modern-card:nth-child(7) {
        grid-column: span 1;
    }

    .product-modern-explore {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   PRODUCT GRID RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .products-decoration {
        display: none;
    }

    .product-masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 210px;
        gap: 14px;
    }

    .product-modern-card {
        border-radius: 16px;
    }

    .product-modern-card-featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .product-modern-card:nth-child(4),
    .product-modern-card:nth-child(6),
    .product-modern-card:nth-child(7) {
        grid-column: span 1;
    }

    .product-modern-content {
        right: 15px;
        bottom: 15px;
        left: 15px;
    }

    .product-modern-subtitle {
        font-size: 0.52rem;
    }

    .product-modern-content h3 {
        font-size: 1.05rem;
    }

    .product-modern-explore {
        display: none;
    }

    .product-modern-card-featured .product-modern-content {
        right: 23px;
        bottom: 23px;
        left: 23px;
    }

    .product-modern-card-featured .product-modern-content h3 {
        font-size: 2.25rem;
    }

    .product-modern-card-featured .product-modern-explore {
        display: inline-flex;
    }
}


/* =========================================================
   PRODUCT GRID RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .product-masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .product-modern-card,
    .product-modern-card-featured,
    .product-modern-card:nth-child(4),
    .product-modern-card:nth-child(6),
    .product-modern-card:nth-child(7) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .product-modern-card-featured {
        min-height: 390px;
    }

    .product-modern-card-featured .product-modern-content h3 {
        font-size: 2rem;
    }

    .product-modern-card-featured .product-modern-content p {
        font-size: 0.84rem;
    }

    .product-modern-content h3 {
        font-size: 1.4rem;
    }

    .product-modern-explore {
        display: inline-flex;
    }
}

/* =========================================================
   WHY RADMOJO
========================================================= */

.why-radmojo-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;

    background:
        radial-gradient(circle at 12% 18%,
            rgba(244, 119, 50, 0.18),
            transparent 28%),
        radial-gradient(circle at 88% 82%,
            rgba(229, 43, 152, 0.12),
            transparent 30%),
        linear-gradient(135deg,
            #120719 0%,
            #26102f 48%,
            #48185c 100%);
}


/* Decorative background */

.why-radmojo-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.why-radmojo-shape-one {
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-radmojo-shape-two {
    bottom: -230px;
    left: -180px;
    width: 520px;
    height: 520px;
    background: rgba(244, 119, 50, 0.045);
}

.why-radmojo-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px);

    background-size: 72px 72px;

    mask-image: linear-gradient(to bottom,
            black,
            transparent 88%);
}


/* Heading */

.why-radmojo-kicker {
    color: var(--radmojo-orange);
}

.why-radmojo-heading {
    max-width: 1050px;
    color: #ffffff;
    font-size: clamp(1.75rem, 3.2vw, 3.4rem);
    line-height: 1.15;
}

.why-radmojo-heading span {
    display: block;
    margin-top: 10px;
    color: var(--radmojo-orange);
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 600;
}

.why-radmojo-side-note {
    max-width: 300px;
    margin-left: auto;
}

.why-radmojo-side-line {
    display: block;
    width: 65px;
    height: 2px;
    margin-bottom: 18px;

    background: linear-gradient(90deg,
            var(--radmojo-orange),
            var(--radmojo-pink));
}

.why-radmojo-side-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.why-radmojo-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.why-radmojo-card {
    position: relative;
    min-width: 0;
    overflow: hidden;

    padding: 30px 24px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025));

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 18px 45px rgba(10, 3, 14, 0.16);

    transition:
        transform 0.45s var(--transition),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.why-radmojo-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 4px;

    content: "";

    background: linear-gradient(var(--radmojo-orange),
            var(--radmojo-pink));

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform 0.45s var(--transition);
}

.why-radmojo-card::after {
    position: absolute;
    right: -90px;
    bottom: -90px;

    width: 210px;
    height: 210px;

    content: "";

    background: rgba(244, 119, 50, 0.06);

    border-radius: 50%;

    transition:
        transform 0.5s var(--transition),
        background-color 0.35s ease;
}

.why-radmojo-card:hover {
    border-color: rgba(244, 119, 50, 0.62);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.105),
            rgba(255, 255, 255, 0.045));

    box-shadow: 0 28px 65px rgba(8, 2, 12, 0.28);

    transform: translateY(-9px);
}

.why-radmojo-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.why-radmojo-card:hover::after {
    background: rgba(244, 119, 50, 0.11);
    transform: scale(1.18);
}


/* Background number */

.why-radmojo-card-number-bg {
    position: absolute;
    top: 18px;
    right: 24px;

    color: rgba(255, 255, 255, 0.035);

    font-size: clamp(5.5rem, 8vw, 9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;

    pointer-events: none;

    transition: color 0.35s ease;
}

.why-radmojo-card:hover .why-radmojo-card-number-bg {
    color: rgba(244, 119, 50, 0.08);
}


/* Top row */

.why-radmojo-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 35px;
}

.why-radmojo-card-number {
    display: inline-flex;
    min-width: 50px;
    height: 50px;

    align-items: center;
    justify-content: center;

    color: var(--radmojo-orange);

    border: 1px solid rgba(244, 119, 50, 0.42);
    border-radius: 50%;

    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s var(--transition);
}

.why-radmojo-card-icon {
    display: grid;
    width: 52px;
    height: 52px;

    place-items: center;

    color: var(--radmojo-orange);

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    font-size: 1.15rem;

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.4s var(--transition);
}

.why-radmojo-card:hover .why-radmojo-card-number {
    color: #ffffff;
    background: var(--radmojo-orange);
    transform: rotate(-6deg);
}

.why-radmojo-card:hover .why-radmojo-card-icon {
    color: #ffffff;
    background: var(--radmojo-orange);
    border-color: var(--radmojo-orange);
    transform: rotate(45deg);
}


/* Card content */

.why-radmojo-card-content {
    position: relative;
    z-index: 2;
}

.why-radmojo-card-label {
    display: inline-block;
    margin-bottom: 10px;

    color: var(--radmojo-orange);

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.why-radmojo-card-content h3 {
    margin-bottom: 19px;

    color: #ffffff;

    font-size: clamp(1.35rem, 1.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.why-radmojo-card-text p {
    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 0.94rem;
    line-height: 1.82;
}

.why-radmojo-card-text p:last-child {
    margin-bottom: 0;
}


/* Bottom element */

.why-radmojo-card-footer {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 30px;
}

.why-radmojo-card-line {
    display: block;
    width: 45px;
    height: 1px;

    background: rgba(255, 255, 255, 0.24);

    transition:
        width 0.35s var(--transition),
        background-color 0.35s ease;
}

.why-radmojo-card-mark {
    color: rgba(255, 255, 255, 0.35);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-radmojo-card:hover .why-radmojo-card-line {
    width: 75px;
    background: var(--radmojo-orange);
}


/* =========================================================
   RESPONSIVE — LAPTOP / MEDIUM SCREENS
========================================================= */

@media (max-width: 1199.98px) {

    .why-radmojo-grid-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .why-radmojo-side-note {
        max-width: 100%;
        margin-left: 0;
    }

    .why-radmojo-grid-layout {
        grid-template-columns: 1fr;
    }

    .why-radmojo-card {
        padding: 34px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .why-radmojo-shape,
    .why-radmojo-grid {
        display: none;
    }

    .why-radmojo-heading {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    .why-radmojo-card {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .why-radmojo-card-top {
        margin-bottom: 26px;
    }

    .why-radmojo-card-number,
    .why-radmojo-card-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .why-radmojo-card-number-bg {
        top: 25px;
        right: 18px;
        font-size: 5rem;
    }

    .why-radmojo-card-content h3 {
        font-size: 1.65rem;
    }

    .why-radmojo-card-text p {
        font-size: 0.9rem;
        line-height: 1.72;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .why-radmojo-heading {
        font-size: 2.3rem;
    }

    .why-radmojo-card {
        padding: 25px 20px;
    }

    .why-radmojo-card-label {
        padding-right: 45px;
        font-size: 0.61rem;
    }

    .why-radmojo-card-content h3 {
        font-size: 1.48rem;
    }

    .why-radmojo-card-footer {
        margin-top: 24px;
    }
}

/* =========================================================
   LICENSE PARTNERS
========================================================= */

.license-section {
    background: #ffffff;
}

.license-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.license-item {
    display: flex;

    min-height: 94px;

    align-items: center;

    gap: 18px;

    padding: 22px;

    color: var(--radmojo-ink);

    background: var(--radmojo-light);

    border: 1px solid #eee7f0;
    border-left: 3px solid transparent;
    border-radius: 12px;

    font-weight: 800;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s var(--transition),
        box-shadow 0.35s ease;
}

.license-item span {
    color: var(--radmojo-orange);

    font-size: 0.69rem;
}

.license-item:hover {
    color: #ffffff;

    background: var(--radmojo-purple);

    border-color: var(--radmojo-purple);
    border-left-color: var(--radmojo-orange);

    box-shadow: 0 15px 35px rgba(101, 43, 130, 0.18);

    transform: translateX(8px);
}


/* =========================================================
   QUALITY SECTION
========================================================= */

.quality-section {
    background: var(--radmojo-light);
}

.quality-image-wrap {
    position: relative;

    padding: 0 0 40px 40px;
}

.quality-image {
    width: 100%;
    min-height: 610px;

    object-fit: cover;

    border-radius: 18px;
}

.quality-stamp {
    position: absolute;
    bottom: 0;
    left: 0;

    display: grid;

    width: 170px;
    height: 170px;

    place-items: center;
    align-content: center;

    color: #ffffff;

    background: var(--radmojo-purple);

    border-radius: 50%;

    box-shadow: 0 20px 50px rgba(101, 43, 130, 0.25);

    animation: stampFloat 4s ease-in-out infinite;
}

.quality-stamp span,
.quality-stamp strong {
    display: block;
}

.quality-stamp span {
    color: var(--radmojo-orange);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quality-stamp strong {
    font-size: 1.4rem;
}

.quality-point {
    display: flex;

    min-height: 66px;

    align-items: center;

    gap: 13px;

    padding: 17px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(36, 20, 43, 0.05);

    font-weight: 700;

    transition:
        transform 0.35s var(--transition),
        box-shadow 0.35s ease;
}

.quality-point span {
    display: grid;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    place-items: center;

    color: #ffffff;

    background: var(--radmojo-orange);

    border-radius: 50%;

    font-size: 0.75rem;
}

.quality-point:hover {
    box-shadow: 0 15px 35px rgba(36, 20, 43, 0.1);

    transform: translateY(-5px);
}

@keyframes stampFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}


/* =========================================================
   TEAM SECTION
========================================================= */

.team-section {
    background: #ffffff;
}

.team-card {
    overflow: hidden;

    border: 1px solid #eee7f0;
    border-radius: 18px;

    background: #ffffff;

    transition:
        transform 0.4s var(--transition),
        box-shadow 0.4s ease;
}

.team-card:hover {
    box-shadow: 0 22px 50px rgba(41, 16, 52, 0.12);

    transform: translateY(-10px);
}

.team-visual {
    position: relative;

    display: grid;

    height: 310px;

    place-items: center;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(circle at 30% 30%,
            rgba(244, 119, 50, 0.72),
            transparent 35%),
        linear-gradient(135deg,
            var(--radmojo-purple),
            var(--radmojo-purple-deep));
}

.team-visual::before,
.team-visual::after {
    position: absolute;

    content: "";

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.team-visual::before {
    width: 230px;
    height: 230px;
}

.team-visual::after {
    width: 310px;
    height: 310px;
}

.team-visual span {
    position: relative;
    z-index: 2;

    font-size: 5.2rem;
    font-weight: 800;

    transition: transform 0.5s var(--transition);
}

.team-card:hover .team-visual span {
    transform: scale(1.08) rotate(-3deg);
}

.team-body {
    padding: 30px;
}

.team-role {
    margin-bottom: 7px !important;

    color: var(--radmojo-orange) !important;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-body h3 {
    margin-bottom: 15px;

    font-size: 1.55rem;
    font-weight: 800;
}

.team-body p {
    margin-bottom: 0;

    color: var(--radmojo-text);

    line-height: 1.75;
}




/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transition:
        opacity 0.85s var(--transition),
        transform 0.85s var(--transition);

    transition-delay: var(--delay, 0ms);
}

.reveal-left {
    transform: translateX(-65px);
}

.reveal-right {
    transform: translateX(65px);
}

.reveal-up {
    transform: translateY(55px);
}

.reveal.is-visible {
    opacity: 1;

    transform: translate3d(0, 0, 0);
}

/* =========================================================
   WHITE RADMOJO FOOTER
========================================================= */

.rm-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    color: var(--radmojo-ink);
    background:
        radial-gradient(circle at 8% 28%,
            rgba(244, 119, 50, 0.07),
            transparent 25%),
        radial-gradient(circle at 92% 86%,
            rgba(101, 43, 130, 0.07),
            transparent 29%),
        #ffffff;
    border-top: 1px solid #e9e1eb;
}

.rm-footer .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.rm-footer-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.rm-footer-decoration-left {
    top: 130px;
    left: -250px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(244, 119, 50, 0.025);
}

.rm-footer-decoration-right {
    right: -190px;
    bottom: -240px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(101, 43, 130, 0.09);
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.rm-footer-main {
    padding-top: 18px;
    padding-bottom: 12px;
}

.rm-footer-brand {
    padding-right: 15px;
}

.rm-footer-column {
    height: 100%;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.rm-footer-logo-link {
    display: inline-block;
}

.rm-footer-logo {
    display: block;
    width: 135px;
    height: auto;
    margin-bottom: 10px;
    object-fit: contain;
    filter: none;
    transition: transform 0.35s var(--transition);
}

.rm-footer-logo-link:hover .rm-footer-logo {
    transform: scale(1.05);
}


/* =========================================================
   COMPANY DESCRIPTION
========================================================= */

.rm-footer-description {
    max-width: 360px;
    margin: 0 0 10px;
    color: var(--radmojo-text);
    font-size: 0.82rem;
    line-height: 1.45;
}


/* =========================================================
   EMAIL
========================================================= */

.rm-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--radmojo-purple);
    font-size: 0.82rem;
    font-weight: 700;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.rm-footer-email:hover {
    color: var(--radmojo-orange);
    transform: translateX(5px);
}

.rm-footer-email-icon {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg,
            var(--radmojo-orange),
            var(--radmojo-pink));
    border-radius: 50%;
    font-size: 0.75rem;
    box-shadow: 0 6px 14px rgba(229, 43, 152, 0.18);
}


/* =========================================================
   FOOTER HEADING
========================================================= */

.rm-footer-heading {
    position: relative;
    margin: 0 0 12px;
    padding-bottom: 6px;
    color: var(--radmojo-ink);
    font-size: 0.88rem;
    font-weight: 800;
}

.rm-footer-heading::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg,
            var(--radmojo-orange),
            var(--radmojo-pink));
    border-radius: 20px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.rm-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-footer-links li {
    margin-bottom: 5px;
}

.rm-footer-links li:last-child {
    margin-bottom: 0;
}

.rm-footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #766d79;
    font-size: 0.88rem;
    line-height: 1.5;
    transition:
        color 0.3s ease,
        gap 0.3s ease,
        transform 0.3s ease;
}

.rm-footer-links a::before {
    width: 0;
    height: 1px;
    content: "";
    background: var(--radmojo-orange);
    transition: width 0.3s var(--transition);
}

.rm-footer-links a:hover,
.rm-footer-links a.active {
    gap: 9px;
    color: var(--radmojo-orange);
    transform: translateX(3px);
}

.rm-footer-links a:hover::before,
.rm-footer-links a.active::before {
    width: 18px;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.rm-footer-contact-card {
    position: relative;
    height: 100%;
    min-height: 275px;
    overflow: hidden;
    padding: 30px 28px;
    border: 1px solid #eadfeb;
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 100%,
            rgba(244, 119, 50, 0.12),
            transparent 38%),
        linear-gradient(145deg,
            #fdfafd,
            #f6f0f8);
    box-shadow: 0 14px 35px rgba(42, 18, 50, 0.08);
    transition:
        border-color 0.35s ease,
        transform 0.4s var(--transition),
        box-shadow 0.35s ease;
}

.rm-footer-contact-card::after {
    position: absolute;
    right: -75px;
    bottom: -75px;
    width: 170px;
    height: 170px;
    content: "";
    background: rgba(101, 43, 130, 0.06);
    border-radius: 50%;
}

.rm-footer-contact-card:hover {
    border-color: rgba(244, 119, 50, 0.5);
    box-shadow: 0 22px 48px rgba(56, 25, 66, 0.13);
    transform: translateY(-7px);
}

.rm-footer-contact-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 13px;
    color: var(--radmojo-orange);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.rm-footer-contact-card h4 {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    color: var(--radmojo-ink);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.32;
}

.rm-footer-contact-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: var(--radmojo-text);
    font-size: 0.86rem;
    line-height: 1.7;
}

.rm-footer-contact-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--radmojo-purple);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.rm-footer-contact-link span {
    color: var(--radmojo-orange);
    font-size: 1rem;
}

.rm-footer-contact-link:hover {
    gap: 18px;
    color: var(--radmojo-orange);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.rm-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid #ebe3ed;
}

.rm-footer-bottom p {
    margin: 0;
    color: #918894;
    font-size: 0.78rem;
}

.rm-developer-link {
    color: #817783;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rm-developer-link:hover {
    color: var(--radmojo-orange);
    text-decoration: underline;
}

.rm-footer-legal {
    display: flex;
    align-items: center;
    gap: 22px;
}

.rm-footer-legal a {
    color: #817783;
    font-size: 0.78rem;
    transition: color 0.3s ease;
}

.rm-footer-legal a:hover {
    color: var(--radmojo-orange);
}

.rm-footer-back-top {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--radmojo-purple);
    font-size: 0.75rem;
    font-weight: 700;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.rm-footer-back-top span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg,
            var(--radmojo-orange),
            var(--radmojo-pink));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.rm-footer-back-top:hover {
    color: var(--radmojo-orange);
    transform: translateY(-3px);
}

.rm-footer-back-top:hover span {
    transform: translateY(-2px);
}


/* =========================================================
   WHATSAPP FLOATING BUTTON & FOOTER SOCIALS
========================================================= */

.whatsapp-float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
    color: #ffffff;
}

.whatsapp-float-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #120719;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #120719;
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Footer Social Icons */
.rm-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.rm-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f3ebf7;
    border: 1px solid #e2d3e9;
    color: var(--radmojo-purple-deep);
    transition: all 0.3s ease;
    text-decoration: none;
}

.rm-social-icon:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.rm-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4);
}

.rm-social-icon.tiktok:hover {
    background: #000000;
    border-color: #ff0050;
    box-shadow: 0 4px 14px rgba(255, 0, 80, 0.4);
}

.rm-social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 4px 14px rgba(0, 119, 181, 0.4);
}

.rm-social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.rm-social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Footer Contact Email & Phone items */
.rm-footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--radmojo-text);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: none;
    word-break: break-all;
}

.rm-footer-contact-item:hover {
    color: var(--radmojo-orange);
}

.rm-footer-contact-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(244, 119, 50, 0.12);
    color: var(--radmojo-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.rm-footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--radmojo-ink);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rm-footer-phone-link:hover {
    color: #25D366;
}

.rm-footer-phone-icon {
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float-btn svg {
        width: 26px;
        height: 26px;
    }
    .whatsapp-float-tooltip {
        display: none;
    }
}


/* =========================================================
   RESPONSIVE FOOTER
========================================================= */

@media (max-width: 1199.98px) {
    .rm-footer-main {
        padding-top: 70px;
        padding-bottom: 55px;
    }

    .rm-footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .rm-footer-back-top {
        grid-column: 1 / -1;
        justify-self: end;
    }
}

@media (max-width: 991.98px) {
    .rm-footer-main {
        padding-top: 65px;
        padding-bottom: 50px;
    }

    .rm-footer-brand {
        padding-right: 0;
    }

    .rm-footer-contact-card {
        height: auto;
        min-height: 255px;
    }
}

@media (max-width: 767.98px) {
    .rm-footer-main {
        padding-top: 55px;
        padding-bottom: 42px;
    }

    .rm-footer-logo {
        width: 165px;
    }

    .rm-footer-description {
        max-width: 100%;
    }

    .rm-footer-bottom {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .rm-footer-back-top {
        align-self: flex-start;
    }
}

@media (max-width: 575.98px) {
    .rm-footer-main {
        padding-top: 45px;
        padding-bottom: 36px;
    }

    .rm-footer-heading {
        font-size: 0.91rem;
    }

    .rm-footer-links a {
        font-size: 0.82rem;
    }

    .rm-footer-contact-card {
        min-height: auto;
        padding: 25px 21px;
    }

    .rm-footer-contact-card h4 {
        font-size: 1.3rem;
    }

    .rm-footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1199.98px) {
    .section-space {
        padding: 70px 0;
    }

    .product-image-wrap {
        height: 360px;
    }

    .rm-footer-cta {
        padding: 42px;
    }

    .rm-footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .rm-footer-back-top {
        grid-column: 1 / -1;
        justify-self: end;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991.98px) {
    :root {
        --navbar-height: 74px;
    }

    .section-space {
        padding: 68px 0;
    }

    .site-header .navbar {
        min-height: var(--navbar-height);
    }

    .site-header .navbar .container {
        min-height: var(--navbar-height);
    }

    .navbar-space,
    .header-spacer {
        height: var(--navbar-height);
    }

    .header-logo {
        width: 135px;
        height: 48px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;

        max-height: calc(100vh - var(--navbar-height));

        overflow-y: auto;

        padding: 18px 24px 25px;

        background: #ffffff;

        border-top: 1px solid #eee5f0;

        box-shadow: 0 18px 35px rgba(35, 16, 43, 0.12);
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 0;
    }

    .navbar-nav .nav-link {
        margin: 0;

        padding: 12px 0 !important;
    }

    .navbar-nav .nav-link::after {
        right: auto;
        bottom: 5px;
        left: 0;

        width: 38px;
    }

    .navbar-nav .nav-link:hover {
        transform: none;
    }

    .header-contact-btn {
        display: flex;

        width: 100%;

        margin-top: 12px;
    }

    .about-image,
    .quality-image {
        min-height: 500px;
    }

    .contact-form {
        padding: 32px;
    }

    .rm-footer-cta {
        margin-bottom: 60px;

        padding: 38px 35px;
    }

    .rm-footer-cta-button-wrap {
        justify-content: flex-start;
    }

    .rm-footer-main {
        padding-bottom: 50px;
    }

    .rm-footer-contact-card {
        height: auto;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767.98px) {
    .section-space {
        padding: 60px 0;
    }

    .section-heading,
    .formula-heading,
    .contact-heading {
        font-size: 2.8rem;
        letter-spacing: -0.04em;
    }

    .hero-banner {
        min-height: 0;
    }

    .hero-banner-image {
        width: 100%;
        min-height: 0;

        object-fit: contain;
        object-position: center top;
    }

    .hero-shine,
    .scroll-down {
        display: none;
    }

    .about-media {
        padding: 0 18px 28px 0;
    }

    .about-image {
        height: 410px;
        min-height: 0;
    }

    .about-floating-card {
        width: 210px;
    }

    .product-image-wrap {
        height: 380px;
    }

    .license-grid {
        grid-template-columns: 1fr;
    }

    .quality-image-wrap {
        padding: 0 0 30px 25px;
    }

    .quality-image {
        min-height: 410px;
    }

    .quality-stamp {
        width: 135px;
        height: 135px;
    }

    .contact-form {
        padding: 24px;
    }

    .reveal-left,
    .reveal-right,
    .reveal-up {
        transform: translateY(38px);
    }

    .rm-footer-cta {
        margin-right: -12px;
        margin-bottom: 52px;
        margin-left: -12px;

        padding: 32px 24px;

        border-radius: 0 0 22px 22px;
    }

    .rm-footer-cta-title {
        font-size: 2.25rem;
    }

    .rm-footer-main {
        padding-bottom: 42px;
    }

    .rm-footer-brand {
        padding-right: 0;
    }

    .rm-footer-logo {
        width: 165px;
    }

    .rm-footer-bottom {
        display: flex;

        align-items: flex-start;

        flex-direction: column;

        gap: 17px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .section-heading,
    .formula-heading,
    .contact-heading {
        font-size: 2.35rem;
    }

    .product-image-wrap {
        height: 350px;
    }

    .team-visual {
        height: 270px;
    }

    .rm-footer-cta {
        padding: 29px 20px;
    }

    .rm-footer-cta-title {
        font-size: 1.95rem;
    }

    .rm-footer-cta-button {
        width: 100%;
    }

    .rm-footer-column {
        height: 100%;
    }

    .rm-footer-heading {
        font-size: 0.91rem;
    }

    .rm-footer-links a {
        font-size: 0.82rem;
    }

    .rm-footer-contact-card {
        padding: 25px 21px;
    }

    .rm-footer-legal {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}




/* =========================================================
   RADMOJO SERVICES MARQUEE
========================================================= */

.radmojo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 44px 0;
    background: #faf8f5;
    border-top: 1px solid #ded8d3;
    border-bottom: 1px solid #ded8d3;
}

/*
|--------------------------------------------------------------------------
| Soft edge fade
|--------------------------------------------------------------------------
*/

.radmojo-marquee::before,
.radmojo-marquee::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 90px;
    content: "";
    pointer-events: none;
}

.radmojo-marquee::before {
    left: 0;
    background: linear-gradient(90deg,
            #faf8f5 0%,
            rgba(250, 248, 245, 0) 100%);
}

.radmojo-marquee::after {
    right: 0;
    background: linear-gradient(270deg,
            #faf8f5 0%,
            rgba(250, 248, 245, 0) 100%);
}

/*
|--------------------------------------------------------------------------
| Moving track
|--------------------------------------------------------------------------
*/

.radmojo-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: radmojoMarqueeScroll 28s linear infinite;
    will-change: transform;
}

/*
|--------------------------------------------------------------------------
| Pause on hover
|--------------------------------------------------------------------------
*/

.radmojo-marquee:hover .radmojo-marquee-track {
    animation-play-state: paused;
}

/*
|--------------------------------------------------------------------------
| Content group
|--------------------------------------------------------------------------
*/

.radmojo-marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 44px;
    padding-right: 44px;
}

/*
|--------------------------------------------------------------------------
| Text
|--------------------------------------------------------------------------
*/

.radmojo-marquee-item {
    color: #1c1820;
    font-size: clamp(2rem, 3.5vw, 4.3rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| Orange separator star
|--------------------------------------------------------------------------
*/

.radmojo-marquee-star {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--radmojo-orange);
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    line-height: 1;
    transform: translateY(-2px);
}

/*
|--------------------------------------------------------------------------
| Infinite movement
|--------------------------------------------------------------------------
*/

@keyframes radmojoMarqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 991.98px) {
    .radmojo-marquee {
        padding: 34px 0;
    }

    .radmojo-marquee-group {
        gap: 32px;
        padding-right: 32px;
    }

    .radmojo-marquee::before,
    .radmojo-marquee::after {
        width: 55px;
    }

    .radmojo-marquee-track {
        animation-duration: 24s;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 575.98px) {
    .radmojo-marquee {
        padding: 27px 0;
    }

    .radmojo-marquee-item {
        font-size: 2rem;
    }

    .radmojo-marquee-star {
        font-size: 1.25rem;
    }

    .radmojo-marquee-group {
        gap: 24px;
        padding-right: 24px;
    }

    .radmojo-marquee::before,
    .radmojo-marquee::after {
        width: 35px;
    }

    .radmojo-marquee-track {
        animation-duration: 20s;
    }
}

/*
|--------------------------------------------------------------------------
| Accessibility
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion: reduce) {
    .radmojo-marquee-track {
        animation-play-state: paused;
    }
}





/* =========================================================
   FINAL FUTURE BANNER
========================================================= */

.future-banner-section {
    position: relative;
    padding: 30px 0 30px;
    /* background:
        radial-gradient(
            circle at 8% 20%,
            rgba(244, 119, 50, 0.07),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(101, 43, 130, 0.08),
            transparent 28%
        ),
        #ffffff; */
}

.future-banner-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fffaf5;
    border: 1px solid rgba(101, 43, 130, 0.12);
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(35, 17, 42, 0.11),
        0 5px 15px rgba(244, 119, 50, 0.05);

    isolation: isolate;

    transition:
        transform 0.5s var(--transition),
        box-shadow 0.5s ease,
        border-color 0.4s ease;
}

/*
|--------------------------------------------------------------------------
| Decorative gradient border
|--------------------------------------------------------------------------
*/

.future-banner-card::before {
    position: absolute;
    inset: 0;
    z-index: 3;

    padding: 2px;

    content: "";

    pointer-events: none;

    background: linear-gradient(115deg,
            rgba(244, 119, 50, 0.75),
            transparent 28%,
            transparent 72%,
            rgba(101, 43, 130, 0.7));

    border-radius: inherit;

    opacity: 0.55;

    -webkit-mask:
        linear-gradient(#ffffff 0 0) content-box,
        linear-gradient(#ffffff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    transition: opacity 0.4s ease;
}

/*
|--------------------------------------------------------------------------
| Image
|--------------------------------------------------------------------------
*/

.future-banner-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    transform: scale(1.001);

    transition:
        transform 0.9s var(--transition),
        filter 0.5s ease;
}

/*
|--------------------------------------------------------------------------
| Shine overlay
|--------------------------------------------------------------------------
*/

.future-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    overflow: hidden;

    pointer-events: none;
}

.future-banner-overlay::before {
    position: absolute;
    top: -50%;
    left: -25%;

    width: 15%;
    height: 210%;

    content: "";

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.43),
            transparent);

    opacity: 0;

    transform: rotate(20deg);

    transition:
        left 0.9s var(--transition),
        opacity 0.3s ease;
}

/*
|--------------------------------------------------------------------------
| Full clickable area
|--------------------------------------------------------------------------
*/

.future-banner-link {
    position: absolute;
    inset: 0;
    z-index: 4;

    display: block;

    cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| Hover
|--------------------------------------------------------------------------
*/

.future-banner-card:hover {
    border-color: rgba(244, 119, 50, 0.4);

    box-shadow:
        0 32px 75px rgba(35, 17, 42, 0.17),
        0 10px 30px rgba(244, 119, 50, 0.1);

    transform: translateY(-8px);
}

.future-banner-card:hover::before {
    opacity: 1;
}

.future-banner-card:hover .future-banner-image {
    filter: saturate(1.05) contrast(1.015);
    transform: scale(1.018);
}

.future-banner-card:hover .future-banner-overlay::before {
    left: 120%;
    opacity: 1;
}


/* =========================================================
   FINAL BANNER RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
    .future-banner-section {
        padding: 25px 0 60px;
    }

    .future-banner-card {
        border-radius: 21px;
    }
}

@media (max-width: 991.98px) {
    .future-banner-section {
        padding: 20px 0 55px;
    }

    .future-banner-card {
        border-radius: 18px;
    }
}

@media (max-width: 767.98px) {
    .future-banner-section {
        padding: 10px 0 45px;
    }

    .future-banner-card {
        border-radius: 15px;
        box-shadow: 0 16px 38px rgba(35, 17, 42, 0.11);
    }

    .future-banner-card:hover {
        transform: translateY(-4px);
    }

    .future-banner-card:hover .future-banner-image {
        transform: scale(1.01);
    }
}

@media (max-width: 575.98px) {
    .future-banner-section {
        padding: 5px 0 35px;
    }

    .future-banner-section .container {
        padding-right: 10px;
        padding-left: 10px;
    }

    .future-banner-card {
        border-radius: 12px;
    }
}