/* S P E C T R U M   M O D E R N   D E S I G N */

:root {
    --bg-dark: #05070a;
    --primary: #0ea5e9;
    --primary-light: #38bdf8;
    --primary-glow: rgba(14, 165, 233, 0.4);
    --secondary: #eab308;
    --secondary-glow: rgba(234, 179, 8, 0.3);
    --accent-green: #22c55e;
    --text-pri: #ffffff;
    --text-sec: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.03);
    --nav-blur: blur(20px);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 999px;
    --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pri);
    font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.glow-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(234, 179, 8, 0.08) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Typography & Colors */
.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-green {
    color: var(--accent-green) !important;
}

.text-cyan {
    color: var(--primary-light) !important;
}

.text-gold {
    color: var(--secondary) !important;
}

/* Navbar Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s var(--anim-ease);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.8);
    z-index: 9999;
    backdrop-filter: var(--nav-blur);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-pri);
    text-decoration: none;
    position: relative;
    z-index: 1002;
}

.logo img {

    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--text-pri);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-auth-desktop {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #0284c7;
    box-shadow: 0 12px 32px var(--primary-glow);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-pri);
    border-color: var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-sec);
    font-size: 1.1rem;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 150px;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-sec);
    margin-bottom: 3rem;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-trust {
    color: var(--text-sec);
    font-size: 0.9rem;
}

.trust-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.6rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.hero-visual {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero-img {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(14, 165, 233, 0.3));
    z-index: 2;
    animation: float-main 8s infinite ease-in-out;
}

@keyframes float-main {

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

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-circle-glow {
    position: absolute;
    /* width: 400px; */
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 400px;
}

.f-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 240px;
    animation: float 6s infinite ease-in-out;
}

.f-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.f-icon.green {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.f-icon.orange {
    color: var(--secondary);
    background: rgba(234, 179, 8, 0.1);
}

.f-info span {
    font-size: 0.8rem;
    color: var(--text-sec);
    display: block;
}

.f-info strong {
    font-size: 1rem;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: 0%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 10%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* BENTO GRID Features */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
    max-width: 1240px;
    margin: 0 auto;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    transition: all 0.3s var(--anim-ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content horizontally if needed, or but generally keep it flex-column */
    gap: 0.75rem;
    min-height: 200px;
    /* Reduced min-height to remove extra space */
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.item-1 {
    grid-column: span 2;
}

.item-4 {
    grid-column: span 2;
}

.bento-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.bento-meta i {
    font-size: 1.8rem;
}

.bento-meta h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.bento-item p {
    color: var(--text-sec);
    font-size: 1.05rem;
}

/* STEPS (Process) */
.step-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1240px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.step-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-sec);
    font-size: 0.95rem;
}

/* REVEAL ANIMATIONS */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 1s var(--anim-ease);
    will-change: transform, opacity;
}

