/* =========================================================
   PCM.ID — PENUL CREATIVE MANAGEMENT
   PREMIUM BLACK PURPLE LANDING PAGE
   PART 2 — STYLE.CSS
========================================================= */


/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {

    --bg: #050308;
    --bg-soft: #090511;
    --bg-card: #0d0816;
    --bg-card-2: #120a1d;

    --purple: #8b2cff;
    --purple-light: #b86cff;
    --purple-dark: #5b12c9;

    --violet: #a855f7;
    --pink-purple: #d946ef;

    --white: #ffffff;
    --text: #f7f3ff;
    --text-soft: #cfc6dc;
    --muted: #8e849c;

    --border: rgba(168, 85, 247, 0.18);
    --border-light: rgba(255, 255, 255, 0.08);

    --shadow-purple:
        0 0 40px rgba(139, 44, 255, 0.18);

    --shadow-purple-heavy:
        0 0 80px rgba(139, 44, 255, 0.28);

    --container: 1200px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition:
        all 0.35s cubic-bezier(0.22, 1, 0.36, 1);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {

    font-family: 'Inter', sans-serif;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(139, 44, 255, 0.13),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    overflow-x: hidden;

    line-height: 1.7;

}


body::selection {
    background: var(--purple);
    color: white;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea {
    font: inherit;
}


button {
    border: 0;
}


ul {
    list-style: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}


/* =========================================================
   BACKGROUND EFFECT
========================================================= */

.background-effects {

    position: fixed;

    inset: 0;

    pointer-events: none;

    overflow: hidden;

    z-index: -10;

}


.grid-background {

    position: absolute;

    inset: 0;

    opacity: 0.22;

    background-image:

        linear-gradient(
            rgba(168, 85, 247, 0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(168, 85, 247, 0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

}


.purple-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    opacity: 0.25;

}


.orb-1 {

    width: 420px;
    height: 420px;

    background: var(--purple);

    top: -180px;
    left: -150px;

}


.orb-2 {

    width: 350px;
    height: 350px;

    background: var(--pink-purple);

    top: 30%;
    right: -180px;

}


.orb-3 {

    width: 300px;
    height: 300px;

    background: var(--violet);

    bottom: -150px;
    left: 35%;

}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {

    position: fixed;

    inset: 0;

    background: #030205;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 99999;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;

}


.preloader.hide {

    opacity: 0;

    visibility: hidden;

}


.loader-content {

    text-align: center;

}


.loader-logo {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(168, 85, 247, 0.3),
            rgba(88, 28, 135, 0.15)
        );

    border: 1px solid var(--border);

    box-shadow:
        0 0 45px rgba(139, 44, 255, 0.3);

    overflow: hidden;

}


.loader-logo img {

    width: 65px;
    height: 65px;

    object-fit: contain;

}


.loader-fallback-text {

    display: none;

    font-family: 'Poppins', sans-serif;

    font-size: 26px;

    font-weight: 900;

    color: white;

}


.loader-logo.logo-fallback .loader-fallback-text {
    display: block;
}


.loader-line {

    width: 180px;
    height: 2px;

    margin: 25px auto 15px;

    overflow: hidden;

    background: rgba(255,255,255,0.08);

}


.loader-line::after {

    content: "";

    display: block;

    width: 50%;

    height: 100%;

    background: var(--purple-light);

    box-shadow:
        0 0 20px var(--purple);

    animation:
        loaderLine 1.2s infinite ease-in-out;

}


@keyframes loaderLine {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }

}


.loader-content p {

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 4px;

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    padding: 20px 0;

    transition: var(--transition);

}


.navbar.scrolled {

    padding: 12px 0;

    background:
        rgba(5, 3, 8, 0.78);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid var(--border-light);

}


.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.logo img {

    width: 46px;
    height: 46px;

    object-fit: contain;

}


.logo-fallback {

    display: flex;

    align-items: center;

    font-family: 'Poppins', sans-serif;

    font-size: 22px;

    font-weight: 900;

    letter-spacing: -1px;

}


.logo-fallback span {

    color: var(--purple-light);

}


.logo-icon {

    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;

    font-weight: 900;

    font-size: 21px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink-purple)
        );

    box-shadow:
        0 0 25px rgba(139, 44, 255, 0.3);

}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 32px;

}


.nav-link {

    position: relative;

    color: var(--muted);

    font-size: 13px;

    font-weight: 600;

    transition: var(--transition);

}


.nav-link:hover,
.nav-link.active {

    color: white;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -8px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: var(--purple-light);

    box-shadow:
        0 0 10px var(--purple);

    transition: var(--transition);

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 18px;

}


/* =========================================================
   NAV CTA
========================================================= */

.nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    border: 1px solid var(--border);

    border-radius: 50px;

    background:
        rgba(139, 44, 255, 0.08);

    font-size: 12px;

    font-weight: 700;

    transition: var(--transition);

}


.nav-cta i {

    color: var(--purple-light);

}


