*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background: #000;
    color: #0d0118;
    overflow-x: hidden;
    position: relative;
}
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
    background: #fff;
  border-radius: 10px;
}
/* ─── CUSTOM CURSOR (light, smooth follow) ─── */
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .mcard,
body.has-custom-cursor .hero-scroll {
    cursor: none;
}
.cursor {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(196, 140, 255, 0.75);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.cursor-dot {
    width: 3px;
    height: 3px;
    background: rgba(196, 140, 255, 0.9);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    opacity: 0;
    transition: opacity 0.35s ease;
}
body.has-custom-cursor .cursor.is-ready,
body.has-custom-cursor .cursor-dot.is-ready {
    opacity: 1;
}
.cursor.is-hover {
    border-color: rgba(196, 140, 255, 0.95);
    background: rgba(196, 140, 255, 0.08);
}
.cursor-dot.is-hover {
    background: #e4c4ff;
}
@media (prefers-reduced-motion: reduce) {
    .cursor,
    .cursor-dot {
        display: none !important;
    }
}

/* ─── GLOBAL ANIMATIONS ─── */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}
@keyframes glow {
    0%,
    100% {
        text-shadow: 0 0 20px currentColor;
    }
    50% {
        text-shadow:
            0 0 40px currentColor,
            0 0 60px currentColor;
    }
}
@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}
@keyframes scale {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
@keyframes particleFloat {
    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-100px) scale(1);
    }
}

/* ─── BACKGROUND ─── */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}
.bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: bgZoom 20s ease-in-out infinite;
}
.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(13, 1, 24, 0.4) 0%,
        rgba(13, 1, 24, 0.8) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: -1;
}
@keyframes bgZoom {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ─── LOADING STATE ─── */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0118;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.8s,
        visibility 0.8s;
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}
.loading-logo {
    width: 100px;
    height: 100px;
    animation: rotate 2s linear infinite;
    position: relative;
}
.loading-logo::before,
.loading-logo::after {
    content: "";
    position: absolute;
    border: 3px solid #c48cff;
    border-radius: 50%;
}
.loading-logo::before {
    width: 100%;
    height: 100%;
    animation: scale 1.5s ease-in-out infinite;
}
.loading-logo::after {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation: scale 1.5s ease-in-out infinite 0.5s;
}

/* ─── HERO ─── */
.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 560px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1);
    transition: transform 0.8s ease-out;
}
.hero-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(13, 1, 24, 0.52) 0%,
        rgba(13, 1, 24, 0.38) 55%,
        rgba(13, 1, 24, 0.82) 100%
    );
}
.hero-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 0 20px;
    transition: opacity 0.8s ease-out;
}
/* Logo icon */
.hero-icon {
    margin-bottom: 14px;
    opacity: 0;
    animation: fup 0.7s 0.1s both;
    filter: drop-shadow(0 0 30px rgba(196, 140, 255, 0.5));
}
.hero-icon .fa-icon {
    font-size: 3.25rem;
    color: #fff;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
    text-shadow:
        0 0 24px rgba(196, 140, 255, 0.9),
        0 0 48px rgba(122, 44, 191, 0.45);
}
/* Brand */
.hero-brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(18px, 2.2vw, 24px);
    letter-spacing: 0.42em;
    color: #fff;
    margin-bottom: 2px;
    opacity: 0;
    animation: fup 0.7s 0.2s both;
    text-shadow: 0 0 40px rgba(196, 140, 255, 0.6);
    position: relative;
}
.hero-brand::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #c48cff,
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}
.hero-sub {
    font-size: clamp(8px, 1vw, 10px);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    margin-bottom: 48px;
    opacity: 0;
    animation: fup 0.7s 0.28s both;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(196, 140, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
    background-size: 200% 100%;
    animation:
        fup 0.7s 0.28s both,
        shimmer 3s ease-in-out infinite;
}
.hero-eyebrow {
    font-size: clamp(12px, 1.3vw, 15px);
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.08em;
    font-weight: 300;
    margin-bottom: 14px;
    opacity: 0;
    animation: fup 0.7s 0.38s both;
}
.hero-headline {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(56px, 9.5vw, 132px);
    line-height: 0.92;
    letter-spacing: 0.04em;
    color: #fff;
    opacity: 0;
    animation: fup 0.8s 0.48s both;
    position: relative;
    text-shadow: 0 0 60px rgba(196, 140, 255, 0.3);
}
.hero-headline::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #c48cff,
        transparent
    );
    animation: shimmer 2s ease-in-out infinite;
}
.hero-headline span {
    display: block;
    color: #c48cff;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 0.55em;
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-weight: 600;
    position: relative;
    animation: glow 2s ease-in-out infinite;
}
.hero-headline span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: #c48cff;
    transform: scaleX(0);
    transform-origin: left;
    animation: expandLine 1s ease-out 0.8s both;
}
/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0;
    animation: fup 0.7s 0.9s both;
    transition: transform 0.3s;
    width: 100px;
    padding: 12px 20px;
    background: rgba(196, 140, 255, 0.1);
    border: 1px solid rgba(196, 140, 255, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}
