/* home.css – Homepage-specific styles */

/* ===== UTILITY ===== */
.text-center {
    text-align: center;
}

.mb-56 {
    margin-bottom: 56px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1528 25%, #0f1a38 50%, #0c1428 75%, #080c18 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(135deg, rgba(0, 20, 60, 0.85) 0%, rgba(0, 10, 30, 0.9) 50%, rgba(0, 5, 20, 0.95) 100%),
        url('assets/hero-gym.jpg');
    background-size: 180% auto;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Mobile - same as before */
@media (max-width: 768px) {
    .hero-bg {
        background-size: contain;
        background-position: center -20px;
    }
}

/* Ray effects - blue and green light rays */
.hero-rays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-rays::before,
.hero-rays::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        repeating-linear-gradient(
            115deg,
            transparent 0%,
            transparent 40%,
            rgba(0, 120, 255, 0.08) 40%,
            rgba(0, 200, 255, 0.05) 42%,
            transparent 44%,
            transparent 60%
        ),
        repeating-linear-gradient(
            75deg,
            transparent 0%,
            transparent 35%,
            rgba(0, 255, 150, 0.06) 35%,
            rgba(0, 255, 200, 0.04) 38%,
            transparent 41%,
            transparent 55%
        );
    animation: heroRaysMove 20s linear infinite;
}

.hero-rays::after {
    background: 
        repeating-linear-gradient(
            135deg,
            transparent 0%,
            transparent 45%,
            rgba(0, 100, 255, 0.05) 45%,
            rgba(0, 180, 255, 0.03) 48%,
            transparent 51%
        );
    animation: heroRaysMove 25s linear infinite reverse;
    opacity: 0.7;
}

@keyframes heroRaysMove {
    0% { transform: rotate(0deg) translateX(0); }
    100% { transform: rotate(360deg) translateX(20px); }
}

/* Protein bottles centered on desktop */
.hero-custom-img {
    height: 85vh;
    width: auto;
    max-width: 50%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    filter: drop-shadow(0 0 60px rgba(0, 87, 255, 0.4));
    animation: heroFloatAndGlow 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 1;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 87, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.8;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #1a3a8a 0%, #0d1f4a 50%, transparent 70%);
    top: -150px;
    left: -100px;
}

.hero-blob-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #2a1a5a 0%, #150d30 50%, transparent 70%);
    bottom: -80px;
    right: -50px;
    opacity: 0.3;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 87, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
}

/* Hero left */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(3.8rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title-blue {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
    color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.07);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 28px;
    font-size: 0.87rem;
    color: #d1fae5;
    line-height: 1.55;
}

.hero-notice svg {
    flex-shrink: 0;
}

.hero-notice a {
    color: #4ade80;
    font-weight: 700;
    text-decoration: underline;
}

.hero-notice a:hover {
    color: #86efac;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-stat {
    text-align: center;
    padding: 0 24px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue-light);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 4px;
    display: block;
}

.hero-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--border-2);
    flex-shrink: 0;
}

/* Hero right */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.hero-img-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 87, 255, 0.15);
}

.hero-img-ring-1 {
    width: 420px;
    height: 420px;
}

.hero-img-ring-2 {
    width: 340px;
    height: 340px;
    background: rgba(0, 87, 255, 0.04);
}

.hero-product-img {
    position: relative;
    z-index: 1;
    max-height: 460px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 87, 255, 0.35));
}

.hero-badge-card {
    position: absolute;
    z-index: 2;
    background: rgba(15, 15, 34, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-badge-1 {
    top: 60px;
    right: -20px;
}

.hero-badge-2 {
    bottom: 80px;
    left: -20px;
}

.hbc-icon {
    font-size: 1.6rem;
}

.hero-badge-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1px;
}

.hero-badge-card p {
    font-size: 0.76rem;
    color: var(--text-3);
    margin: 0;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--border), transparent);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }
}

/* ===== BRANDS TAPE ===== */
.brands-tape {
    background: var(--surface);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    padding: 18px 0;
    overflow: hidden;
}

.brands-tape-inner {
    overflow: hidden;
}

