/* ============================================================
   ELITESOCIALS
   Homepage Stylesheet
   assets/css/index.css
   ============================================================ */


/* ============================================================
   01. ROOT VARIABLES
   ============================================================ */

:root {

    --primary: #2563EB;
    --secondary: #1D4ED8;
    --accent: #60A5FA;

    --primary-rgb: 37, 99, 235;

    --white: #ffffff;
    --black: #0b1220;

    --text: #111827;
    --text-soft: #475569;
    --text-muted: #64748b;

    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-muted: #f1f5f9;

    --border: #e5e7eb;
    --border-soft: #edf0f4;

    --success: #16a34a;
    --success-soft: #ecfdf3;

    --danger: #dc2626;
    --danger-soft: #fef2f2;

    --warning: #d97706;
    --warning-soft: #fffbeb;

    --instagram: #e1306c;
    --tiktok: #111111;
    --facebook: #1877f2;
    --youtube: #ff0000;
    --telegram: #229ed9;
    --twitter: #111111;

    --font-body:
        "DM Sans",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --font-heading:
        "Plus Jakarta Sans",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-2xl: 34px;

    --shadow-xs:
        0 1px 2px rgba(15, 23, 42, 0.04);

    --shadow-sm:
        0 4px 14px rgba(15, 23, 42, 0.06);

    --shadow-md:
        0 12px 30px rgba(15, 23, 42, 0.08);

    --shadow-lg:
        0 24px 60px rgba(15, 23, 42, 0.12);

    --shadow-primary:
        0 16px 40px rgba(var(--primary-rgb), 0.24);

    --container: 1240px;

    --transition:
        220ms cubic-bezier(0.4, 0, 0.2, 1);

    --transition-slow:
        500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* ============================================================
   02. RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;

    background: var(--bg);

    color: var(--text);

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol {
    list-style: none;
}


/* ============================================================
   03. GLOBAL UTILITIES
   ============================================================ */

.section-container,
.nav-container,
.announcement-container,
.hero-container,
.hero-stats-container,
.homepage-bottom-inner {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

.section-container {
    position: relative;
    z-index: 2;
}

.centered {
    text-align: center;
}


/* ============================================================
   04. PAGE LOADER
   ============================================================ */

.page-loader {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--bg);

    opacity: 1;

    visibility: visible;

    transition:
        opacity 500ms ease,
        visibility 500ms ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    width: 160px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 20px;
}

.loader-logo {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.loader-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.loader-logo-mark {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 23px;

    font-weight: 800;

    box-shadow: var(--shadow-primary);
}

.loader-line {
    width: 120px;
    height: 3px;

    overflow: hidden;

    border-radius: 100px;

    background: var(--bg-muted);
}

.loader-line span {
    display: block;

    width: 40%;
    height: 100%;

    border-radius: inherit;

    background: var(--primary);

    animation:
        loaderProgress 900ms ease-in-out infinite;
}

@keyframes loaderProgress {

    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(350%);
    }
}


/* ============================================================
   05. ANNOUNCEMENT BAR
   ============================================================ */

.announcement-bar {
    position: relative;

    z-index: 100;

    min-height: 38px;

    display: flex;

    align-items: center;

    background: var(--black);

    color: rgba(255, 255, 255, 0.9);

    font-size: 12px;
}

.announcement-container {
    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.announcement-content {
    display: flex;

    align-items: center;

    gap: 9px;
}

.announcement-icon {
    width: 20px;
    height: 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    color: #93c5fd;

    font-size: 9px;
}

.announcement-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #fff;

    font-weight: 600;

    transition: var(--transition);
}

.announcement-link:hover {
    color: #93c5fd;
}

.announcement-link i {
    font-size: 9px;

    transition: transform var(--transition);
}

.announcement-link:hover i {
    transform: translateX(3px);
}


/* ============================================================
   06. HEADER / NAVBAR
   ============================================================ */

.main-header {
    position: sticky;

    top: 0;

    z-index: 900;

    background:
        rgba(255, 255, 255, 0.88);

    border-bottom: 1px solid rgba(226, 232, 240, 0.8);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.06);
}

.nav-container {
    min-height: 74px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* ============================================================
   BRAND
   ============================================================ */

.brand {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 10px;
}

.brand-logo {
    width: auto;
    max-width: 170px;
    max-height: 42px;

    object-fit: contain;
}

.brand-mark {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--secondary)
        );

    color: #fff;

    box-shadow:
        0 7px 18px rgba(var(--primary-rgb), 0.22);

    transform: rotate(-3deg);
}

.brand-mark span {
    font-family: var(--font-heading);

    font-size: 18px;

    font-weight: 800;

    transform: rotate(3deg);
}

.brand-name {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 18px;

    font-weight: 800;

    letter-spacing: -0.6px;
}

.brand-name span {
    color: var(--primary);
}


/* ============================================================
   DESKTOP NAV
   ============================================================ */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-left: auto;
}

.nav-link {
    position: relative;

    padding: 9px 14px;

    border-radius: 10px;

    color: var(--text-soft);

    font-size: 13px;

    font-weight: 600;

    transition:
        color var(--transition),
        background var(--transition);
}

.nav-link:hover {
    color: var(--text);

    background: var(--bg-soft);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 5px;
    height: 5px;

    content: "";

    border-radius: 50%;

    background: var(--primary);

    transform: translateX(-50%);
}


/* ============================================================
   NAV ACTIONS
   ============================================================ */

.nav-actions {
    display: flex;

    align-items: center;

    gap: 8px;
}