.hero-scroll:hover {
    transform: translateX(-50%) translateY(-5px);
    background: rgba(196, 140, 255, 0.2);
    box-shadow: 0 8px 24px rgba(196, 140, 255, 0.3);
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    position: relative;
    overflow: hidden;
}
.scroll-mouse::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(196, 140, 255, 0.3),
        transparent
    );
    animation: shimmer 2s ease-in-out infinite;
}
.scroll-dot {
    width: 3px;
    height: 7px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: sdrop 1.8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(196, 140, 255, 0.5);
}
.scroll-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
    opacity: 0;
    animation: fup 0.7s 0.9s both;
}
@keyframes fup {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes sdrop {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    60% {
        transform: translateY(9px);
        opacity: 0.15;
    }
}

/* ─── PRODUCTS SECTION (modules area background) ─── */

.cards-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/pattern-bg.webp") center/cover
        no-repeat;
    opacity: 0.06;
    pointer-events: none;
}
.cards-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}
.section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
}
.section-label::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #7a2cbf;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.section-label::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: #7a2cbf;
    opacity: 0.5;
}
.section-heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 48px;
    line-height: 1;
    position: relative;
    text-shadow: 0 0 30px rgba(196, 140, 255, 0.3);
}
.section-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #7a2cbf, transparent);
}
.section-heading em {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #c48cff;
    font-size: 0.8em;
    position: relative;
}
.section-heading em::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #c48cff;
    border-radius: 50%;
}

/* ─── 3 MODULE CARDS — equal width, one row ─── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    position: relative;
    align-items: stretch;
}

/* ─── MODULE CARD shell ─── */
.mcard {
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 560px;
    cursor: pointer;
    position: relative;
    transition:
        transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.38s;
    opacity: 0;
    transform: translateY(40px) rotateX(5deg);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    isolation: isolate;
}
.mcard__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px 28px 34px;
    min-height: 100%;
}
.mcard-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition:
        opacity 0.4s,
        transform 0.6s ease;
    pointer-events: none;
}
.mcard:hover .mcard-bg {
    opacity: 0.48;
    transform: scale(1.04);
}
.mcard-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.35s;
}
.mcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(255, 255, 255, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.mcard:hover::before {
    opacity: 1;
}
.mcard.vis {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.38s,
        color 0s;
}
.mcard:hover {
    transform: translateY(-8px) rotateX(0) !important;
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.28),
        0 0 48px rgba(196, 140, 255, 0.22);
}

/* Module 1 — ARTICA HR (purple) */
.mcard--hr {
    border-color: rgba(196, 140, 255, 0.35);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.mcard--hr .mcard-bg {
    background-image: url("../img/bg/bg.jpeg");
}
.mcard--hr .mcard-bg-overlay {
    background:
        linear-gradient(
            160deg,
            rgba(26, 3, 48, 0.92) 0%,
            rgba(61, 15, 110, 0.78) 45%,
            rgba(13, 1, 24, 0.88) 100%
        ),
        radial-gradient(
            circle at 20% 15%,
            rgba(196, 140, 255, 0.35) 0%,
            transparent 45%
        );
}
.mcard--hr::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        circle at 70% 80%,
        rgba(122, 44, 191, 0.25) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}