.reveal {
    transform: translateY(30px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Delay classes for staggered items */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* MOBILE MENU REVOLUTION */
.mobile-nav-header {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.nav-auth-mobile {
    display: none;
}

@media (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
        background: rgba(5, 7, 10, 0.95);
        backdrop-filter: var(--nav-blur);
        border-bottom: 1px solid var(--border);
    }

    .nav-container {
        padding: 0 1.25rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo img {
        height: 60px;

    }

    .logo {
        flex: 0 0 auto;
    }

    .nav-links {
        display: none;
    }

    .nav-auth-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        /* Make it slide from side instead of full width */
        max-width: 350px;
        height: 100vh;
        background: rgba(5, 7, 10, 0.98);
        padding: 2.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Align links to left */
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        backdrop-filter: var(--nav-blur);
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .mobile-nav-header img {
        height: 60px;
        width: auto;
    }

    .close-menu {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s;
    }

    .close-menu:hover {
        color: var(--secondary);
    }

    .nav-menu.active {
        right: 0;
        z-index: 99999;
    }

    .nav-menu .nav-links {
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: 2rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-auth-mobile {
        display: flex;
        width: 100%;
        margin-top: 1rem;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .no-scroll {
        overflow: hidden;
    }

    /* Hero Responsive */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        min-height: auto;
        gap: 4rem;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
        font-size: 1rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        padding-bottom: 50px;
    }

    .floating-cards {
        height: 350px;
        transform: scale(0.9);
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .item-1,
    .item-4 {
        grid-column: span 1;
    }

    .step-container {
        grid-template-columns: 1fr 1fr;
    }

    .referral-box {
        flex-direction: column;
        padding: 3rem 1.5rem;
        text-align: center;
        gap: 3rem;
    }

    .referral-tiers {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 70px;
        display: flex;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: fit-content;
        justify-content: center;
        margin-inline: auto;
    }

    .step-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .bento-grid {
        gap: 1rem;
    }

    .bento-item {
        padding: 1.5rem;
    }

    .section-padding {
        padding: 30px 10px 0;
    }

    .referral-box {
        padding: 2.5rem 1.25rem;
    }

    .floating-cards {
        display: none;
        /* Hide complex floating cards on very small screens to improve performance and vertical space */
    }

    .hero-visual {
        /* display: none; */
        /* Hide complex floating cards on very small screens to improve performance and vertical space */
    }
}

/* Section specific glows */
.glow-orange:hover {
    box-shadow: 0 0 30px var(--secondary-glow);
}

.glow-blue:hover {
    box-shadow: 0 0 30px var(--primary-glow);
}

.glow-green:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
}

.glow-purple:hover {
    box-shadow: 0 0 30px var(--primary-glow);
}

.border-glow:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-menu {
    z-index: 1001;
}

.menu-toggle {
    z-index: 1002;
}

/* REFERRAL SECTION */
.referral-box {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(5, 7, 10, 1));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.referral-content {
    flex: 1.2;
    z-index: 2;
}

.referral-visual {
    flex: 0.8;
    position: relative;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}

.node-tree {
    position: relative;
    width: 340px;
    height: 340px;
    z-index: 2;
}

.node-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 30px var(--primary-glow);
}

.node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.l-sub-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.l-sub-2 {
    bottom: 0;
    left: 0;
}

.l-sub-3 {
    bottom: 0;
    right: 0;
}

.node-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    transform-origin: left center;
}

.node-line.l1 {
    top: 50%;
    left: 50%;
    width: 140px;
    transform: rotate(-90deg);
}

.node-line.l2 {
    top: 50%;
    left: 50%;
    width: 150px;
    transform: rotate(135deg);
}

.node-line.l3 {
    top: 50%;
    left: 50%;
    width: 150px;
    transform: rotate(45deg);
}

.referral-tiers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tier {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: 0.3s;
}

.tier:hover {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.tier-icon-small {
    font-size: 1.5rem;
    color: #ffd700;
}

.tier-head {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.tier-p {
    color: var(--text-sec);
    font-size: 0.9rem;
}

.text-silver {
    color: #c0c0c0;
}

.text-bronze {
    color: #cd7f32;
}

@media (max-width: 991px) {
    .referral-box {
        flex-direction: column;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .tier {
        text-align: left;
    }

    .node-tree {
        transform: scale(0.8);
    }

    .step-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .step-container {
        grid-template-columns: 1fr;
    }

    .step-card {
        /* display: flex; */
        text-align: left;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .step-num {
        left: 1rem;
        transform: none;
        top: -1rem;
        font-size: 4rem;
    }

    .step-icon {
        margin: 0;
        flex-shrink: 0;
    }
}

/* PRE-REGISTERED DESIGNER FOOTER - V3 PREMIUM */
.footer {
    position: relative;
    padding: 100px 0 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 50, 240, 0.03) 100%);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.5;
    min-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sec);
    transition: all 0.3s var(--anim-ease);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(99, 50, 240, 0.3);
}

.footer-nav {
    display: flex;
    gap: 4rem;
    flex: 2;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 150px;
}

.footer-col h4 {
    color: var(--text-pri);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: block;
}

.footer-col a:hover {
    color: var(--text-pri);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-sec);
    font-size: 0.85rem;
}

.footer-meta {
    display: flex;
    gap: 2rem;
}

.footer-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-meta i {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .footer-main {
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding-top: 60px;
    }

    .footer-main {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
    }

    .footer-nav {
        flex-direction: column;
        justify-content: flex-start;
        gap: 2.5rem;
    }

    .footer-brand p {
        margin: 0 0 2rem;
    }

    .footer-col h4::after {
        left: 0;
        transform: none;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .contact-list a {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 16px;
    }

    .newsletter-form button {
        margin-top: 0.5rem;
    }
}

/* PREMIUM FINAL CTA STYLE */
.final-cta {
    text-align: center;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    border-radius: var(--radius-lg);
}

.premium-glow {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.1) 0%, rgba(5, 7, 10, 1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 0 50px rgba(14, 165, 233, 0.1);
    overflow: hidden;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-features span i {
    color: #10b981;
    margin-right: 0.5rem;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-sec);
}

.cta-btn {
    font-size: 1.1rem;
    box-shadow: 0 10px 32px var(--primary-glow);
}

@media (max-width: 576px) {
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* CONTACT FOOTER STYLES */
.contact-col {
    min-width: 250px;
}

.contact-list li {
    margin-bottom: 1.25rem;
}

.contact-list a {
    color: var(--text-sec);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    margin-top: 2rem;
    background: white;
    border-radius: 999px;
    padding: 0.35rem;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 0.5rem 1rem;
    background: transparent;
    outline: none;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #5028c2;
    transform: none;
}

/* SECURITY SECTION */
.security-section {
    background: radial-gradient(circle at 100% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.security-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.security-visual {
    flex: 1;
    position: relative;
}

.security-img {
    width: 100%;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(16, 185, 129, 0.2));
    z-index: 2;
    position: relative;
}

.security-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

.security-content {
    flex: 1.2;
}

.security-list {
    list-style: none;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.security-list li {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--anim-ease);
}

.security-list li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(10px);
}

.list-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.security-list h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.security-list p {
    font-size: 0.95rem;
    color: var(--text-sec);
}

@media (max-width: 991px) {
    .security-container {
        flex-direction: column-reverse;
        gap: 4rem;
        text-align: center;
    }

    .security-list {
        text-align: left;
    }

    .security-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* GLOBAL 320PX RESPONSIVE OVERHAUL */
@media (max-width: 400px) {
    :root {
        --radius-lg: 16px;
        --radius-md: 12px;
    }

    .section-padding {
        padding: 40px 10px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero {
        padding-top: 100px;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .btn-lg {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }

    .bento-grid {
        gap: 1rem;
    }

    .bento-item {
        padding: 1.25rem;
        min-height: auto;
    }

    .bento-meta i {
        font-size: 1.5rem;
    }

    .bento-meta h3 {
        font-size: 1.15rem;
    }

    .security-container {
        gap: 2.5rem;
    }

    .security-list {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .security-list li {
        padding: 1.25rem;
        gap: 1rem;
    }

    .step-container {
        gap: 1rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .referral-box {
        padding: 2rem 1rem;
    }

    .referral-visual {
        transform: scale(0.6);
        min-height: 280px;
        margin-block: -60px;
    }

    .tier {
        padding: 1rem;
        gap: 1rem;
    }

    .final-cta {
        padding: 40px 10px;
    }

    .cta-inner {
        padding: 30px 15px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-main {
        gap: 2.5rem;
    }

    .contact-list li {
        margin-bottom: 1rem;
    }
}