/* ============================================
   NexaWatch — 3D Techy Immersive Design v3
   ============================================ */

:root {
    --cyan: #00E5FF;
    --cyan-rgb: 0, 229, 255;
    --purple: #7C4DFF;
    --purple-rgb: 124, 77, 255;
    --pink: #FF4081;
    --pink-rgb: 255, 64, 129;
    --green: #00E676;
    --green-rgb: 0, 230, 118;
    --bg: #060614;
    --bg-2: #0c0c24;
    --bg-card: rgba(14, 14, 40, 0.6);
    --text: #E0E0FF;
    --text-2: #9090B0;
    --text-3: #505070;
    --border: rgba(124, 77, 255, 0.15);
    --grad: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
    --grad-text: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1140px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

a,
button,
input,
select {
    cursor: none;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

a:hover {
    color: var(--pink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-h);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    color: var(--text-2);
    margin-bottom: 1rem;
}

strong {
    color: var(--cyan);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── PARTICLE CANVAS ── */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ── CUSTOM CURSOR ── */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.07) 0%, rgba(var(--purple-rgb), 0.04) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s;
    opacity: 0;
    mix-blend-mode: screen;
}

body:hover .cursor-glow {
    opacity: 1;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 15px rgba(var(--cyan-rgb), 0.6), 0 0 30px rgba(var(--cyan-rgb), 0.3);
}

.cursor-dot.hover {
    width: 40px;
    height: 40px;
    background: rgba(var(--cyan-rgb), 0.1);
    border: 2px solid var(--cyan);
    box-shadow: 0 0 25px rgba(var(--cyan-rgb), 0.5);
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(var(--cyan-rgb), 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(var(--purple-rgb), 0.5);
}

/* ── SECTION ── */
.section {
    padding: 7rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cyan);
    background: rgba(var(--cyan-rgb), 0.08);
    border: 1px solid rgba(var(--cyan-rgb), 0.2);
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* Section orbs */
.section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.section-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(var(--purple-rgb), 0.08);
    top: -5%;
    right: -5%;
    animation: orb-float-2 14s ease-in-out infinite;
}

.section-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(var(--cyan-rgb), 0.06);
    bottom: -5%;
    left: -5%;
    animation: orb-float-1 12s ease-in-out infinite;
}

.section-orb-3 {
    width: 450px;
    height: 450px;
    background: rgba(var(--pink-rgb), 0.07);
    top: -10%;
    left: -8%;
    animation: orb-float-3 16s ease-in-out infinite;
}

.section-orb-4 {
    width: 350px;
    height: 350px;
    background: rgba(var(--purple-rgb), 0.06);
    bottom: -10%;
    right: -8%;
    animation: orb-float-1 13s ease-in-out infinite;
}

.section-screenshots,
.section-pricing {
    position: relative;
}

/* ── GLASS CARD ── */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.glass-card-mini {
    background: rgba(14, 14, 40, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 14px;
}

/* ── ANIMATIONS ── */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes beacon-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--cyan-rgb), 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(var(--cyan-rgb), 0);
    }
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7);
    }
}

@keyframes orb-float-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes orb-float-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(0.9);
    }

    66% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

@keyframes orb-float-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 40px) scale(1.1);
    }
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.8);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s 0.15s var(--ease), transform 0.8s 0.15s var(--ease);
}

.reveal-delay-1.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-2 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s 0.3s var(--ease), transform 0.8s 0.3s var(--ease);
}

.reveal-delay-2.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════
   HERO
   ══════════════════════════ */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(var(--purple-rgb), 0.15);
    top: -10%;
    left: -10%;
    animation: orb-float-1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(var(--cyan-rgb), 0.1);
    top: 20%;
    right: -5%;
    animation: orb-float-2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(var(--pink-rgb), 0.08);
    bottom: 10%;
    left: 30%;
    animation: orb-float-3 10s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(var(--cyan-rgb), 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2.5s ease-out infinite;
}

.logo-ring-2 {
    animation-delay: 1.25s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    background: rgba(var(--cyan-rgb), 0.08);
    border: 1px solid rgba(var(--cyan-rgb), 0.2);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
}

.hero-desc {
    font-size: 1.12rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--cyan);
    color: var(--bg);
    border-radius: 100px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: none;
    box-shadow: 0 4px 25px rgba(var(--cyan-rgb), 0.35);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(var(--cyan-rgb), 0.5);
    color: var(--bg);
}