.nav-icon-button {
    width: 38px;
    height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: transparent;

    color: var(--text-soft);

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.nav-icon-button:hover {
    background: var(--bg-soft);

    color: var(--primary);
}

.notification-button {
    position: relative;
}

.notification-dot {
    position: absolute;

    top: 7px;
    right: 7px;

    width: 6px;
    height: 6px;

    border: 1.5px solid #fff;

    border-radius: 50%;

    background: var(--primary);
}

.login-link {
    margin-left: 5px;

    padding: 9px 13px;

    color: var(--text-soft);

    font-size: 13px;

    font-weight: 700;

    transition: color var(--transition);
}

.login-link:hover {
    color: var(--primary);
}

.nav-cta {
    min-height: 40px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 0 17px;

    border-radius: 11px;

    background: var(--primary);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(var(--primary-rgb), 0.18);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.nav-cta:hover {
    background: var(--secondary);

    transform: translateY(-1px);

    box-shadow:
        0 12px 25px rgba(var(--primary-rgb), 0.24);
}

.nav-cta i {
    font-size: 9px;
}


/* ============================================================
   USER NAV
   ============================================================ */

.user-nav {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 4px 7px 4px 4px;

    border: 1px solid var(--border);

    border-radius: 13px;

    background: #fff;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.user-nav:hover {
    border-color: rgba(var(--primary-rgb), 0.25);

    box-shadow: var(--shadow-sm);
}

.user-avatar {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: #fff;

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 800;
}

.user-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.user-nav-text {
    display: flex;

    flex-direction: column;

    line-height: 1.15;
}

.user-nav-text small {
    color: var(--text-muted);

    font-size: 9px;
}

.user-nav-text strong {
    max-width: 100px;

    overflow: hidden;

    color: var(--text);

    font-size: 11px;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.user-nav > i {
    margin-left: 2px;

    color: var(--text-muted);

    font-size: 8px;
}


/* ============================================================
   MOBILE MENU BUTTON
   ============================================================ */

.mobile-menu-button {
    width: 40px;
    height: 40px;

    display: none;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 4px;

    border-radius: 11px;

    background: var(--bg-soft);
}

.mobile-menu-button span {
    width: 17px;
    height: 1.5px;

    border-radius: 20px;

    background: var(--text);

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
    transform:
        translateY(5.5px)
        rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform:
        translateY(-5.5px)
        rotate(-45deg);
}


/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

.mobile-navigation {
    display: none;

    max-height: 0;

    overflow: hidden;

    background: #fff;

    border-top: 1px solid transparent;

    transition:
        max-height 400ms ease,
        border-color 300ms ease;
}

.mobile-navigation.open {
    max-height: 650px;

    border-color: var(--border);
}

.mobile-nav-inner {
    padding: 12px 24px 22px;
}

.mobile-nav-link {
    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--border-soft);

    color: var(--text-soft);

    font-size: 14px;

    font-weight: 600;
}

.mobile-nav-link span {
    display: inline-flex;

    align-items: center;

    gap: 12px;
}

.mobile-nav-link span i {
    width: 20px;

    color: var(--text-muted);

    text-align: center;
}

.mobile-nav-link > i {
    color: var(--text-muted);

    font-size: 10px;
}

.mobile-nav-link.active {
    color: var(--primary);
}

.mobile-nav-link.active span i {
    color: var(--primary);
}

.mobile-nav-divider {
    height: 10px;
}

.mobile-primary-link {
    color: var(--primary);
}


/* ============================================================
   07. SEARCH OVERLAY
   ============================================================ */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    padding-top: 105px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 250ms ease,
        visibility 250ms ease;
}

.search-overlay.open {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}

.search-overlay-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(15, 23, 42, 0.55);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-panel {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 40px),
        720px
    );

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.96);

    box-shadow:
        0 35px 100px rgba(15, 23, 42, 0.25);

    transform:
        translateY(-20px)
        scale(0.98);

    transition:
        transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.search-overlay.open .search-panel {
    transform:
        translateY(0)
        scale(1);
}

.search-panel-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}

.search-eyebrow {
    display: block;

    margin-bottom: 4px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.search-panel-header h2 {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: -0.7px;
}

.search-close {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--bg-soft);

    color: var(--text-soft);

    transition:
        background var(--transition),
        color var(--transition);
}

.search-close:hover {
    background: var(--danger-soft);

    color: var(--danger);
}

.main-search-input {
    min-height: 58px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 6px 7px 6px 17px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: #fff;

    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.04);

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.main-search-input:focus-within {
    border-color:
        rgba(var(--primary-rgb), 0.5);

    box-shadow:
        0 0 0 4px rgba(var(--primary-rgb), 0.08);
}

.main-search-input > i {
    color: var(--text-muted);

    font-size: 14px;
}

.main-search-input input {
    min-width: 0;

    flex: 1;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--text);

    font-size: 14px;
}

.main-search-input input::placeholder {
    color: #94a3b8;
}

.main-search-input button {
    min-height: 44px;

    padding: 0 18px;

    border-radius: 11px;

    background: var(--primary);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    transition: background var(--transition);
}

.main-search-input button:hover {
    background: var(--secondary);
}

.search-suggestions {
    margin-top: 20px;
}

.search-suggestions > span {
    display: block;

    margin-bottom: 9px;

    color: var(--text-muted);

    font-size: 11px;

    font-weight: 600;
}

.suggestion-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.suggestion-list a {
    padding: 7px 11px;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: var(--bg-soft);

    color: var(--text-soft);

    font-size: 11px;

    font-weight: 600;

    transition:
        border-color var(--transition),
        color var(--transition),
        background var(--transition);
}

.suggestion-list a:hover {
    border-color:
        rgba(var(--primary-rgb), 0.25);

    background:
        rgba(var(--primary-rgb), 0.06);

    color: var(--primary);
}