.mcard--hr:hover::after {
    opacity: 1;
}

/* Module 2 — XCUIIFY (warm orange) */
.mcard--xcu {
    border-color: rgba(255, 200, 140, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.mcard--xcu .mcard-bg {
    background-image: url("../img/bg/text-1.jpg");
}
.mcard--xcu .mcard-bg-overlay {
    background:
        linear-gradient(
            155deg,
            rgba(180, 72, 28, 0.94) 0%,
            rgba(224, 116, 60, 0.82) 40%,
            rgba(242, 168, 90, 0.9) 100%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 40%
        );
}
.mcard--xcu::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        circle at 25% 75%,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}
.mcard--xcu:hover::after {
    opacity: 1;
}

/* Module 3 — ARTICA CLINIC (teal / mint) */
.mcard--cli {
    border-color: rgba(120, 230, 210, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.mcard--cli .mcard-bg {
    background-image: url("../img/about/about_us.webp");
}
.mcard--cli .mcard-bg-overlay {
    background:
        linear-gradient(
            155deg,
            rgba(32, 120, 108, 0.94) 0%,
            rgba(58, 187, 168, 0.85) 42%,
            rgba(72, 202, 178, 0.92) 100%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 45%
        );
}
.mcard--cli::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        circle at 80% 25%,
        rgba(255, 255, 255, 0.14) 0%,
        transparent 48%
    );
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}
.mcard--cli:hover::after {
    opacity: 1;
}

/* card top label */
.mcard-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: auto;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
    text-shadow: 0 0 10px currentColor;
}
.mcard-logo,
.mcard-footer {
    position: relative;
    z-index: 2;
}
.mcard:hover .mcard-label {
    transform: translateX(5px);
}
.mcard--hr .mcard-label {
    color: rgba(255, 255, 255, 0.9);
}
.mcard--xcu .mcard-label {
    color: rgba(0, 0, 0, 0.9);
}
.mcard--cli .mcard-label {
    color: rgba(0, 0, 0, 0.9);
}

/* center logo zone */
.mcard-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 0;
    gap: 14px;
    position: relative;
}
.mcard-icon {
    width: 88px;
    height: 88px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.mcard-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}
.mcard:hover .mcard-icon {
    transform: scale(1.04);
}
.mcard:hover .mcard-icon-ring {
    transform: scale(1.06);
    opacity: 0.95;
}
.mcard-icon .fa-icon {
    position: relative;
    z-index: 2;
    font-size: 2.15rem;
    line-height: 1;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}
.mcard:hover .mcard-icon .fa-icon {
    transform: scale(1.03);
}
.mcard--hr .mcard-icon {
    box-shadow:
        0 0 0 1px rgba(196, 140, 255, 0.25),
        0 12px 40px rgba(122, 44, 191, 0.35);
}
.mcard--hr .mcard-icon .fa-icon {
    color: #fff;
    filter: drop-shadow(0 0 18px rgba(196, 140, 255, 0.65));
}
.mcard--hr .mcard-icon-ring {
    border-color: rgba(196, 140, 255, 0.45);
    background: rgba(196, 140, 255, 0.12);
}
.mcard--xcu .mcard-icon {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}
.mcard--xcu .mcard-icon .fa-icon {
    color: #1a0a00;
}
.mcard--xcu .mcard-icon-ring {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.22);
}
.mcard--cli .mcard-icon {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.mcard--cli .mcard-icon .fa-icon {
    color: #053d35;
}
.mcard--cli .mcard-icon-ring {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
}
.mcard-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    letter-spacing: 0.22em;
    text-align: center;
    transition: transform 0.3s;
    text-shadow: 0 0 20px currentColor;
}
.mcard:hover .mcard-name {
    transform: scale(1.05);
}
.mcard-cat {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    margin-top: -8px;
    transition: transform 0.3s;
}
.mcard:hover .mcard-cat {
    transform: scale(1.05);
}
.mcard--hr .mcard-name,
.mcard--hr .mcard-cat {
    color: #fff;
}
.mcard--xcu .mcard-name,
.mcard--xcu .mcard-cat {
    color: #0d0118;
}
.mcard--cli .mcard-name,
.mcard--cli .mcard-cat {
    color: #0d0118;
}