.btn-glow-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 1rem;
    cursor: none;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1rem;
    cursor: none;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── HERO CAROUSEL WRAPPER ── */
.hero-carousel-wrap {
    position: relative;
    z-index: 3;
    margin-top: 3rem;
    width: 100%;
    max-width: 950px;
}

.scroll-indicator {
    position: absolute;
    top: 89rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: rgba(var(--cyan-rgb), 0.3);
    border-radius: 2px;
    animation: scroll-line 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ══════════════════════════
   PAIN POINTS
   ══════════════════════════ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pain-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.pain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--pink-rgb), 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pain-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(var(--cyan-rgb), 0.1);
    color: var(--cyan);
    margin: 0 auto 1.2rem;
}

.pain-icon.pink {
    background: rgba(var(--pink-rgb), 0.1);
    color: var(--pink);
}

.pain-icon.purple {
    background: rgba(var(--purple-rgb), 0.1);
    color: var(--purple);
}

.pain-icon.green {
    background: rgba(var(--green-rgb), 0.1);
    color: var(--green);
}

.pain-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.pain-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ══════════════════════════
   STATS STRIP
   ══════════════════════════ */
.stats-strip {
    position: relative;
    z-index: 3;
    padding: 0;
    margin-top: -2rem;
}

.stats-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s var(--ease);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--cyan-rgb), 0.3);
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(var(--cyan-rgb), 0.1);
    color: var(--cyan);
    flex-shrink: 0;
}

.stat-icon.icon-purple {
    background: rgba(var(--purple-rgb), 0.1);
    color: var(--purple);
}

.stat-icon.icon-pink {
    background: rgba(var(--pink-rgb), 0.1);
    color: var(--pink);
}

.stat-icon.icon-green {
    background: rgba(var(--green-rgb), 0.1);
    color: var(--green);
}

.stat-num {
    display: block;
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════
   3D COVERFLOW CAROUSEL
   ══════════════════════════ */
.carousel-3d {
    max-width: 950px;
    margin: 0 auto;
    perspective: 1400px;
}

.carousel-stage {
    position: relative;
    height: 0;
    padding-bottom: 58%;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease);
}

.carousel-item {
    position: absolute;
    width: 72%;
    left: 14%;
    top: 0;
    bottom: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.6s var(--ease);
    opacity: 0;
    transform: scale(0.7) translateX(0) rotateY(0deg);
    pointer-events: none;
    z-index: 1;
    backface-visibility: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-item-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(6, 6, 20, 0.8), transparent);
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1) translateX(0) rotateY(0deg);
    z-index: 5;
    pointer-events: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(var(--cyan-rgb), 0.08);
}

.carousel-item.pos-left {
    opacity: 0.6;
    transform: scale(0.78) translateX(-70%) rotateY(25deg);
    z-index: 3;
    filter: brightness(0.6);
}

.carousel-item.pos-right {
    opacity: 0.6;
    transform: scale(0.78) translateX(70%) rotateY(-25deg);
    z-index: 3;
    filter: brightness(0.6);
}

.carousel-item.pos-far-left {
    opacity: 0.2;
    transform: scale(0.6) translateX(-120%) rotateY(40deg);
    z-index: 1;
    filter: brightness(0.3);
}

.carousel-item.pos-far-right {
    opacity: 0.2;
    transform: scale(0.6) translateX(120%) rotateY(-40deg);
    z-index: 1;
    filter: brightness(0.3);
}

.carousel-label {
    text-align: center;
    margin-top: 1.5rem;
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.3);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(14, 14, 40, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s var(--ease);
}

.carousel-arrow:hover {
    background: rgba(var(--cyan-rgb), 0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--text-3);
    cursor: none;
    transition: all 0.3s var(--ease);
}

.carousel-dot.active {
    background: var(--cyan);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(var(--cyan-rgb), 0.5);
}

/* ══════════════════════════
   FEATURE LIST (Numbered Rows)
   ══════════════════════════ */
.feature-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fl-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    border-bottom: 1px solid rgba(var(--border), 0.3);
    transition: all 0.4s var(--ease);
    border-radius: 12px;
    position: relative;
}

.fl-row:last-child {
    border-bottom: none;
}

.fl-row:hover {
    background: rgba(var(--cyan-rgb), 0.02);
}