.brands-tape-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: tape 30s linear infinite;
}

.brands-tape-track span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.brands-tape-track span:nth-child(even) {
    color: rgba(0, 87, 255, 0.4);
}

@keyframes tape {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== CATEGORIES GRID ===== */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 900px) {
    .cats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cat-card {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--r);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-card:hover {
    border-color: var(--blue-light);
    transform: translateY(-4px);
    background: var(--black-2);
    box-shadow: 0 12px 32px rgba(0, 87, 255, 0.15);
}

.cat-img-wrap {
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s var(--ease);
}

.cat-card:hover .cat-img-wrap {
    transform: scale(1.08);
}

.cat-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cat-card-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.cat-card-count {
    font-size: 0.85rem;
    color: var(--blue-light);
    font-weight: 600;
}

/* ===== FEATURED HEAD ===== */
.featured-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

/* ===== WHY US ===== */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-sm);
    transition: all var(--t) var(--ease);
}

.why-item:hover {
    border-color: var(--border);
    background: var(--blue-subtle);
}

.why-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.why-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.why-item p {
    color: var(--text-2);
    font-size: 0.84rem;
    margin: 0;
}

.why-visual {
    position: relative;
}

.why-img-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
}

.why-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--r);
    border: 1px solid var(--border-2);
}

.why-img-badge {
    position: absolute;
    bottom: -1px;
    right: 24px;
    background: var(--grad);
    color: #fff;
    padding: 16px 24px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    box-shadow: var(--shadow-blue);
}

.why-img-badge strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.why-img-badge span {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero {
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
        background: 
            linear-gradient(180deg, rgba(10, 10, 26, 0.8) 0%, rgba(8, 12, 24, 0.9) 100%),
            url('assets/hero-nxt-beef.jpg');
        background-size: cover;
        background-position: center;
    }
    
    /* Hide centered image on mobile, use background image instead */
    .hero-custom-img {
        display: none;
    }
    
    .hero-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 60px 0 40px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-right {
        order: -1;
        width: 100%;
        max-width: 100vw;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-img-ring-1 {
        width: 300px;
        height: 300px;
    }

    .hero-img-ring-2 {
        width: 240px;
        height: 240px;
    }

    .hero-product-img {
        max-height: 300px;
    }

    .hero-badge-1 {
        top: 20px;
        right: 0;
    }

    .hero-badge-2 {
        bottom: 20px;
        left: 0;
    }

    .hero-desc {
        margin: 0 auto 24px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .cats-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .cat-card-wide {
        grid-column: span 2;
    }

}

/* ===== ELECTRIC ANIMATIONS - NXT BEEF HERO ===== */
.hero-custom-img {
    height: 85vh;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    object-position: center;
    position: relative;
    display: block;
    margin: 0 auto;
    z-index: 1;
    filter: drop-shadow(0 0 60px rgba(0, 87, 255, 0.4));
    animation: heroFloatAndGlow 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 1;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroFloatAndGlow {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        filter: brightness(1.15) contrast(1.05) saturate(1.2) drop-shadow(0 0 80px rgba(0, 87, 255, 0.5));
    }
    50% {
        transform: translateY(-53%) scale(1.03);
        filter: brightness(1.25) contrast(1.1) saturate(1.3) drop-shadow(0 0 120px rgba(0, 200, 255, 0.7));
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes visualFloatGiant {

    0%,
    100% {
        transform: translateY(-50%) scale(1)
    }

    50% {
        transform: translateY(-53%) scale(1.02)
    }
}

.huge-ray {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 150px;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.ray-blue {
    left: 20%;
    background: linear-gradient(90deg, transparent, rgba(0, 87, 255, 0.4), rgba(0, 200, 255, 0.3), transparent);
    transform: translateY(-50%) rotate(-15deg);
    animation: pulseRayBlue 4s ease-in-out infinite;
}

.ray-green {
    right: 30%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.35), rgba(57, 255, 20, 0.25), transparent);
    transform: translateY(-50%) rotate(15deg);
    animation: pulseRayGreen 4.5s ease-in-out infinite alternate-reverse;
}

@keyframes pulseRayBlue {
    0% {
        transform: translateY(-50%) rotate(-15deg) scaleX(0.8);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-50%) rotate(-15deg) scaleX(1.4);
        opacity: 0.8;
    }
}

@keyframes pulseRayGreen {
    0% {
        transform: translateY(-50%) rotate(15deg) scaleX(0.8);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-50%) rotate(15deg) scaleX(1.3);
        opacity: 0.6;
    }
}

.elec-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.elec-ring-blue {
    width: 480px;
    height: 480px;
    border: 2px solid rgba(0, 120, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 120, 255, 0.5), inset 0 0 40px rgba(0, 120, 255, 0.15);
    animation: ringPulseBlue 3s ease-in-out infinite;
}

.elec-ring-green {
    width: 420px;
    height: 420px;
    border: 2px solid rgba(0, 210, 100, 0.35);
    box-shadow: 0 0 30px rgba(0, 210, 100, 0.4), inset 0 0 40px rgba(0, 210, 100, 0.1);
    animation: ringPulseGreen 3s 1.5s ease-in-out infinite;
}

.elec-ring-mid {
    width: 540px;
    height: 540px;
    border: 1px solid rgba(0, 87, 255, 0.15);
    animation: ringExpand 4s ease-in-out infinite;
}

@keyframes ringPulseBlue {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8
    }

    50% {
        transform: scale(1.06);
        opacity: 0.4
    }
}