/* ============================================================
   08. HERO
   ============================================================ */

.hero-section {
    position: relative;

    min-height: 680px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    padding:
        90px
        0
        65px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.hero-background {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.hero-gradient {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    opacity: 0.75;
}

.hero-gradient-one {
    width: 600px;
    height: 600px;

    top: -250px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.13) 0%,
            rgba(var(--primary-rgb), 0) 70%
        );
}

.hero-gradient-two {
    width: 700px;
    height: 700px;

    right: -250px;
    bottom: -380px;

    background:
        radial-gradient(
            circle,
            rgba(96, 165, 250, 0.13) 0%,
            rgba(96, 165, 250, 0) 70%
        );
}

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(
            rgba(37, 99, 235, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(37, 99, 235, 0.035) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}

.hero-orb {
    position: absolute;

    border: 1px solid rgba(var(--primary-rgb), 0.07);

    border-radius: 50%;
}

.hero-orb-one {
    width: 350px;
    height: 350px;

    right: 8%;
    top: 8%;
}

.hero-orb-two {
    width: 500px;
    height: 500px;

    right: 2%;
    top: -1%;

    border-color:
        rgba(var(--primary-rgb), 0.035);
}


/* ============================================================
   HERO CONTAINER
   ============================================================ */

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.9fr);

    align-items: center;

    gap: 75px;
}


/* ============================================================
   HERO CONTENT
   ============================================================ */

.hero-content {
    max-width: 650px;
}

.hero-badge {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 21px;

    padding: 7px 11px 7px 8px;

    border: 1px solid rgba(var(--primary-rgb), 0.12);

    border-radius: 100px;

    background:
        rgba(var(--primary-rgb), 0.055);

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.11);

    animation:
        badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(34, 197, 94, 0.10);
    }

    50% {
        box-shadow:
            0 0 0 7px rgba(34, 197, 94, 0.04);
    }
}

.hero-badge > i {
    margin-left: 2px;

    font-size: 9px;
}

.hero-title {
    max-width: 680px;

    color: var(--text);

    font-family: var(--font-heading);

    font-size:
        clamp(
            42px,
            5vw,
            68px
        );

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -3px;
}

.hero-title-highlight {
    display: block;

    color: var(--primary);

    background:
        linear-gradient(
            100deg,
            var(--primary),
            #60a5fa
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 590px;

    margin-top: 23px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.75;
}

.hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 11px;

    margin-top: 31px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.primary-button {
    min-height: 49px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 18px;

    border-radius: 13px;

    background: var(--primary);

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 12px 28px rgba(var(--primary-rgb), 0.2);

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.primary-button:hover {
    background: var(--secondary);

    transform: translateY(-2px);

    box-shadow:
        0 17px 32px rgba(var(--primary-rgb), 0.27);
}

.primary-button > i {
    font-size: 10px;
}

.hero-primary-button {
    padding-left: 20px;
}

.button-icon {
    width: 28px;
    height: 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.14);
}

.button-icon i {
    font-size: 9px;
}

.secondary-button {
    min-height: 49px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 0 17px;

    border: 1px solid var(--border);

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.8);

    color: var(--text-soft);

    font-size: 12px;

    font-weight: 700;

    transition:
        border-color var(--transition),
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.secondary-button:hover {
    border-color:
        rgba(var(--primary-rgb), 0.2);

    background: #fff;

    color: var(--primary);

    transform: translateY(-1px);
}

.play-icon {
    width: 26px;
    height: 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(var(--primary-rgb), 0.08);

    color: var(--primary);

    font-size: 8px;
}


/* ============================================================
   HERO TRUST
   ============================================================ */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}

.trust-avatars {
    display: flex;

    align-items: center;
}

.trust-avatar {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: -6px;

    border: 2px solid #fff;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #93c5fd
        );

    color: #1e40af;

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;
}

.trust-avatar:first-child {
    margin-left: 0;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #60a5fa
        );

    color: #fff;
}

.trust-avatar:nth-child(2) {
    background:
        linear-gradient(
            135deg,
            #e0e7ff,
            #a5b4fc
        );
}

.trust-avatar:nth-child(3) {
    background:
        linear-gradient(
            135deg,
            #d1fae5,
            #86efac
        );

    color: #166534;
}

.trust-avatar:nth-child(4) {
    background: #f1f5f9;

    color: var(--text-muted);
}

.trust-text {
    display: flex;

    flex-direction: column;

    line-height: 1.2;
}

.trust-stars {
    display: flex;

    gap: 2px;

    color: #f59e0b;

    font-size: 8px;
}

.trust-text > span {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 600;
}


/* ============================================================
   HERO VISUAL
   ============================================================ */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.12),
            transparent 70%
        );

    filter: blur(8px);
}


/* ============================================================
   HERO DASHBOARD CARD
   ============================================================ */

.hero-dashboard-card {
    position: relative;

    z-index: 3;

    width: min(
        100%,
        455px
    );

    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.85);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.82);

    box-shadow:
        0 35px 80px rgba(15, 23, 42, 0.13),
        0 4px 18px rgba(37, 99, 235, 0.05);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transform:
        perspective(1200px)
        rotateY(-5deg)
        rotateX(2deg);

    transition:
        transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:hover .hero-dashboard-card {
    transform:
        perspective(1200px)
        rotateY(-2deg)
        rotateX(1deg)
        translateY(-4px);
}

.hero-dashboard-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 17px;
}