.nav-cta:hover {

    transform: translateY(-2px);

    background:
        rgba(139, 44, 255, 0.18);

    border-color:
        rgba(168, 85, 247, 0.5);

    box-shadow:
        0 0 25px rgba(139, 44, 255, 0.18);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border-radius: 12px;

    background:
        rgba(139, 44, 255, 0.1);

    border:
        1px solid var(--border);

    cursor: pointer;

    padding: 10px;

}


.menu-toggle span {

    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: white;

    transition: var(--transition);

}


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding:
        150px 0
        90px;

}


.hero-container {

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    align-items: center;

    gap: 70px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border:
        1px solid var(--border);

    border-radius: 50px;

    background:
        rgba(139, 44, 255, 0.07);

    color: var(--purple-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 25px;

}


.badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c084fc;

    box-shadow:
        0 0 12px #a855f7;

    animation:
        pulseDot 1.8s infinite;

}


@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.7);
    }

}


.hero h1 {

    max-width: 760px;

    font-family: 'Poppins', sans-serif;

    font-size:
        clamp(48px, 6vw, 84px);

    line-height: 1.02;

    letter-spacing: -4px;

    font-weight: 900;

}


.hero h1 span {

    display: block;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #b86cff,
            #8b2cff
        );

    -webkit-background-clip: text;
    background-clip: text;

}


.hero-description {

    max-width: 650px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.9;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 35px;

}


.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 21px;

    border-radius: 12px;

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);

}


.btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink-purple)
        );

    box-shadow:
        0 10px 35px rgba(139, 44, 255, 0.25);

}


.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 45px rgba(139, 44, 255, 0.4);

}


.btn-outline {

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,0.025);

    color: var(--text);

}


.btn-outline:hover {

    transform: translateY(-4px);

    border-color:
        rgba(168, 85, 247, 0.55);

    background:
        rgba(139, 44, 255, 0.1);

    box-shadow:
        0 10px 30px rgba(139, 44, 255, 0.12);

}


/* =========================================================
   HERO SOCIAL
========================================================= */

.hero-social {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

}


.hero-social span {

    color: var(--muted);

    font-size: 11px;

    margin-right: 5px;

}


.hero-social a {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 10px;

    color: var(--muted);

    background:
        rgba(255,255,255,0.02);

    transition: var(--transition);

}


.hero-social a:hover {

    color: white;

    transform:
        translateY(-4px);

    border-color:
        var(--purple);

    background:
        rgba(139, 44, 255, 0.15);

    box-shadow:
        0 0 25px rgba(139, 44, 255, 0.2);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    min-height: 570px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-card {

    position: relative;

    width: min(100%, 470px);

    min-height: 520px;

    border:
        1px solid rgba(168,85,247,0.3);

    border-radius: 35px;

    overflow: hidden;

    background:

        linear-gradient(
            145deg,
            rgba(30,15,50,0.95),
            rgba(7,4,12,0.98)
        );

    box-shadow:
        0 30px 100px rgba(0,0,0,0.5),
        0 0 80px rgba(139,44,255,0.12);

}


.hero-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 25%,
            rgba(168,85,247,0.1),
            transparent 65%
        );

}


.card-glow {

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        var(--purple);

    filter: blur(120px);

    opacity: .25;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}


/* =========================================================
   VISUAL TOP
========================================================= */

.visual-top {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    padding: 25px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.live-indicator {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #c084fc;

}


.live-indicator span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #a855f7;

    box-shadow:
        0 0 10px #a855f7;

}


/* =========================================================
   HERO LOGO
========================================================= */

.hero-logo-display {

    position: absolute;

    z-index: 2;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    text-align: center;

    width: 100%;

}


.logo-circle {

    width: 160px;
    height: 160px;

    margin: 0 auto 30px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(192,132,252,0.5);

    background:
        radial-gradient(
            circle,
            rgba(168,85,247,0.22),
            rgba(5,3,8,0.9)
        );

    box-shadow:
        0 0 50px rgba(139,44,255,0.2),
        inset 0 0 40px rgba(139,44,255,0.12);

}


.logo-circle img {

    width: 110px;
    height: 110px;

    object-fit: contain;

}


.logo-letter {

    display: none;

    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;

    font-size: 70px;

    font-weight: 900;

    color: white;

}


.hero-logo-display h2 {

    font-family: 'Poppins', sans-serif;

    font-size: 44px;

    font-weight: 900;

    letter-spacing: -2px;

}


.hero-logo-display h2 span {

    color: var(--purple-light);

}


.hero-logo-display p {

    margin-top: 5px;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 3px;

}


/* =========================================================
   VISUAL BOTTOM
========================================================= */

.visual-bottom {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 2;

}