@keyframes ringPulseGreen {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7
    }

    50% {
        transform: scale(0.95);
        opacity: 0.3
    }
}

@keyframes ringExpand {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5
    }

    50% {
        transform: scale(1.04);
        opacity: 0.2
    }
}

.spark {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.spark-1 {
    width: 6px;
    height: 6px;
    background: #00BFFF;
    top: 15%;
    left: 5%;
    animation: sparkFly 2.4s 0s ease-in-out infinite;
    box-shadow: 0 0 12px #00BFFF
}

.spark-2 {
    width: 4px;
    height: 4px;
    background: #00FF88;
    top: 30%;
    right: 8%;
    animation: sparkFly 2.0s 0.5s ease-in-out infinite;
    box-shadow: 0 0 10px #00FF88
}

.spark-3 {
    width: 8px;
    height: 8px;
    background: #0057FF;
    top: 65%;
    left: 3%;
    animation: sparkFly 2.8s 1.0s ease-in-out infinite;
    box-shadow: 0 0 16px #0057FF
}

.spark-4 {
    width: 5px;
    height: 5px;
    background: #39FF14;
    bottom: 25%;
    right: 5%;
    animation: sparkFly 2.2s 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #39FF14
}

.spark-5 {
    width: 3px;
    height: 3px;
    background: #00C8FF;
    top: 80%;
    left: 20%;
    animation: sparkFly 1.8s 0.3s ease-in-out infinite;
    box-shadow: 0 0 8px #00C8FF
}

.spark-6 {
    width: 7px;
    height: 7px;
    background: #00FF66;
    top: 10%;
    right: 20%;
    animation: sparkFly 3.0s 0.8s ease-in-out infinite;
    box-shadow: 0 0 14px #00FF66
}

@keyframes sparkFly {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5)
    }

    30% {
        opacity: 1;
        transform: translate(8px, -12px) scale(1.2)
    }

    60% {
        opacity: 0.7;
        transform: translate(-6px, -20px) scale(0.9)
    }

    100% {
        opacity: 0;
        transform: translate(4px, -30px) scale(0.3)
    }
}

.hero-glow-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: rgba(0, 0, 30, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 87, 255, 0.2);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.glow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.glow-blue {
    background: #00BFFF;
    box-shadow: 0 0 8px #00BFFF;
    animation: dotPulse 2s ease infinite;
}