.dashboard-label {
    display: block;

    margin-bottom: 4px;

    color: var(--primary);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.hero-dashboard-header strong {
    display: block;

    color: var(--text);

    font-family: var(--font-heading);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: -0.3px;
}

.live-indicator {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 8px;

    border: 1px solid #dcfce7;

    border-radius: 7px;

    background: #f0fdf4;

    color: #15803d;

    font-size: 8px;

    font-weight: 800;
}

.live-indicator > span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #22c55e;
}


/* ============================================================
   HERO SEARCH
   ============================================================ */

.hero-dashboard-search {
    height: 42px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 0 11px;

    border: 1px solid var(--border-soft);

    border-radius: 11px;

    background: rgba(248, 250, 252, 0.85);

    color: #94a3b8;

    font-size: 10px;
}

.hero-dashboard-search i {
    font-size: 10px;
}

.hero-dashboard-search kbd {
    margin-left: auto;

    padding: 2px 6px;

    border: 1px solid var(--border);

    border-radius: 5px;

    background: #fff;

    color: #94a3b8;

    font-family: var(--font-body);

    font-size: 8px;
}


/* ============================================================
   PREVIEW ACCOUNT LIST
   ============================================================ */

.preview-account-list {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 13px;
}

.preview-account {
    min-height: 67px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 9px;

    border: 1px solid var(--border-soft);

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.72);

    transition:
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.preview-account:hover {
    border-color:
        rgba(var(--primary-rgb), 0.15);

    transform: translateX(3px);

    box-shadow: var(--shadow-xs);
}

.preview-platform {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    color: #fff;

    font-size: 15px;
}

.preview-platform.instagram {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #e1306c,
            #f77737
        );
}

.preview-platform.tiktok {
    background: #111;
}

.preview-platform.youtube {
    background: #ff0000;
}

.preview-account-info {
    min-width: 0;

    display: flex;

    flex: 1;

    flex-direction: column;

    line-height: 1.25;
}

.preview-account-info strong {
    overflow: hidden;

    color: var(--text);

    font-size: 10px;

    font-weight: 800;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.preview-account-info span {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 8px;
}

.preview-account-price {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    flex-shrink: 0;

    line-height: 1.2;
}

.preview-account-price strong {
    color: var(--text);

    font-size: 10px;

    font-weight: 800;
}

.preview-account-price span {
    margin-top: 4px;

    color: #16a34a;

    font-size: 7px;

    font-weight: 700;
}

.hero-dashboard-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 13px;

    padding-top: 13px;

    border-top: 1px solid var(--border-soft);

    color: var(--text-muted);

    font-size: 8px;

    font-weight: 600;
}

.hero-dashboard-footer span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}

.hero-dashboard-footer i {
    color: var(--primary);

    font-size: 8px;
}


/* ============================================================
   FLOATING CARDS
   ============================================================ */

.floating-stat-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.85);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.9);

    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.11);

    backdrop-filter: blur(15px);

    animation:
        floatCard 5s ease-in-out infinite;
}

.floating-stat-one {
    top: 70px;
    right: -15px;
}

.floating-icon {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 11px;
}

.floating-icon.blue {
    background:
        rgba(var(--primary-rgb), 0.09);

    color: var(--primary);
}

.floating-stat-card > div {
    display: flex;

    flex-direction: column;

    line-height: 1.2;
}

.floating-stat-card strong {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 800;
}

.floating-stat-card span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 7px;

    font-weight: 600;
}

.floating-purchase-card {
    position: absolute;

    z-index: 5;

    left: -35px;
    bottom: 60px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 13px;

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.92);

    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.1);

    backdrop-filter: blur(15px);

    animation:
        floatCard 5s ease-in-out infinite 1s;
}

.purchase-check {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--success-soft);

    color: var(--success);

    font-size: 10px;
}

.floating-purchase-card > div:last-child {
    display: flex;

    flex-direction: column;

    line-height: 1.2;
}

.floating-purchase-card strong {
    color: var(--text);

    font-size: 9px;

    font-weight: 800;
}

.floating-purchase-card span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 7px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* ============================================================
   HERO STATS
   ============================================================ */

.hero-stats-container {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;

    margin-top: 65px;

    padding-top: 27px;

    border-top: 1px solid var(--border-soft);
}

.hero-stat {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 20px;
}

.hero-stat-icon {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background:
        rgba(var(--primary-rgb), 0.07);

    color: var(--primary);

    font-size: 11px;
}

.hero-stat > div {
    display: flex;

    flex-direction: column;

    line-height: 1.25;
}

.hero-stat strong {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 800;
}

.hero-stat span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 31px;

    background: var(--border);
}


/* ============================================================
   09. GENERAL SECTION
   ============================================================ */

.platform-section,
.categories-section,
.products-section,
.how-section,
.features-section,
.recent-section {
    position: relative;

    padding: 100px 0;
}

.platform-section {
    background: #fff;
}

.categories-section {
    background: var(--bg-soft);
}

.products-section {
    background: #fff;
}

.how-section {
    background: var(--bg-soft);
}

.features-section {
    background: #fff;
}

.recent-section {
    background: var(--bg-soft);
}


/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-heading {
    max-width: 620px;
}

.section-heading.centered {
    margin-inline: auto;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    color: var(--text);

    font-family: var(--font-heading);

    font-size:
        clamp(
            28px,
            4vw,
            42px
        );

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -1.8px;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    max-width: 570px;

    margin-top: 12px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}

.section-heading-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.text-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;
}

.text-button i {
    font-size: 9px;

    transition: transform var(--transition);
}

.text-button:hover i {
    transform: translateX(4px);
}


/* ============================================================
   10. PLATFORMS
   ============================================================ */

.platform-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 42px;
}