.visual-stat {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.visual-stat strong {

    color: white;

    font-family: 'Poppins', sans-serif;

    font-size: 16px;

}


.visual-stat span {

    color: var(--muted);

    font-size: 7px;

    letter-spacing: 1px;

}


.visual-line {

    width: 1px;

    height: 30px;

    background:
        rgba(255,255,255,0.1);

}


/* =========================================================
   FLOATING CARD
========================================================= */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        rgba(12,7,19,0.82);

    backdrop-filter: blur(15px);

    box-shadow:
        0 15px 50px rgba(0,0,0,0.3);

    animation:
        floating 4s ease-in-out infinite;

}


.floating-card-1 {

    top: 90px;

    right: -25px;

}


.floating-card-2 {

    bottom: 90px;

    left: -30px;

    animation-delay: -2s;

}


@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


.floating-icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #d8b4fe;

    background:
        rgba(139,44,255,0.15);

}


.floating-card strong {

    display: block;

    font-size: 10px;

}


.floating-card span {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 8px;

}


/* =========================================================
   SCROLL DOWN
========================================================= */

.scroll-down {

    position: absolute;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 2px;

}


.scroll-down i {

    color: var(--purple-light);

    animation:
        scrollArrow 1.5s infinite;

}


@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* =========================================================
   MARQUEE
========================================================= */

.marquee-section {

    padding: 18px 0;

    overflow: hidden;

    border-top:
        1px solid var(--border-light);

    border-bottom:
        1px solid var(--border-light);

    background:
        rgba(139,44,255,0.035);

}


.marquee {

    overflow: hidden;

}


.marquee-content {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 28px;

    animation:
        marquee 25s linear infinite;

}


.marquee-content span {

    color: #d5cbe0;

    font-family: 'Poppins', sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.marquee-content i {

    color: var(--purple-light);

    font-size: 8px;

}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   SECTION
========================================================= */

.section {

    padding: 120px 0;

}


.section-heading {

    max-width: 800px;

    margin-bottom: 60px;

}


.section-heading.centered {

    margin-left: auto;
    margin-right: auto;

    text-align: center;

}


.section-label {

    display: inline-block;

    color: var(--purple-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 17px;

}


.section-heading h2,
.why-content h2 {

    font-family: 'Poppins', sans-serif;

    font-size:
        clamp(35px, 5vw, 58px);

    line-height: 1.1;

    letter-spacing: -2.5px;

    font-weight: 900;

}


.section-heading h2 span,
.why-content h2 span {

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #a855f7
        );

    -webkit-background-clip: text;

    background-clip: text;

}


.section-heading p {

    max-width: 600px;

    margin: 20px auto 0;

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 90px;

    align-items: start;

}


.about-content {

    max-width: 600px;

}


.about-lead {

    color: white !important;

    font-size: 20px !important;

    line-height: 1.7 !important;

}


.about-content p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 20px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--purple-light);

    font-size: 12px;

    font-weight: 800;

    margin-top: 10px;

}


.text-link i {

    transition: var(--transition);

}


.text-link:hover i {

    transform:
        translateX(6px);

}


/* =========================================================
   STAT CARD
========================================================= */

.about-stats {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.stat-card {

    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 25px;

    border:
        1px solid var(--border-light);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.025),
            rgba(139,44,255,0.035)
        );

    transition: var(--transition);

}


.stat-card:hover {

    transform:
        translateX(7px);

    border-color:
        rgba(168,85,247,0.35);

    box-shadow:
        var(--shadow-purple);

}


.stat-card > strong {

    color: var(--purple-light);

    font-family: 'Poppins', sans-serif;

    font-size: 15px;

}


.stat-card h3 {

    font-family: 'Poppins', sans-serif;

    font-size: 17px;

}


.stat-card p {

    color: var(--muted);

    font-size: 12px;

    margin-top: 5px;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(139,44,255,0.025),
            transparent
        );

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.service-card {

    position: relative;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid var(--border-light);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(139,44,255,0.025)
        );

    transition: var(--transition);

}


.service-card::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        var(--purple);

    filter: blur(90px);

    opacity: 0;

    right: -60px;
    top: -60px;

    transition: var(--transition);

}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(168,85,247,0.45);

    box-shadow:
        var(--shadow-purple);

}


.service-card:hover::before {

    opacity: .18;

}


.service-card.featured {

    border-color:
        rgba(168,85,247,0.3);

    background:
        linear-gradient(
            145deg,
            rgba(139,44,255,0.1),
            rgba(255,255,255,0.025)
        );

}


.service-number {

    position: absolute;

    top: 25px;
    right: 25px;

    color:
        rgba(255,255,255,0.15);

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 900;

}


.service-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border-radius: 15px;

    color: #d8b4fe;

    background:
        rgba(139,44,255,0.12);

    border:
        1px solid rgba(168,85,247,0.18);

    font-size: 20px;

}


.service-card h3 {

    font-family: 'Poppins', sans-serif;

    font-size: 18px;

}


.service-card p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;

}


.service-link {

    position: absolute;

    left: 30px;
    bottom: 28px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--purple-light);

    font-size: 10px;

    font-weight: 800;

}


.service-link i {

    transition: var(--transition);

}


.service-link:hover i {

    transform:
        translateX(5px);

}