.glow-green {
    background: #39FF14;
    box-shadow: 0 0 8px #39FF14;
    animation: dotPulse 2s 1s ease infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

/* ===== ENSURE OVERRIDES FOR MOBILE ===== */
@media (max-width: 1024px) {
    .huge-ray {
        width: 100%;
        height: 100px;
        opacity: 0.4;
    }

    .hero-custom-img {
        height: 45vh;
        width: 100%;
        max-width: 100%;
        position: relative;
        right: auto;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        margin-bottom: 1.5rem;
        animation: heroFloatMob 6s ease-in-out infinite;
        opacity: 1;
        object-fit: contain;
        filter: drop-shadow(0 0 30px rgba(0, 87, 255, 0.3));
    }

    @keyframes heroFloatMob {
        0%, 100% {
            transform: translateX(-50%) scale(1);
            filter: brightness(1.1) drop-shadow(0 0 40px rgba(0, 87, 255, 0.4));
        }
        50% {
            transform: translateX(-50%) translateY(-8px) scale(1.02);
            filter: brightness(1.15) drop-shadow(0 0 60px rgba(0, 200, 255, 0.5));
        }
    }

    .hero-right {
        min-height: auto;
        padding: 20px 0;
    }
}

@media (max-width: 640px) {
    .hero {
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-title {
        font-size: 2.8rem;
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }

    .hero-desc {
        text-align: center;
        padding: 0 20px;
    }

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

    .hero-btns {
        justify-content: center;
        width: 100%;
        padding: 0 20px;
    }

    .hero-stats {
        justify-content: center;
        width: 100%;
    }

    .hero-stat {
        padding: 0 12px;
    }

    .cats-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .cat-card-wide {
        grid-column: span 1;
    }

    .cat-card {
        aspect-ratio: 16/7;
    }

    .hero-custom-img {
        height: 38vh;
        margin-bottom: 1rem;
    }
}

/* ===== NXT SHOWCASE SECTION ===== */
.nxt-showcase {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.nxt-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 87, 255, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.nxt-showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Product image */
.nxt-showcase-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.nxt-showcase-img-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--r);
    background: radial-gradient(ellipse at center, rgba(0, 87, 255, 0.12) 0%, rgba(0, 87, 255, 0.04) 50%, transparent 70%);
}

.nxt-showcase-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 87, 255, 0.15);
    pointer-events: none;
}

.nxt-showcase-ring-1 {
    width: 380px;
    height: 380px;
    animation: ringPulseBlue 4s ease-in-out infinite;
}

.nxt-showcase-ring-2 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 200, 100, 0.12);
    animation: ringPulseGreen 4s 2s ease-in-out infinite;
}

.nxt-showcase-product-img {
    position: relative;
    z-index: 1;
    max-height: 480px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 87, 255, 0.4));
    animation: heroFloatAndGlow 8s ease-in-out infinite;
}

.nxt-showcase-badge {
    position: absolute;
    z-index: 2;
    background: rgba(15, 15, 34, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nxt-showcase-badge-1 {
    top: 60px;
    right: 0;
}

.nxt-showcase-badge-2 {
    bottom: 80px;
    left: 0;
}

.nsb-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nxt-showcase-badge strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1px;
}

.nxt-showcase-badge p {
    font-size: 0.76rem;
    color: var(--text-3);
    margin: 0;
}

/* Right: Content */
.nxt-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nxt-showcase-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 20px;
}

.nxt-showcase-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nxt-showcase-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.nxt-showcase-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.nsf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-sm);
    transition: all var(--t) var(--ease);
}

.nsf-item:hover {
    border-color: var(--border);
    background: var(--blue-subtle);
    transform: translateX(4px);
}

.nsf-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.nsf-item strong {
    font-size: 0.92rem;
    color: var(--white);
    font-weight: 700;
}

.nsf-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 1px;
}

.nxt-showcase-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
    .nxt-showcase-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nxt-showcase-visual {
        min-height: 360px;
        order: -1;
    }

    .nxt-showcase-ring-1 {
        width: 280px;
        height: 280px;
    }

    .nxt-showcase-ring-2 {
        width: 220px;
        height: 220px;
    }

    .nxt-showcase-product-img {
        max-height: 320px;
    }

    .nxt-showcase-badge-1 {
        top: 20px;
        right: 10px;
    }

    .nxt-showcase-badge-2 {
        bottom: 20px;
        left: 10px;
    }

    .nxt-showcase-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }
}