.platform-card {
    min-height: 90px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px;

    border: 1px solid var(--border-soft);

    border-radius: 17px;

    background: #fff;

    box-shadow: var(--shadow-xs);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.platform-card:hover {
    border-color:
        rgba(var(--primary-rgb), 0.16);

    box-shadow: var(--shadow-md);

    transform: translateY(-3px);
}

.platform-card-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    color: #fff;

    font-size: 16px;
}

.platform-card-icon.instagram {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #e1306c,
            #f77737
        );
}

.platform-card-icon.tiktok {
    background: #111;
}

.platform-card-icon.facebook {
    background: var(--facebook);
}

.platform-card-icon.youtube {
    background: var(--youtube);
}

.platform-card-icon.twitter {
    background: #111;
}

.platform-card-icon.telegram {
    background: var(--telegram);
}

.platform-card > div {
    min-width: 0;

    display: flex;

    flex-direction: column;
}

.platform-card strong {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 800;
}

.platform-card div span {
    margin-top: 4px;

    overflow: hidden;

    color: var(--text-muted);

    font-size: 9px;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.platform-arrow {
    margin-left: auto;

    color: #cbd5e1;

    font-size: 9px;

    transition:
        color var(--transition),
        transform var(--transition);
}

.platform-card:hover .platform-arrow {
    color: var(--primary);

    transform: translate(2px, -2px);
}


/* ============================================================
   11. CATEGORIES
   ============================================================ */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}

.category-card {
    position: relative;

    min-height: 210px;

    display: flex;

    flex-direction: column;

    padding: 18px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 19px;

    background: #fff;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.category-card::before {
    position: absolute;

    width: 130px;
    height: 130px;

    top: -55px;
    right: -55px;

    content: "";

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.1),
            transparent 70%
        );

    transition: transform 500ms ease;
}

.category-card:hover {
    border-color:
        rgba(var(--primary-rgb), 0.2);

    box-shadow: var(--shadow-md);

    transform: translateY(-4px);
}

.category-card:hover::before {
    transform: scale(1.5);
}

.category-card-top {
    position: relative;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}

.category-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(var(--primary-rgb), 0.08);

    color: var(--primary);

    font-size: 13px;
}

.category-arrow {
    width: 29px;
    height: 29px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--bg-soft);

    color: var(--text-muted);

    font-size: 9px;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.category-card:hover .category-arrow {
    background:
        rgba(var(--primary-rgb), 0.08);

    color: var(--primary);

    transform: translate(2px, -2px);
}

.category-card-content {
    position: relative;

    margin-top: auto;
}

.category-card-content h3 {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: -0.3px;
}

.category-card-content p {
    max-width: 200px;

    margin-top: 5px;

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.55;
}

.category-card-bottom {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 15px;

    padding-top: 11px;

    border-top: 1px solid var(--border-soft);

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;
}

.category-card-bottom i {
    font-size: 8px;

    transition: transform var(--transition);
}

.category-card:hover .category-card-bottom i {
    transform: translateX(3px);
}


/* ============================================================
   EMPTY CATEGORY
   ============================================================ */

.empty-marketplace {
    grid-column: 1 / -1;

    min-height: 230px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 35px;

    border: 1px dashed #cbd5e1;

    border-radius: 20px;

    text-align: center;
}

.empty-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        rgba(var(--primary-rgb), 0.07);

    color: var(--primary);
}

.empty-marketplace h3 {
    margin-top: 13px;

    font-family: var(--font-heading);

    font-size: 16px;

    font-weight: 800;
}

.empty-marketplace p {
    max-width: 350px;

    margin-top: 5px;

    color: var(--text-muted);

    font-size: 11px;
}


/* ============================================================
   12. PRODUCT GRID
   ============================================================ */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.product-card {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: #fff;

    box-shadow: var(--shadow-xs);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    border-color:
        rgba(var(--primary-rgb), 0.16);

    box-shadow: var(--shadow-md);

    transform: translateY(-4px);
}


/* ============================================================
   PRODUCT IMAGE
   ============================================================ */

.product-image {
    position: relative;

    height: 185px;

    display: block;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f8fafc
        );
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 600ms ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(var(--primary-rgb), 0.12),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            #eff6ff,
            #f8fafc
        );

    color:
        rgba(var(--primary-rgb), 0.45);

    font-size: 35px;
}

.product-badge {
    position: absolute;

    top: 11px;
    left: 11px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 8px;

    border-radius: 7px;

    font-size: 8px;

    font-weight: 800;
}

.product-badge.featured {
    background: rgba(15, 23, 42, 0.82);

    color: #fff;

    backdrop-filter: blur(5px);
}

.product-badge.featured i {
    color: #fbbf24;

    font-size: 7px;
}

.product-platform-badge {
    position: absolute;

    right: 11px;
    bottom: 11px;

    padding: 5px 8px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    border-radius: 7px;

    background:
        rgba(15, 23, 42, 0.68);

    color: #fff;

    font-size: 8px;

    font-weight: 700;

    backdrop-filter: blur(7px);
}


/* ============================================================
   PRODUCT BODY
   ============================================================ */

.product-body {
    padding: 15px;
}

.product-title-row {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 10px;
}