/* footer */
.mcard-footer {
    margin-top: auto;
    position: relative;
}
.mcard-desc {
    font-size: 13px;
    line-height: 1.68;
    font-weight: 300;
    margin-bottom: 18px;
    transition: color 0.3s;
    color: rgba(255, 255, 255, 0.8);
}
.mcard:hover .mcard-desc {
    color: rgba(255, 255, 255, 1) !important;
}
.mcard--hr .mcard-desc {
    color: rgba(255, 255, 255, 0.7);
}
.mcard--xcu .mcard-desc {
    color: rgba(0, 0, 0, 0.7);
}
.mcard--cli .mcard-desc {
    color: rgba(0, 0, 0, 0.7);
}

.mcard-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}
.mcard-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    position: relative;
}
.mcard-socials a {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        transform 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}
.mcard-socials a:hover {
    transform: translateY(-3px) scale(1.06);
    text-decoration: none;
}
.mcard-socials .fa-icon {
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.28s ease;
}
.mcard-socials a:hover .fa-icon {
    transform: scale(1.1);
}
.mcard--hr .mcard-socials a {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 140, 255, 0.25);
}
.mcard--hr .mcard-socials a:hover {
    background: rgba(196, 140, 255, 0.25);
    border-color: rgba(196, 140, 255, 0.5);
    box-shadow: 0 8px 20px rgba(122, 44, 191, 0.35);
}
.mcard--xcu .mcard-socials a {
    color: rgba(13, 1, 24, 0.75);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(0, 0, 0, 0.08);
}
.mcard--xcu .mcard-socials a:hover {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.mcard--cli .mcard-socials a {
    color: #053d35;
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.35);
}
.mcard--cli .mcard-socials a:hover {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Go to website — real link, button style */
.mcard-cta {
    margin-top: 16px;
}
.mcard-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 12px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition:
        gap 0.25s,
        transform 0.25s,
        box-shadow 0.25s,
        background 0.25s,
        border-color 0.25s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 3;
}
.mcard-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.5s;
}
.mcard-link:hover {
    gap: 14px;
    transform: translateY(-2px);
    text-decoration: none;
}
.mcard-link:hover::before {
    left: 100%;
}
.mcard-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}
.mcard--hr .mcard-link {
    color: #fff;
    background: rgba(122, 44, 191, 0.45);
    border-color: rgba(196, 140, 255, 0.5);
    box-shadow: 0 8px 24px rgba(122, 44, 191, 0.35);
}
.mcard--hr .mcard-link:hover {
    background: rgba(122, 44, 191, 0.65);
    box-shadow: 0 12px 32px rgba(196, 140, 255, 0.4);
}
.mcard--xcu .mcard-link {
    color: #1a0a00;
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.mcard--xcu .mcard-link:hover {
    background: rgba(255, 255, 255, 0.55);
}
.mcard--cli .mcard-link {
    color: #062a24;
    background: rgba(255, 255, 255, 0.38);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
.mcard--cli .mcard-link:hover {
    background: rgba(255, 255, 255, 0.55);
}
.mcard-link--muted,
.mcard-link--disabled {
    opacity: 0.92;
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}
.mcard-link--disabled {
    display: inline-flex;
}
.mcard-link--disabled:hover {
    transform: none;
    gap: 10px;
}
.mcard-link--disabled:hover::before {
    left: -100%;
}
.mcard-link--disabled .fa-icon--arrow {
    transform: none;
}
.mcard--cli .mcard-link--disabled {
    color: #053d35;
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(6, 42, 36, 0.2);
    box-shadow: none;
}
.mcard-link .fa-icon--arrow {
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: transform 0.28s ease;
}
.mcard-link:hover .fa-icon--arrow {
    transform: translateX(4px);
}
.mcard-line {
    flex: 1;
    max-width: 40px;
    height: 1px;
    transition: max-width 0.3s;
    background: currentColor;
    opacity: 0.45;
}
.mcard-link:hover .mcard-line {
    max-width: 56px;
}

/* ─── SOON BADGE ─── */
.soon-badge {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 14px;
    background: rgba(122, 44, 191, 0.2);
    color: #7a2cbf;
    border: 1px solid rgba(122, 44, 191, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    text-shadow: 0 0 10px currentColor;
}
.soon-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(196, 140, 255, 0.3);
    transition: left 0.5s;
}
.soon-badge:hover {
    transform: scale(1.05);
}
.soon-badge:hover::before {
    left: 100%;
}
.mcard--hr .soon-badge {
    background: rgba(196, 140, 255, 0.2);
    color: #c48cff;
    border-color: rgba(196, 140, 255, 0.3);
}
.mcard--xcu .soon-badge {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.2);
}

/* ARTICA Clinic — launching soon (Font Awesome, no link) */
.mcard--cli .mcard-footer {
    display: flex;
    flex-direction: column;
}
.mcard-soon-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px dashed rgba(6, 42, 36, 0.4);
    background: rgba(255, 255, 255, 0.32);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    z-index: 3;
    overflow: hidden;
    cursor: default;
    user-select: none;
}
.mcard-soon-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 45%,
        transparent 90%
    );
    transform: translateX(-100%);
    animation: soonShine 3.5s ease-in-out infinite;
}
@keyframes soonShine {
    0%,
    100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}