/* =========================================================
   CREATORS
========================================================= */

.creators-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

}


.creator-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


.creator-card {

    overflow: hidden;

    border:
        1px solid var(--border-light);

    border-radius: 20px;

    background:
        var(--bg-card);

    transition: var(--transition);

}


.creator-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(168,85,247,0.4);

    box-shadow:
        var(--shadow-purple);

}


.creator-image {

    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #1c0d2b,
            #08050d
        );

}


.creator-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;

}


.creator-card:hover .creator-image img {

    transform:
        scale(1.08);

}


.creator-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        rgba(192,132,252,0.4);

    font-size: 55px;

    background:
        radial-gradient(
            circle,
            rgba(139,44,255,0.18),
            transparent 60%
        );

}


.creator-tag {

    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 9px;

    border-radius: 7px;

    background:
        rgba(5,3,8,0.75);

    border:
        1px solid var(--border);

    backdrop-filter: blur(10px);

    color: #d8b4fe;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

}


.creator-info {

    padding: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.creator-info h3 {

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

}


.creator-info p {

    color: var(--muted);

    font-size: 9px;

    margin-top: 3px;

}


.creator-info > a {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: var(--purple-light);

    background:
        rgba(139,44,255,0.08);

    transition: var(--transition);

}


.creator-info > a:hover {

    background:
        var(--purple);

    color: white;

}


/* =========================================================
   WHY SECTION
========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;

}


.why-content > p {

    max-width: 550px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 14px;

}


.why-list {

    margin-top: 40px;

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.why-item {

    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

}


.why-item > span {

    color: var(--purple-light);

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 900;

}


.why-item h3 {

    font-family: 'Poppins', sans-serif;

    font-size: 15px;

}


.why-item p {

    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;

}


/* =========================================================
   WHY VISUAL
========================================================= */

.why-card {

    min-height: 430px;

    padding: 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border:
        1px solid rgba(168,85,247,0.25);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(139,44,255,0.18),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(139,44,255,0.08),
            rgba(255,255,255,0.02)
        );

    box-shadow:
        var(--shadow-purple);

}


.why-card-label {

    color: var(--purple-light);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 30px;

}


.why-big-text {

    font-family: 'Poppins', sans-serif;

    font-size:
        clamp(40px, 5vw, 70px);

    font-weight: 900;

    line-height: .95;

    letter-spacing: -4px;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.35);

    transition: var(--transition);

}


.why-big-text:hover {

    color: #a855f7;

    -webkit-text-stroke:
        1px #a855f7;

    text-shadow:
        0 0 35px rgba(168,85,247,0.5);

}


.why-card-footer {

    display: flex;

    justify-content: space-between;

    margin-top: 45px;

    padding-top: 18px;

    border-top:
        1px solid var(--border-light);

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 1px;

}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    padding: 50px 0;

    border-top:
        1px solid var(--border-light);

    border-bottom:
        1px solid var(--border-light);

    background:
        rgba(139,44,255,0.025);

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.big-stat {

    min-height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-right:
        1px solid var(--border-light);

}


.big-stat:last-child {

    border-right: 0;

}


.big-stat strong {

    font-family: 'Poppins', sans-serif;

    font-size: 32px;

    line-height: 1;

    color: white;

}


.big-stat span {

    margin-top: 8px;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 1px;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 120px 0;

}


.cta-box {

    position: relative;

    overflow: hidden;

    text-align: center;

    padding:
        90px 30px;

    border:
        1px solid rgba(168,85,247,0.25);

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(139,44,255,0.15),
            transparent 60%
        ),
        rgba(255,255,255,0.02);

}


.cta-glow {

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        var(--purple);

    filter: blur(130px);

    opacity: .12;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

}


.cta-box > *:not(.cta-glow) {

    position: relative;

    z-index: 2;

}


.cta-box h2 {

    max-width: 750px;

    margin: auto;

    font-family: 'Poppins', sans-serif;

    font-size:
        clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 900;

}


.cta-box h2 span {

    display: block;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #a855f7
        );

    -webkit-background-clip: text;

    background-clip: text;

}


.cta-box p {

    max-width: 600px;

    margin: 25px auto 0;

    color: var(--muted);

    font-size: 13px;

}


.cta-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        70px 0
        25px;

    border-top:
        1px solid var(--border-light);

    background:
        #030205;

}


.footer-top {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 60px;

    padding-bottom: 60px;

}


.footer-brand {

    max-width: 330px;

}


.footer-logo {

    margin-bottom: 20px;

}


.footer-brand p {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

}


.footer-social {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.footer-social a {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border-light);

    border-radius: 9px;

    color: var(--muted);

    font-size: 12px;

    transition: var(--transition);

}


.footer-social a:hover {

    color: white;

    border-color:
        var(--purple);

    background:
        rgba(139,44,255,0.12);

    transform:
        translateY(-3px);

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;

}


.footer-column h4 {

    margin-bottom: 10px;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

}