.product-category {
    display: block;

    margin-bottom: 4px;

    color: var(--primary);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.product-title-row h3 {
    max-width: 180px;

    color: var(--text);

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: -0.25px;
}

.product-title-row h3 a:hover {
    color: var(--primary);
}

.wishlist-button {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: #fff;

    color: var(--text-muted);

    font-size: 10px;

    transition:
        border-color var(--transition),
        color var(--transition),
        background var(--transition);
}

.wishlist-button:hover {
    border-color:
        rgba(var(--primary-rgb), 0.2);

    background:
        rgba(var(--primary-rgb), 0.05);

    color: var(--primary);
}

.wishlist-button.active {
    border-color: #fecdd3;

    background: #fff1f2;

    color: #e11d48;
}

.product-description {
    display: -webkit-box;

    margin-top: 8px;

    overflow: hidden;

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.55;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;
}

.product-meta {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 10px;

    margin-top: 13px;

    padding-top: 12px;

    border-top: 1px solid var(--border-soft);
}

.product-stock {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: var(--text-muted);

    font-size: 8px;

    font-weight: 700;
}

.stock-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 3px rgba(34, 197, 94, 0.08);
}

.stock-dot.unavailable {
    background: #ef4444;

    box-shadow:
        0 0 0 3px rgba(239, 68, 68, 0.08);
}

.product-price {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    line-height: 1.2;
}

.product-price del {
    margin-bottom: 2px;

    color: #94a3b8;

    font-size: 8px;
}

.product-price strong {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: -0.3px;
}

.product-button {
    min-height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 13px;

    border-radius: 10px;

    background:
        rgba(var(--primary-rgb), 0.07);

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    transition:
        background var(--transition),
        color var(--transition);
}

.product-button:hover {
    background: var(--primary);

    color: #fff;
}

.product-button i {
    font-size: 8px;

    transition: transform var(--transition);
}

.product-button:hover i {
    transform: translateX(3px);
}


/* ============================================================
   EMPTY PRODUCTS
   ============================================================ */

.marketplace-empty-large {
    min-height: 370px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 50px 25px;

    border: 1px dashed #cbd5e1;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #fff
        );

    text-align: center;
}

.marketplace-empty-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        rgba(var(--primary-rgb), 0.08);

    color: var(--primary);

    font-size: 20px;
}

.marketplace-empty-large .section-eyebrow {
    margin-top: 19px;

    margin-bottom: 5px;
}

.marketplace-empty-large h3 {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 21px;

    font-weight: 800;

    letter-spacing: -0.5px;
}

.marketplace-empty-large p {
    max-width: 470px;

    margin-top: 7px;

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.7;
}

.marketplace-empty-large .primary-button {
    margin-top: 22px;
}


/* ============================================================
   13. HOW IT WORKS
   ============================================================ */

.steps-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;

    margin-top: 48px;
}

.steps-grid::before {
    position: absolute;

    top: 41px;
    left: 10%;

    width: 80%;
    height: 1px;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            #cbd5e1,
            transparent
        );
}

.step-card {
    position: relative;

    padding: 21px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: #fff;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.step-card:hover {
    border-color:
        rgba(var(--primary-rgb), 0.17);

    box-shadow: var(--shadow-md);

    transform: translateY(-4px);
}

.step-number {
    position: absolute;

    top: 18px;
    right: 18px;

    color: #cbd5e1;

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 800;
}

.step-icon {
    position: relative;

    z-index: 2;

    width: 47px;
    height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 5px solid var(--bg-soft);

    border-radius: 14px;

    background: var(--primary);

    color: #fff;

    box-shadow:
        0 8px 20px rgba(var(--primary-rgb), 0.18);

    font-size: 13px;
}

.step-card h3 {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 800;
}

.step-card p {
    margin-top: 7px;

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.65;
}

.step-line {
    display: block;

    width: 25px;
    height: 2px;

    margin-top: 18px;

    border-radius: 20px;

    background: var(--primary);

    opacity: 0.45;
}


/* ============================================================
   14. FEATURES
   ============================================================ */

.features-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 100px;
}

.features-intro {
    max-width: 500px;
}

.features-intro h2 {
    color: var(--text);

    font-family: var(--font-heading);

    font-size:
        clamp(
            28px,
            4vw,
            41px
        );

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1.8px;
}

.features-intro h2 span {
    color: var(--primary);
}

.features-intro p {
    margin-top: 14px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.8;
}

.features-intro .primary-button {
    margin-top: 23px;
}

.features-list {
    display: flex;

    flex-direction: column;

    border-top: 1px solid var(--border);
}

.feature-item {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 15px;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.feature-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        rgba(var(--primary-rgb), 0.07);

    color: var(--primary);

    font-size: 12px;
}

.feature-item h3 {
    color: var(--text);

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 800;
}

.feature-item p {
    max-width: 500px;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.65;
}


/* ============================================================
   15. RECENT PRODUCTS
   ============================================================ */

.recent-product-list {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.recent-product {
    display: grid;

    grid-template-columns:
        55px
        minmax(0, 1fr)
        auto
        34px;

    align-items: center;

    gap: 15px;

    padding: 9px;

    border: 1px solid var(--border-soft);

    border-radius: 14px;

    background: #fff;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.recent-product:hover {
    border-color:
        rgba(var(--primary-rgb), 0.15);

    box-shadow: var(--shadow-sm);

    transform: translateX(3px);
}

.recent-product-image {
    width: 55px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f8fafc
        );

    color:
        rgba(var(--primary-rgb), 0.45);

    font-size: 13px;
}

.recent-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.recent-product-info {
    min-width: 0;

    display: flex;

    flex-direction: column;

    line-height: 1.2;
}