.mcard-soon-cta .fa-icon--soon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    color: #064a40;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(6, 42, 36, 0.15);
    position: relative;
    z-index: 1;
    animation: soonPulse 2.2s ease-in-out infinite;
}
@keyframes soonPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}
.mcard-soon-cta__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #053d35;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}
.mcard-soon-cta__hint {
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(6, 42, 36, 0.78);
    max-width: 17rem;
    position: relative;
    z-index: 1;
}
.mcard--cli:hover .mcard-soon-cta {
    border-color: rgba(6, 42, 36, 0.5);
    background: rgba(255, 255, 255, 0.4);
}

/* ─── FLOATING ELEMENTS ─── */
.particle {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}
.particle-1 {
    width: 4px;
    height: 4px;
    background: #c48cff;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.particle-2 {
    width: 3px;
    height: 3px;
    background: #7a2cbf;
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}
.particle-3 {
    width: 2px;
    height: 2px;
    background: #c48cff;
    border-radius: 50%;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* ─── NAVIGATION DOTS ─── */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(196, 140, 255, 0.3);
    border: 1px solid rgba(196, 140, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.nav-dot:hover,
.nav-dot.active {
    background: #c48cff;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(196, 140, 255, 0.5);
}
.nav-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(196, 140, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-dot:hover::after {
    opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .cards-grid {
        gap: 16px;
    }
    .mcard {
        min-height: 520px;
    }
}
@media (max-width: 960px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .mcard {
        min-height: 480px;
    }
    .cards-wrapper {
        padding: 56px 20px 72px;
    }
    .nav-dots {
        right: 20px;
    }
    .section-heading {
        margin-bottom: 36px;
    }
}
@media (max-width: 480px) {
    .hero-headline {
        font-size: 52px;
    }
    .mcard {
        min-height: auto;
    }
    .mcard__inner {
        padding: 26px 22px 28px;
    }
    .mcard-logo {
        padding: 28px 0;
    }
    .mcard-link {
        padding: 11px 14px;
        font-size: 10px;
    }
    .mcard-icon {
        width: 76px;
        height: 76px;
    }
    .mcard-icon .fa-icon {
        font-size: 1.85rem;
    }
    .mcard-socials a {
        width: 34px;
        height: 34px;
    }
    .mcard-soon-cta {
        padding: 14px 16px;
    }
    .nav-dots {
        right: 10px;
    }
    .cursor,
    .cursor-dot {
        display: none;
    }
}