.footer-column a,
.footer-column span {

    color: var(--muted);

    font-size: 10px;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--purple-light);

    transform:
        translateX(4px);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    border-top:
        1px solid var(--border-light);

}


.footer-bottom p {

    color: #645b6e;

    font-size: 9px;

}


.footer-bottom-links {

    display: flex;

    gap: 20px;

}


.footer-bottom-links a {

    color: #645b6e;

    font-size: 9px;

}


.footer-bottom-links a:hover {

    color: var(--purple-light);

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 15px;

    border-radius: 50px;

    background:
        #171020;

    border:
        1px solid rgba(168,85,247,0.25);

    color: white;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.35);

    font-size: 11px;

    font-weight: 800;

    transition: var(--transition);

}


.floating-whatsapp i {

    color: #c084fc;

    font-size: 17px;

}


.floating-whatsapp:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(168,85,247,0.6);

    box-shadow:
        0 10px 45px rgba(139,44,255,0.25);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;
    bottom: 90px;

    width: 42px;
    height: 42px;

    z-index: 899;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: white;

    background:
        rgba(20,10,30,0.85);

    border:
        1px solid var(--border);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition: var(--transition);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.back-to-top:hover {

    background:
        var(--purple);

    box-shadow:
        0 0 25px rgba(139,44,255,0.35);

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {


    .nav-menu {

        gap: 18px;

    }


    .nav-cta {

        display: none;

    }


    .hero-container {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .hero-description {

        margin-left: auto;
        margin-right: auto;

    }


    .hero-social {

        justify-content: center;

    }


    .hero-visual {

        min-height: 500px;

    }


    .about-grid,
    .why-grid {

        gap: 50px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .creator-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-top {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {


    .container {

        width:
            min(
                calc(100% - 30px),
                var(--container)
            );

    }


    .navbar {

        padding: 14px 0;

    }


    .nav-menu {

        position: fixed;

        top: 75px;

        left: 15px;
        right: 15px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        border:
            1px solid var(--border);

        border-radius: 18px;

        background:
            rgba(8,5,13,0.96);

        backdrop-filter: blur(20px);

        box-shadow:
            0 20px 70px rgba(0,0,0,0.5);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition: var(--transition);

    }


    .nav-menu.active {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }


    .nav-link {

        padding: 14px;

        border-radius: 10px;

    }


    .nav-link:hover {

        background:
            rgba(139,44,255,0.08);

    }


    .nav-link::after {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .hero {

        min-height: auto;

        padding:
            130px 0
            90px;

    }


    .hero-container {

        gap: 40px;

    }


    .hero h1 {

        font-size:
            clamp(42px, 13vw, 65px);

        letter-spacing: -3px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-visual {

        min-height: 460px;

    }


    .hero-card {

        min-height: 430px;

    }


    .floating-card {

        transform:
            scale(.85);

    }


    .floating-card-1 {

        right: -20px;
        top: 55px;

    }


    .floating-card-2 {

        left: -20px;
        bottom: 55px;

    }


    .scroll-down {

        display: none;

    }


    .section {

        padding: 85px 0;

    }


    .section-heading {

        margin-bottom: 40px;

    }


    .section-heading h2,
    .why-content h2 {

        font-size: 38px;

        letter-spacing: -2px;

    }


    .about-grid,
    .why-grid {

        grid-template-columns:
            1fr;

    }


    .about-lead {

        font-size: 17px !important;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height: 290px;

    }


    .creators-heading {

        align-items: flex-start;

        flex-direction: column;

    }


    .creator-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

    }


    .creator-info {

        padding: 13px;

    }


    .creator-info h3 {

        font-size: 12px;

    }


    .creator-info p {

        font-size: 8px;

    }


    .why-card {

        min-height: 350px;

        padding: 30px;

    }


    .why-big-text {

        font-size: 47px;

        letter-spacing: -3px;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .big-stat {

        min-height: 100px;

        border-bottom:
            1px solid var(--border-light);

    }


    .big-stat:nth-child(2) {

        border-right: 0;

    }


    .big-stat:nth-child(3),
    .big-stat:nth-child(4) {

        border-bottom: 0;

    }


    .cta-section {

        padding: 80px 0;

    }


    .cta-box {

        padding:
            65px 20px;

    }


    .cta-box h2 {

        font-size: 40px;

    }


    .cta-buttons {

        flex-direction: column;

    }


    .cta-buttons .btn {

        width: 100%;

    }


    .footer-top {

        grid-template-columns:
            1fr 1fr;

        gap: 40px 25px;

    }


    .footer-brand {

        grid-column:
            1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }


}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .logo img {

        width: 40px;
        height: 40px;

    }


    .logo-fallback {

        font-size: 19px;

    }


    .hero-logo-display h2 {

        font-size: 35px;

    }


    .logo-circle {

        width: 130px;
        height: 130px;

    }


    .logo-circle img {

        width: 90px;
        height: 90px;

    }


    .hero-card {

        min-height: 400px;

        border-radius: 25px;

    }


    .visual-bottom {

        left: 18px;
        right: 18px;
        bottom: 18px;

    }


    .floating-card {

        padding: 10px;

    }


    .floating-card strong {

        font-size: 8px;

    }


    .floating-card span {

        font-size: 7px;

    }


    .floating-icon {

        width: 31px;
        height: 31px;

        font-size: 12px;

    }


    .creator-grid {

        grid-template-columns:
            1fr;

    }


    .creator-image {

        aspect-ratio: 1 / 1;

    }


    .stats-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .big-stat strong {

        font-size: 25px;

    }


    .big-stat span {

        font-size: 7px;

    }


    .footer-top {

        grid-template-columns:
            1fr;

    }


    .footer-brand {

        grid-column:
            auto;

    }


    .footer-column {

        gap: 8px;

    }


    .floating-whatsapp {

        right: 15px;
        bottom: 15px;

    }


    .floating-whatsapp span {

        display: none;

    }


    .floating-whatsapp {

        width: 48px;
        height: 48px;

        padding: 0;

        justify-content: center;

    }


    .back-to-top {

        right: 15px;
        bottom: 75px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

    }

}

/* =========================================================
   PCM.ID — PREMIUM HOME BANNER
========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 90px;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 8% 5%,
            rgba(139, 44, 255, 0.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 50%,
            rgba(217, 70, 239, 0.13),
            transparent 30%
        ),
        #07030d;
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(168, 85, 247, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(168, 85, 247, 0.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.hero-bg-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


.hero-bg-glow-1 {
    width: 400px;
    height: 400px;

    left: -220px;
    top: -150px;

    background: #721cff;

    opacity: .25;

    animation:
        heroGlowOne 7s ease-in-out infinite;
}


.hero-bg-glow-2 {
    width: 380px;
    height: 380px;

    right: -180px;
    bottom: -120px;

    background: #c026d3;

    opacity: .18;

    animation:
        heroGlowTwo 8s ease-in-out infinite;
}


@keyframes heroGlowOne {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 30px);
    }

}


@keyframes heroGlowTwo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -30px);
    }

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    align-items: center;

    gap: 70px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 5;
}


.hero-badge {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    margin-bottom: 25px;

    border:
        1px solid rgba(168, 85, 247, .25);

    border-radius: 50px;

    background:
        rgba(139, 44, 255, .08);

    color: #c084fc;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    box-shadow:
        0 0 30px rgba(139, 44, 255, .08);

}


.hero-badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c084fc;

    box-shadow:
        0 0 12px #a855f7;

    animation:
        heroDot 1.5s infinite;

}


@keyframes heroDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(.65);
    }

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {

    max-width: 720px;

    margin: 0;

    font-family:
        'Poppins',
        sans-serif;

    font-size:
        clamp(48px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 900;

    color: #fff;
}


.hero h1 span {

    display: block;

    margin-top: 7px;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #d8b4fe 35%,
            #a855f7 70%,
            #7c3aed 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    text-shadow:
        0 0 40px rgba(168, 85, 247, .08);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {

    max-width: 590px;

    margin-top: 28px;

    color: #988fa5;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


.hero-buttons .btn {

    min-height: 52px;

    padding:
        0 22px;

    border-radius: 13px;
}


.hero-buttons .btn-primary {

    background:
        linear-gradient(
            135deg,
            #8b2cff,
            #c026d3
        );

    box-shadow:
        0 12px 35px
        rgba(139, 44, 255, .25);
}


.hero-buttons .btn-primary:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 45px
        rgba(139, 44, 255, .4);
}


/* =========================================================
   SOCIAL
========================================================= */

.hero-social {

    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.hero-social > span {

    margin-right: 5px;

    color: #665d70;

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 700;
}


.hero-social a {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(168, 85, 247, .16);

    border-radius: 9px;

    color: #958ba2;

    background:
        rgba(255,255,255,.025);

    transition:
        all .3s ease;
}


.hero-social a:hover {

    color: #fff;

    transform:
        translateY(-4px);

    background:
        rgba(139,44,255,.15);

    border-color:
        rgba(168,85,247,.5);

    box-shadow:
        0 0 25px
        rgba(139,44,255,.2);
}


/* =========================================================
   RIGHT BANNER
========================================================= */

.hero-banner {

    position: relative;

    min-height: 510px;

    border-radius: 32px;

    overflow: hidden;

    border:
        1px solid
        rgba(168, 85, 247, .28);

    background:

        radial-gradient(
            circle at center,
            rgba(139, 44, 255, .15),
            transparent 38%
        ),

        linear-gradient(
            145deg,
            rgba(25, 11, 42, .98),
            rgba(7, 3, 13, .98)
        );

    box-shadow:

        0 35px 100px
        rgba(0,0,0,.45),

        0 0 80px
        rgba(139,44,255,.10);

    transform:
        perspective(1200px)
        rotateY(-3deg);

    transition:
        transform .6s ease;
}


.hero-banner:hover {

    transform:
        perspective(1200px)
        rotateY(0deg)
        translateY(-5px);

}


/* =========================================================
   BANNER GLOW
========================================================= */

.banner-glow {

    position: absolute;

    width: 280px;
    height: 280px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        #8b2cff;

    filter: blur(100px);

    opacity: .17;

    animation:
        bannerPulse 5s ease-in-out infinite;
}


@keyframes bannerPulse {

    0%,
    100% {
        opacity: .12;
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        opacity: .22;
        transform:
            translate(-50%, -50%)
            scale(1.15);
    }

}


/* =========================================================
   BANNER TOP
========================================================= */

.banner-top {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 24px 25px;

    color: rgba(255,255,255,.55);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.banner-status {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #c084fc;

    font-size: 7px;

    letter-spacing: 1px;
}


.banner-status span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #a855f7;

    box-shadow:
        0 0 12px
        #a855f7;

    animation:
        heroDot 1.5s infinite;
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.banner-circle {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(168,85,247,.12);

    pointer-events: none;
}


.circle-one {

    width: 380px;
    height: 380px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

}


.circle-two {

    width: 260px;
    height: 260px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-color:
        rgba(192,132,252,.15);
}


/* =========================================================
   BANNER CENTER
========================================================= */

.banner-center {

    position: absolute;

    z-index: 5;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 100%;

    text-align: center;
}


/* =========================================================
   LOGO
========================================================= */

.banner-logo {

    width: 145px;
    height: 145px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(192,132,252,.45);

    background:
        radial-gradient(
            circle,
            rgba(139,44,255,.18),
            rgba(5,3,8,.95)
        );

    box-shadow:

        0 0 50px
        rgba(139,44,255,.2),

        inset 0 0 35px
        rgba(139,44,255,.12);
}


.banner-logo img {

    width: 100px;
    height: 100px;

    object-fit: contain;
}


.banner-logo-fallback {

    display: none;

    align-items: center;
    justify-content: center;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 65px;

    font-weight: 900;

    color: #fff;
}


.banner-name strong {

    display: block;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 45px;

    line-height: 1;

    letter-spacing: -2px;

    color: #fff;
}


.banner-name strong span {

    color: #a855f7;

}


.banner-name small {

    display: block;

    margin-top: 9px;

    color: #786e84;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================================
   BANNER BOTTOM
========================================================= */

.banner-bottom {

    position: absolute;

    z-index: 5;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.07);
}


.banner-stat {

    display: flex;

    flex-direction: column;

    text-align: center;
}


.banner-stat strong {

    color: #ddd5e7;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.banner-stat span {

    margin-top: 3px;

    color: #63596d;

    font-size: 6px;

    letter-spacing: 1px;
}


.banner-divider {

    width: 1px;
    height: 28px;

    background:
        rgba(255,255,255,.08);
}


/* =========================================================
   FLOATING BANNER CARD
========================================================= */

.banner-floating-card {

    position: absolute;

    z-index: 10;

    right: -25px;
    top: 105px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 15px;

    border:
        1px solid
        rgba(168,85,247,.25);

    border-radius: 14px;

    background:
        rgba(12,6,19,.88);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.35);

    animation:
        floatingBannerCard
        4s ease-in-out infinite;
}


@keyframes floatingBannerCard {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }

}


.banner-floating-icon {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #d8b4fe;

    background:
        rgba(139,44,255,.14);

    font-size: 17px;
}


.banner-floating-card strong {

    display: block;

    color: #fff;

    font-size: 9px;

    letter-spacing: .5px;
}


.banner-floating-card span {

    display: block;

    margin-top: 2px;

    color: #70667a;

    font-size: 7px;
}


/* =========================================================
   SCROLL
========================================================= */

.hero .scroll-down {

    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 25px;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    color: #665d70;

    font-size: 7px;

    letter-spacing: 2px;
}


.hero .scroll-down i {

    color: #a855f7;

    animation:
        scrollHero 1.5s infinite;
}


@keyframes scrollHero {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(6px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-container {

        grid-template-columns:
            1fr;

        text-align: center;

        gap: 55px;
    }


    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .hero-description {

        margin-left: auto;
        margin-right: auto;
    }


    .hero-social {

        justify-content: center;
    }


    .hero-banner {

        width:
            min(100%, 600px);

        margin: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {

        min-height: auto;

        padding:
            125px 0 80px;
    }


    .hero-container {

        gap: 45px;
    }


    .hero h1 {

        font-size:
            clamp(42px, 12vw, 62px);

        letter-spacing: -3px;
    }


    .hero-description {

        font-size: 12px;
    }


    .hero-buttons {

        width: 100%;

        flex-direction: column;
    }


    .hero-buttons .btn {

        width: 100%;
    }


    .hero-banner {

        min-height: 440px;

        border-radius: 25px;

        transform: none;
    }


    .hero-banner:hover {

        transform:
            translateY(-3px);
    }


    .banner-logo {

        width: 120px;
        height: 120px;
    }


    .banner-logo img {

        width: 82px;
        height: 82px;
    }


    .banner-name strong {

        font-size: 37px;
    }


    .banner-floating-card {

        right: 10px;

        transform:
            scale(.85);
    }


    .banner-bottom {

        gap: 12px;
    }


    .banner-stat strong {

        font-size: 7px;
    }


    .banner-stat span {

        font-size: 5px;
    }


    .hero .scroll-down {

        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero {

        padding-top: 110px;
    }


    .hero h1 {

        font-size: 42px;

        letter-spacing: -2.5px;
    }


    .hero-banner {

        min-height: 390px;
    }


    .banner-top {

        padding: 18px;
    }


    .banner-logo {

        width: 105px;
        height: 105px;
    }


    .banner-logo img {

        width: 72px;
        height: 72px;
    }


    .banner-name strong {

        font-size: 31px;
    }


    .banner-name small {

        font-size: 5px;

        letter-spacing: 2px;
    }


    .banner-bottom {

        left: 15px;
        right: 15px;
        bottom: 15px;

        gap: 8px;
    }


    .banner-divider {

        height: 22px;
    }


    .banner-floating-card {

        display: none;
    }

}

/* =========================================================
   SUB AGENCY
========================================================= */

.sub-agency-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(139,44,255,.08),
            transparent 30%
        ),
        #07030d;
}


/* SECTION HEADING */

.sub-agency-section .section-heading {

    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}


.sub-agency-section .section-label {

    display: inline-block;

    margin-bottom: 15px;

    color: #a855f7;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.sub-agency-section h2 {

    margin: 0;

    color: #fff;

    font-size:
        clamp(35px, 5vw, 55px);

    font-weight: 900;

    letter-spacing: -2px;
}


.sub-agency-section h2 span {

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #a855f7,
            #d946ef
        );

    -webkit-background-clip: text;

    background-clip: text;
}


.sub-agency-section .section-heading p {

    margin-top: 18px;

    color: #80758c;

    font-size: 13px;

    line-height: 1.8;
}


/* GRID */

.sub-agency-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


/* CARD */

.sub-agency-card {

    position: relative;

    min-height: 330px;

    padding: 35px;

    overflow: hidden;

    border:
        1px solid
        rgba(168,85,247,.13);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(24,12,39,.9),
            rgba(9,4,15,.95)
        );

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


.sub-agency-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background:
        #8b2cff;

    filter: blur(80px);

    opacity: .12;

    transition:
        opacity .4s ease;
}


.sub-agency-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(168,85,247,.4);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.35),

        0 0 40px
        rgba(139,44,255,.08);
}


.sub-agency-card:hover::before {

    opacity: .25;
}


/* NUMBER */

.sub-agency-number {

    position: absolute;

    top: 25px;
    right: 28px;

    color:
        rgba(255,255,255,.08);

    font-size: 35px;

    font-weight: 900;
}


/* ICON */

.sub-agency-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    border-radius: 16px;

    color: #c084fc;

    background:
        rgba(139,44,255,.12);

    border:
        1px solid
        rgba(168,85,247,.15);

    font-size: 25px;

    box-shadow:
        0 0 25px
        rgba(139,44,255,.08);
}


/* TITLE */

.sub-agency-card h3 {

    position: relative;

    color: #fff;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: -.3px;
}


.sub-agency-card p {

    position: relative;

    max-width: 310px;

    margin-top: 13px;

    color: #786e84;

    font-size: 12px;

    line-height: 1.8;
}


/* LINK */

.sub-agency-link {

    position: absolute;

    left: 35px;
    bottom: 30px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #b56cff;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    transition:
        gap .3s ease,
        color .3s ease;
}


.sub-agency-link:hover {

    gap: 13px;

    color: #d8b4fe;
}


/* FEATURED */

.sub-agency-card.featured {

    border-color:
        rgba(168,85,247,.35);

    background:
        linear-gradient(
            145deg,
            rgba(39,16,62,.95),
            rgba(11,4,19,.98)
        );

    box-shadow:
        0 0 45px
        rgba(139,44,255,.08);
}


.sub-agency-card.featured
.sub-agency-icon {

    background:
        linear-gradient(
            135deg,
            rgba(139,44,255,.25),
            rgba(217,70,239,.12)
        );

    border-color:
        rgba(192,132,252,.3);
}


/* BADGE */

.sub-agency-badge {

    position: absolute;

    top: 25px;
    right: 25px;

    padding:
        6px 10px;

    border-radius: 50px;

    color: #d8b4fe;

    background:
        rgba(139,44,255,.12);

    border:
        1px solid
        rgba(168,85,247,.2);

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .sub-agency-grid {

        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 600px) {

    .sub-agency-section {

        padding: 85px 0;
    }


    .sub-agency-grid {

        grid-template-columns:
            1fr;
    }


    .sub-agency-card {

        min-height: 300px;

        padding: 28px;
    }


    .sub-agency-link {

        left: 28px;
    }

}