.recent-product-info > span {
    margin-bottom: 3px;

    color: var(--primary);

    font-size: 7px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.recent-product-info strong {
    overflow: hidden;

    color: var(--text);

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 800;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.recent-product-info small {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 8px;
}

.recent-product-info small i {
    color: #22c55e;

    font-size: 5px;
}

.recent-product-price {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    line-height: 1.2;
}

.recent-product-price span {
    color: var(--text-muted);

    font-size: 7px;
}

.recent-product-price strong {
    margin-top: 3px;

    color: var(--text);

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 800;
}

.recent-product-arrow {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--bg-soft);

    color: var(--text-muted);

    font-size: 9px;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.recent-product:hover .recent-product-arrow {
    background:
        rgba(var(--primary-rgb), 0.08);

    color: var(--primary);

    transform: translateX(2px);
}

.recent-empty {
    min-height: 150px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px dashed #cbd5e1;

    border-radius: 16px;

    color: var(--text-muted);

    font-size: 11px;
}

.recent-empty i {
    color: var(--primary);
}


/* ============================================================
   16. CTA
   ============================================================ */

.cta-section {
    position: relative;

    min-height: 410px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554
        );

    color: #fff;
}

.cta-background {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.cta-grid {
    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.18) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.cta-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(59, 130, 246, 0.24),
            transparent 68%
        );

    transform: translate(-50%, -50%);
}

.cta-container {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding:
        75px
        0;

    text-align: center;
}

.cta-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.08);

    color: #fff;

    font-family: var(--font-heading);

    font-size: 21px;

    font-weight: 800;

    backdrop-filter: blur(10px);
}

.cta-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 7px;
}

.cta-container .section-eyebrow {
    color: #93c5fd;
}

.cta-container h2 {
    max-width: 700px;

    color: #fff;

    font-family: var(--font-heading);

    font-size:
        clamp(
            30px,
            4.5vw,
            48px
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;
}

.cta-container h2 span {
    color: #60a5fa;
}

.cta-container > p {
    max-width: 530px;

    margin-top: 13px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;

    line-height: 1.75;
}

.cta-actions {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}

.cta-primary-button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 18px;

    border-radius: 12px;

    background: #fff;

    color: #172554;

    font-size: 11px;

    font-weight: 800;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.cta-primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary-button i {
    color: var(--primary);

    font-size: 9px;
}

.cta-secondary-button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 17px;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.06);

    color: rgba(255, 255, 255, 0.88);

    font-size: 11px;

    font-weight: 700;

    transition:
        background var(--transition),
        border-color var(--transition);
}

.cta-secondary-button:hover {
    border-color:
        rgba(255, 255, 255, 0.3);

    background:
        rgba(255, 255, 255, 0.1);
}


/* ============================================================
   17. HOMEPAGE BOTTOM
   ============================================================ */

.homepage-bottom {
    background: #080f1d;

    color: rgba(255, 255, 255, 0.5);
}

.homepage-bottom-inner {
    min-height: 66px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 9px;
}

.homepage-bottom-links {
    display: flex;

    align-items: center;

    gap: 16px;
}

.homepage-bottom-links a {
    color: rgba(255, 255, 255, 0.55);

    transition: color var(--transition);
}

.homepage-bottom-links a:hover {
    color: #fff;
}


/* ============================================================
   18. SCROLL REVEAL
   ============================================================ */

[data-reveal] {
    opacity: 0;

    transform: translateY(18px);

    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;

    transform: translateY(0);
}


/* ============================================================
   19. SELECTION
   ============================================================ */

::selection {
    background:
        rgba(var(--primary-rgb), 0.18);

    color: var(--text);
}


/* ============================================================
   20. SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    border-radius: 100px;

    background: #cbd5e1;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}


/* ============================================================
   21. RESPONSIVE — LARGE DESKTOP
   ============================================================ */

@media (max-width: 1200px) {

    .hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(390px, 0.9fr);

        gap: 45px;
    }

    .hero-title {
        font-size: 56px;
    }

    .category-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .floating-stat-one {
        right: -5px;
    }

    .floating-purchase-card {
        left: -15px;
    }
}