.fl-number {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(var(--cyan-rgb), 0.08);
    border: 1px solid rgba(var(--cyan-rgb), 0.2);
    flex-shrink: 0;
}

.fl-number span {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--cyan);
}

.fl-number.purple {
    background: rgba(var(--purple-rgb), 0.08);
    border-color: rgba(var(--purple-rgb), 0.2);
}

.fl-number.purple span {
    color: var(--purple);
}

.fl-number.pink {
    background: rgba(var(--pink-rgb), 0.08);
    border-color: rgba(var(--pink-rgb), 0.2);
}

.fl-number.pink span {
    color: var(--pink);
}

.fl-number.gradient {
    background: var(--grad);
    border-color: transparent;
}

.fl-number.gradient span {
    color: #fff;
}

.fl-icon {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(var(--cyan-rgb), 0.08);
    color: var(--cyan);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.fl-icon.purple {
    background: rgba(var(--purple-rgb), 0.08);
    color: var(--purple);
}

.fl-icon.pink {
    background: rgba(var(--pink-rgb), 0.08);
    color: var(--pink);
}

.fl-icon.gradient {
    background: var(--grad);
    color: #fff;
}

.fl-row:hover .fl-icon {
    transform: scale(1.1);
}

.fl-content {
    flex: 1;
}

.fl-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.fl-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.fl-highlight {
    background: linear-gradient(135deg, rgba(var(--cyan-rgb), 0.03), rgba(var(--purple-rgb), 0.03));
    border: 1px solid rgba(var(--cyan-rgb), 0.15);
    border-bottom: 1px solid rgba(var(--cyan-rgb), 0.15) !important;
    border-radius: 16px;
    margin-top: 0.5rem;
}

/* ══════════════════════════
   SETUP PATH (Journey)
   ══════════════════════════ */
.setup-path {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.path-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 0;
}

.path-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.path-node-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--cyan-rgb), 0.1);
    border: 2px solid rgba(var(--cyan-rgb), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    position: relative;
    animation: beacon-pulse 2.5s ease-in-out infinite;
}

.path-node.purple .path-node-inner {
    background: rgba(var(--purple-rgb), 0.1);
    border-color: rgba(var(--purple-rgb), 0.4);
    color: var(--purple);
}

.path-node.pink .path-node-inner {
    background: rgba(var(--pink-rgb), 0.1);
    border-color: rgba(var(--pink-rgb), 0.4);
    color: var(--pink);
}

.path-node.green .path-node-inner {
    background: rgba(var(--green-rgb), 0.1);
    border-color: rgba(var(--green-rgb), 0.4);
    color: var(--green);
}

.path-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--bg);
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.path-node.purple .path-num {
    background: var(--purple);
}

.path-node.pink .path-num {
    background: var(--pink);
}

.path-node.green .path-num {
    background: var(--green);
}

.path-connector {
    width: 3px;
    height: 60px;
    margin: 4px auto;
    background: linear-gradient(180deg, rgba(var(--cyan-rgb), 0.4), rgba(var(--cyan-rgb), 0.05));
    border-radius: 2px;
    flex-shrink: 0;
}

.path-connector.purple {
    background: linear-gradient(180deg, rgba(var(--purple-rgb), 0.4), rgba(var(--purple-rgb), 0.05));
}

.path-connector.pink {
    background: linear-gradient(180deg, rgba(var(--pink-rgb), 0.4), rgba(var(--pink-rgb), 0.05));
}

.path-info {
    flex: 1;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
}

.path-info h3 {
    margin-bottom: 0.5rem;
}

.path-info p {
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
}

.path-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-3);
    padding: 0.25rem 0.8rem;
    background: rgba(var(--cyan-rgb), 0.06);
    border: 1px solid rgba(var(--cyan-rgb), 0.12);
    border-radius: 100px;
}

.path-time.ready {
    color: var(--green);
    background: rgba(var(--green-rgb), 0.08);
    border-color: rgba(var(--green-rgb), 0.2);
}

/* ══════════════════════════
   WHY NEXAWATCH
   ══════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.why-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--cyan-rgb), 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(var(--cyan-rgb), 0.1);
    color: var(--cyan);
    margin: 0 auto 1.2rem;
}

.why-icon.purple {
    background: rgba(var(--purple-rgb), 0.1);
    color: var(--purple);
}

.why-icon.pink {
    background: rgba(var(--pink-rgb), 0.1);
    color: var(--pink);
}

.why-icon.green {
    background: rgba(var(--green-rgb), 0.1);
    color: var(--green);
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ══════════════════════════
   PRICING (Flat — No 3D)
   ══════════════════════════ */