/* ============================================================
   22. RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {

    .section-container,
    .nav-container,
    .announcement-container,
    .hero-container,
    .hero-stats-container,
    .homepage-bottom-inner {
        width: min(
            calc(100% - 36px),
            var(--container)
        );
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-navigation {
        display: block;
    }

    .user-nav-text {
        display: none;
    }

    .user-nav {
        padding-right: 4px;
    }

    .hero-section {
        padding-top: 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-content {
        max-width: 720px;

        margin-inline: auto;

        text-align: center;
    }

    .hero-badge {
        margin-inline: auto;
    }

    .hero-title {
        max-width: 800px;

        margin-inline: auto;

        font-size:
            clamp(
                45px,
                7vw,
                61px
            );
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 460px;
    }

    .hero-stats-container {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 22px;
    }

    .hero-stat-divider {
        display: none;
    }

    .platform-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .features-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .features-intro {
        max-width: 650px;
    }

    .steps-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 13px;
    }

    .steps-grid::before {
        display: none;
    }

    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* ============================================================
   23. RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 680px) {

    .section-container,
    .nav-container,
    .announcement-container,
    .hero-container,
    .hero-stats-container,
    .homepage-bottom-inner {
        width: calc(100% - 30px);
    }

    .announcement-container {
        justify-content: center;
    }

    .announcement-link {
        display: none;
    }

    .announcement-content {
        justify-content: center;

        text-align: center;

        font-size: 10px;
    }

    .nav-container {
        min-height: 66px;

        gap: 10px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;

        border-radius: 10px;
    }

    .brand-mark span {
        font-size: 16px;
    }

    .nav-actions {
        gap: 2px;
    }

    .login-link {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-icon-button {
        width: 35px;
        height: 35px;
    }

    .user-nav {
        display: none;
    }

    .mobile-menu-button {
        width: 36px;
        height: 36px;
    }

    .mobile-nav-inner {
        padding-inline: 15px;
    }


    /* SEARCH */

    .search-overlay {
        padding-top: 82px;
    }

    .search-panel {
        width: calc(100% - 24px);

        padding: 20px;

        border-radius: 19px;
    }

    .search-panel-header h2 {
        font-size: 20px;
    }

    .main-search-input {
        min-height: 52px;

        padding-left: 13px;
    }

    .main-search-input button {
        min-height: 40px;

        padding-inline: 12px;
    }


    /* HERO */

    .hero-section {
        min-height: auto;

        padding:
            65px
            0
            45px;
    }

    .hero-container {
        gap: 35px;
    }

    .hero-title {
        font-size:
            clamp(
                38px,
                11vw,
                52px
            );

        letter-spacing: -2.2px;
    }

    .hero-description {
        margin-top: 17px;

        font-size: 12px;

        line-height: 1.75;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        margin-top: 24px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-trust {
        margin-top: 22px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-dashboard-card {
        width: 100%;

        padding: 14px;

        border-radius: 18px;

        transform: none;
    }

    .hero-visual:hover .hero-dashboard-card {
        transform: none;
    }

    .hero-dashboard-header strong {
        font-size: 12px;
    }

    .hero-dashboard-search {
        height: 38px;
    }

    .preview-account {
        min-height: 58px;

        padding: 7px;
    }

    .preview-platform {
        width: 33px;
        height: 33px;

        border-radius: 9px;

        font-size: 12px;
    }

    .preview-account-info strong {
        font-size: 8px;
    }

    .preview-account-info span {
        font-size: 7px;
    }

    .preview-account-price strong {
        font-size: 8px;
    }

    .floating-stat-one {
        top: 20px;
        right: -5px;

        transform: scale(0.85);
    }

    .floating-purchase-card {
        left: -5px;
        bottom: 25px;

        transform: scale(0.85);
    }

    .hero-stats-container {
        grid-template-columns:
            repeat(2, 1fr);

        margin-top: 35px;

        padding-top: 20px;

        row-gap: 17px;
    }

    .hero-stat {
        justify-content: flex-start;

        padding: 0;
    }

    .hero-stat-icon {
        width: 32px;
        height: 32px;

        border-radius: 9px;
    }

    .hero-stat strong {
        font-size: 11px;
    }

    .hero-stat span {
        font-size: 8px;
    }


    /* SECTIONS */

    .platform-section,
    .categories-section,
    .products-section,
    .how-section,
    .features-section,
    .recent-section {
        padding: 70px 0;
    }

    .section-heading-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 25px;
    }

    .section-heading h2 {
        font-size: 29px;

        letter-spacing: -1.2px;
    }

    .section-heading p {
        font-size: 11px;
    }


    /* PLATFORM */

    .platform-grid {
        grid-template-columns: 1fr;

        margin-top: 30px;
    }

    .platform-card {
        min-height: 78px;
    }


    /* CATEGORIES */

    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;
    }

    .category-card {
        min-height: 190px;

        padding: 14px;

        border-radius: 15px;
    }

    .category-icon {
        width: 35px;
        height: 35px;

        border-radius: 10px;
    }

    .category-card-content h3 {
        font-size: 12px;
    }

    .category-card-content p {
        font-size: 8px;
    }


    /* PRODUCTS */

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;
    }

    .product-image {
        height: 140px;
    }

    .product-body {
        padding: 11px;
    }

    .product-title-row h3 {
        font-size: 10px;
    }

    .wishlist-button {
        width: 27px;
        height: 27px;
    }

    .product-description {
        font-size: 8px;
    }

    .product-stock {
        font-size: 7px;
    }

    .product-price strong {
        font-size: 11px;
    }

    .product-button {
        min-height: 34px;

        font-size: 8px;
    }


    /* STEPS */

    .steps-grid {
        grid-template-columns: 1fr;

        margin-top: 32px;
    }

    .step-card {
        padding: 17px;
    }


    /* FEATURES */

    .features-layout {
        gap: 38px;
    }

    .features-intro h2 {
        font-size: 29px;
    }

    .feature-item {
        grid-template-columns: 40px 1fr;

        gap: 11px;

        padding: 17px 0;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
    }


    /* RECENT */

    .recent-product {
        grid-template-columns:
            45px
            minmax(0, 1fr)
            32px;

        gap: 10px;
    }

    .recent-product-image {
        width: 45px;
        height: 42px;
    }

    .recent-product-price {
        display: none;
    }

    .recent-product-info strong {
        font-size: 9px;
    }

    .recent-product-arrow {
        width: 30px;
        height: 30px;
    }


    /* CTA */

    .cta-section {
        min-height: 390px;
    }

    .cta-container {
        padding:
            60px
            0;
    }

    .cta-container h2 {
        font-size: 31px;

        letter-spacing: -1.3px;
    }

    .cta-container > p {
        font-size: 10px;
    }

    .cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .cta-primary-button,
    .cta-secondary-button {
        width: 100%;
    }


    /* FOOTER */

    .homepage-bottom-inner {
        min-height: 85px;

        align-items: flex-start;

        justify-content: center;

        flex-direction: column;

        padding: 16px 0;

        gap: 8px;
    }

    .homepage-bottom-links {
        gap: 12px;
    }
}


/* ============================================================
   24. VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 400px) {

    .hero-title {
        font-size: 36px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 190px;
    }

    .hero-dashboard-card {
        padding: 12px;
    }

    .floating-stat-one {
        right: -12px;

        transform: scale(0.72);
    }

    .floating-purchase-card {
        left: -15px;

        transform: scale(0.72);
    }

    .hero-stats-container {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        justify-content: center;
    }
}


/* ============================================================
   25. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;

        transform: none;
    }
}


/* ============================================================
   END OF ELITESOCIALS HOMEPAGE CSS
   ============================================================ */