.pricing-card-flat {
    max-width: 560px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--cyan-rgb), 0.2);
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: var(--grad);
    background-size: 200% 200%;
    animation: gradient-border 3s ease infinite;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-shield {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(var(--cyan-rgb), 0.1);
    color: var(--cyan);
    margin: 0 auto 1rem;
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.pricing-header p {
    color: var(--text-3);
    margin-bottom: 0;
}

.pricing-list {
    margin-bottom: 2rem;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.93rem;
    color: var(--text-2);
    border-bottom: 1px solid rgba(var(--border), 0.2);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list li svg {
    color: var(--green);
    flex-shrink: 0;
}

/* ══════════════════════════
   CONTACT
   ══════════════════════════ */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-left h2 {
    margin-bottom: 1rem;
}

.contact-left>p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    transition: all 0.3s var(--ease);
}

.contact-card:hover {
    border-color: rgba(var(--cyan-rgb), 0.3);
    transform: translateX(6px);
}

.contact-card svg {
    color: var(--cyan);
    flex-shrink: 0;
}

.contact-card span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.15rem;
}

.contact-card a {
    font-weight: 600;
    color: var(--text);
}

/* ═══ FOOTER ═══ */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grad);
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand img {
    border-radius: 8px;
}

.footer-brand span {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-3);
    margin-bottom: 0.25rem;
}

.footer a {
    color: var(--cyan);
    font-weight: 600;
}

.footer .copy {
    font-size: 0.75rem;
}

/* ═══ MODAL ═══ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    padding: 2.5rem;
    max-width: 460px;
    width: 92%;
    position: relative;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.35s var(--ease);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-3);
    cursor: none;
    padding: 4px;
    transition: color 0.2s;
}

.modal-x:hover {
    color: var(--pink);
}

.modal-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(var(--cyan-rgb), 0.1);
    color: var(--cyan);
    margin: 0 auto 1rem;
}

.modal-head h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.modal-head p {
    color: var(--text-3);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(14, 14, 40, 0.8);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-b);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: var(--text-3);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(var(--cyan-rgb), 0.08);
}

.form-group select option {
    background: var(--bg-2);
}

/* ── WA FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s var(--ease);
    animation: wa-pulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.12);
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-stage {
        padding-bottom: 62%;
    }

    .carousel-item {
        width: 78%;
        left: 11%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip .container {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-3d-wrapper {
        margin-top: 2rem;
    }

    .hero-mockup {
        transform: rotateX(0deg) !important;
    }

    .carousel-stage {
        padding-bottom: 66%;
    }

    .carousel-item {
        width: 85%;
        left: 7.5%;
    }

    .carousel-item.pos-left,
    .carousel-item.pos-right {
        opacity: 0.3;
        transform: scale(0.72) translateX(-60%) rotateY(15deg);
    }

    .carousel-item.pos-right {
        transform: scale(0.72) translateX(60%) rotateY(-15deg);
    }

    .carousel-item.pos-far-left,
    .carousel-item.pos-far-right {
        opacity: 0;
    }

    .fl-row {
        padding: 1.4rem 1rem;
        gap: 1rem;
    }

    .fl-number {
        min-width: 36px;
        height: 36px;
    }

    .fl-icon {
        min-width: 40px;
        height: 40px;
    }

    body {
        cursor: auto;
    }

    a,
    button,
    input,
    select {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring,
    .cursor-glow {
        display: none;
    }

    .path-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .path-node {
        flex-direction: row;
        gap: 0.75rem;
    }

    .path-connector {
        width: 40px;
        height: 3px;
        margin: 0;
    }

    .path-info {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .stats-strip .container {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-glow,
    .btn-ghost,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

    .wa-float svg {
        width: 24px;
        height: 24px;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .modal {
        padding: 1.5rem;
    }

    .hero-logo img {
        width: 60px;
        height: 60px;
    }

    .logo-ring {
        width: 85px;
        height: 85px;
    }

    .carousel-stage {
        padding-bottom: 73%;
    }

    .carousel-item {
        width: 92%;
        left: 4%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .fl-row {
        flex-wrap: wrap;
    }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--purple-rgb), 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--purple-rgb), 0.5);
}