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

:root {
    --neon-cyan: #00ffff;
    --neon-magenta: #ff00ff;
    --neon-green: #25D366;
    --neon-violet: #8A2BE2;
    /* Lia Brand Color */
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 80px;
}

.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.nav-logo img {
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SECTION 1: HERO ===== */
#hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

#neon-cursor-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo-container {
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

#logo-img {
    filter: drop-shadow(0 0 20px var(--neon-cyan)) drop-shadow(0 0 40px var(--neon-cyan));
}

#brand-name {
    font-family: 'Alex Brush', cursive;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.2rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    margin-bottom: 1rem;
    position: relative;
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 25px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ===== SECTION 2: SPHERE ===== */
#sphere-section {
    background: var(--darker-bg);
    position: relative;
}

#sphere-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* Sphere Text Overlay */
.sphere-text-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: screen;
    text-align: right;
}

.sphere-text {
    font-family: 'Alex Brush', cursive;
    font-size: clamp(4rem, 8vw, 8rem);
    color: transparent;
    -webkit-text-stroke: 2px var(--neon-cyan);
    position: relative;
    white-space: nowrap;
    line-height: 1;
}

.sphere-text::before {
    content: 'Brands We Promote';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--neon-magenta);
    -webkit-text-stroke: 0;
    opacity: 0.5;
    filter: blur(5px);
    animation: pulse 2s infinite alternate;
}

.sphere-text::after {
    content: 'Brands We Promote';
    position: absolute;
    right: 3px;
    top: 3px;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-green);
    opacity: 0.7;
    animation: glitch 3s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        filter: blur(3px);
    }

    100% {
        opacity: 0.7;
        filter: blur(8px);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ===== SECTION 3: SERVICES (CARD DECK) ===== */
#services-section {
    --x-distance: -50px;
    --y-distance: 14px;
    --angle: 7deg;

    background: linear-gradient(180deg, var(--darker-bg) 0%, #0f0f1e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    scroll-margin-top: 100px;
    padding-top: 100px;
}

.services-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-deck {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.card {
    width: 260px;
    height: 350px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
        rotate 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card:not(:first-child) {
    margin-left: var(--x-distance);
}

.card:nth-child(1) {
    z-index: 0;
    rotate: calc(var(--angle) * -2);
    translate: 0 calc(var(--y-distance) * 3);
}

.card:nth-child(2) {
    z-index: 1;
    rotate: calc(var(--angle) * -1);
    translate: 0 var(--y-distance);
}

.card:nth-child(3) {
    z-index: 2;
}

.card:nth-child(4) {
    z-index: 3;
    rotate: var(--angle);
    translate: 0 var(--y-distance);
}

.card:nth-child(5) {
    z-index: 4;
    rotate: calc(var(--angle) * 2);
    translate: 0 calc(var(--y-distance) * 3);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card:hover {
    transform: translateY(-20px);
    z-index: 100 !important;
}

.card:hover~.card {
    transform: translateX(calc(var(--x-distance) * -1.2));
}

.card-back,
.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-back *,
.card-front * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-back {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(0, 255, 255, 0.15) 100%);
    border: 2px solid rgba(37, 211, 102, 0.4);
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.card-back::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2325D366' opacity='0.08' d='M50 0C22.4 0 0 22.4 0 50c0 8.8 2.3 17.1 6.3 24.3L0 100l26.4-6.9C33.4 97.4 41.5 100 50 100c27.6 0 50-22.4 50-50S77.6 0 50 0zm0 91.7c-7.6 0-15-2-21.4-5.8l-1.5-.9-15.8 4.1 4.2-15.4-.9-1.6C10.9 65.7 8.3 58 8.3 50 8.3 27 27 8.3 50 8.3S91.7 27 91.7 50 73 91.7 50 91.7z'/%3E%3Cpath fill='%2325D366' opacity='0.08' d='M70.8 59.3c-.9-.5-5.5-2.7-6.4-3-.9-.3-1.5-.5-2.1.5s-2.4 3-2.9 3.6c-.5.6-1 .7-1.9.2-4.5-2.3-7.5-4.1-10.5-9.3-.8-1.4.8-1.3 2.3-4.3.3-.6.1-1.1-.1-1.5-.2-.5-2.1-5-2.9-6.8-.8-1.8-1.6-1.5-2.1-1.5h-1.8c-.6 0-1.5.2-2.3 1.1-.8.9-3 2.9-3 7.1s3.1 8.2 3.5 8.8c.4.6 6.1 9.3 14.8 13 8.7 3.7 8.7 2.5 10.3 2.3 1.6-.2 5.5-2.2 6.3-4.4.8-2.2.8-4.1.5-4.4-.2-.4-.8-.6-1.7-1.1z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.card-front {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    transform: rotateY(180deg);
    text-align: left;
    display: flex;
    overflow: hidden;
}

.card-front::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2325D366' opacity='0.08' d='M50 0C22.4 0 0 22.4 0 50c0 8.8 2.3 17.1 6.3 24.3L0 100l26.4-6.9C33.4 97.4 41.5 100 50 100c27.6 0 50-22.4 50-50S77.6 0 50 0zm0 91.7c-7.6 0-15-2-21.4-5.8l-1.5-.9-15.8 4.1 4.2-15.4-.9-1.6C10.9 65.7 8.3 58 8.3 50 8.3 27 27 8.3 50 8.3S91.7 27 91.7 50 73 91.7 50 91.7z'/%3E%3Cpath fill='%2325D366' opacity='0.08' d='M70.8 59.3c-.9-.5-5.5-2.7-6.4-3-.9-.3-1.5-.5-2.1.5s-2.4 3-2.9 3.6c-.5.6-1 .7-1.9.2-4.5-2.3-7.5-4.1-10.5-9.3-.8-1.4.8-1.3 2.3-4.3.3-.6.1-1.1-.1-1.5-.2-.5-2.1-5-2.9-6.8-.8-1.8-1.6-1.5-2.1-1.5h-1.8c-.6 0-1.5.2-2.3 1.1-.8.9-3 2.9-3 7.1s3.1 8.2 3.5 8.8c.4.6 6.1 9.3 14.8 13 8.7 3.7 8.7 2.5 10.3 2.3 1.6-.2 5.5-2.2 6.3-4.4.8-2.2.8-4.1.5-4.4-.2-.4-.8-.6-1.7-1.1z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.wa-logo {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.wa-logo svg {
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.6));
}

.card-back h3 {
    font-size: 1.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    z-index: 1;
}

.card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    z-index: 1;
    position: relative;
}

.card-front p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    flex: 1;
    z-index: 1;
    position: relative;
}

.know-more {
    display: inline-block;
    color: var(--neon-magenta);
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
    position: relative;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    align-self: flex-start;
}

.know-more:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    transform: translateX(10px);
}

.cta-container {
    margin-top: 3rem;
    text-align: center;
}

.demo-cta {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.demo-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* ===== SECTION 4: OUR VISION ===== */
#vision-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 5rem 2rem;
}

.vision-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.vision-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.vision-journey {
    position: relative;
    min-height: 600px;
    margin: 4rem 0;
}

.journey-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
}

.vision-milestones {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    z-index: 1;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.milestone.visible {
    opacity: 1;
    transform: translateY(0);
}

.milestone-icon {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px currentColor);
}

.milestone h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.milestone p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    line-height: 1.6;
}

.milestone[data-milestone="1"] .milestone-icon svg circle,
.milestone[data-milestone="1"] .milestone-icon svg path {
    stroke: var(--neon-cyan);
    fill: var(--neon-cyan);
}

.milestone[data-milestone="1"] h3 {
    color: var(--neon-cyan);
}

.milestone[data-milestone="2"] h3 {
    color: var(--neon-green);
}

.milestone[data-milestone="3"] h3 {
    color: var(--neon-magenta);
}

.vision-statement {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

/* ===== SECTION 5: WHY SOUVEIRA VENTURES ===== */
#why-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.why-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(0, 255, 255, 0.1) 0%,
            rgba(255, 0, 255, 0.1) 25%,
            rgba(37, 211, 102, 0.1) 50%,
            rgba(0, 255, 255, 0.1) 75%,
            rgba(255, 0, 255, 0.1) 100%);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    opacity: 0.6;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.why-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
}

.why-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.why-statement {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.why-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.why-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6);
}

/* ===== CONTENT PAGES ===== */
.page-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 6rem 2rem 4rem;
    min-height: auto;
}

.page-container {
    max-width: 1200px;
    width: 100%;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
}

.page-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: rgba(10, 10, 15, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.6);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.vision-card {
    background: rgba(10, 10, 15, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.info-card h3,
.vision-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--neon-cyan);
}

.info-item strong {
    display: block;
    color: var(--neon-cyan);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* About Page */
.about-content {
    margin-top: 3rem;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: var(--neon-cyan);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-block p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: rgba(10, 10, 15, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--neon-cyan);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    font-size: 1.1rem;
}

/* Careers Page */
.careers-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.job-listings h2 {
    color: var(--neon-cyan);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.job-card {
    background: rgba(10, 10, 15, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-header h3 {
    color: var(--neon-cyan);
    font-size: 1.8rem;
}

.job-type {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-details {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.job-description h4 {
    color: var(--neon-green);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.job-description ul {
    margin-left: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.job-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.apply-btn,
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.apply-btn:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.5);
}

.careers-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(10, 10, 15, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.careers-cta h2 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.careers-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

/* Affiliates Page */
.affiliate-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.commission-structure {
    margin: 4rem 0;
}

.commission-structure h2,
.program-benefits h2,
.how-it-works h2 {
    color: var(--neon-cyan);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.commission-card {
    background: rgba(10, 10, 15, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.commission-card.highlight {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.commission-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.commission-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.commission-card h3 {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.commission-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.commission-details {
    background: rgba(10, 10, 15, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    margin-top: 2rem;
}

.commission-details h3 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.tier-list {
    list-style: none;
    padding: 0;
}

.tier-list li {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    line-height: 1.6;
}

.note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(10, 10, 15, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: rgba(10, 10, 15, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.affiliate-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(10, 10, 15, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.affiliate-cta h2 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.affiliate-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

.cta-note a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 300px;
        height: calc(100vh - 80px);
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(0, 255, 255, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Content Pages */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .commission-grid,
    .values-grid,
    .benefits-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    /* Cards - Stacking Animation */
    #services-section {
        padding: 4rem 0;
        min-height: auto;
        overflow: visible;
    }

    .card-deck {
        display: block;
        width: 100%;
        padding: 2rem 1rem;
        padding-bottom: calc(5 * 5rem);
        margin-bottom: 4rem;
    }

    .card {
        position: sticky;
        top: 80px;
        width: 75vw;
        max-width: 75vw;
        height: 70vh;
        min-height: auto;
        margin: 0 auto 2rem auto !important;
        rotate: 0deg !important;
        translate: 0 0 !important;
    }

    /* Progressive z-index and scale so later cards appear larger on top */
    .card:nth-child(1) {
        padding-top: 0;
        z-index: 1 !important;
        transform: scale(0.85) !important;
    }

    .card:nth-child(2) {
        padding-top: 5rem;
        z-index: 2 !important;
        transform: scale(0.87) !important;
    }

    .card:nth-child(3) {
        padding-top: 10rem;
        z-index: 3 !important;
        transform: scale(0.89) !important;
    }

    .card:nth-child(4) {
        padding-top: 15rem;
        z-index: 4 !important;
        transform: scale(0.91) !important;
    }

    .card:nth-child(5) {
        padding-top: 20rem;
        z-index: 5 !important;
        transform: scale(0.93) !important;
    }

    /* Mobile: Show front face by default, no flip, no hover effects */
    .card-inner {
        transform: rotateY(180deg);
        pointer-events: none;
    }

    .card:hover .card-inner {
        transform: rotateY(180deg) !important;
    }

    .card:hover {
        transform: inherit !important;
    }

    .card:hover~.card {
        transform: inherit !important;
    }

    /* Adjust card sizing for mobile readability */
    .card-front,
    .card-back {
        padding: 2rem 1.5rem;
    }

    /* Ensure opaque backgrounds on mobile to prevent content overlap */
    .card-back {
        background: linear-gradient(135deg, #0a1f14 0%, #0a1a1f 100%);
        border: 2px solid rgba(37, 211, 102, 0.6);
    }

    .card-front {
        background: linear-gradient(135deg, #0a1a1f 0%, #1a0a1f 100%);
        border: 2px solid rgba(0, 255, 255, 0.5);
    }

    .card-front h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .card-front p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .card-back h3 {
        font-size: 1.3rem;
        bottom: 15%;
    }

    .wa-logo svg {
        width: 80px;
        height: 80px;
    }

    .know-more {
        font-size: 0.95rem;
    }

    #brand-name {
        letter-spacing: 0.2rem;
    }

    .tagline {
        letter-spacing: 0.1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-logo span {
        font-size: 1.1rem;
    }

    .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
        width: 250px;
    }

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

    .page-subtitle {
        font-size: 1.1rem;
    }

    /* Adjust sticky offset for smaller mobile nav */
    .card {
        top: 70px;
    }

    .card-front,
    .card-back {
        padding: 1.5rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== LIA PRODUCT PAGE ===== */
.lia-page {
    font-family: 'Outfit', sans-serif;
}

.lia-brand {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-violet) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(138, 43, 226, 0.5);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.lia-brand .tm {
    font-size: 2rem;
    vertical-align: super;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
}

.lia-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.lia-subtext {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.lia-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--neon-violet);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lia-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.6);
    background: #fff;
    color: var(--neon-violet);
}

#lia-hero {
    flex-direction: column;
    text-align: center;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, var(--dark-bg) 70%);
}

.glow-orb {
    width: 200px;
    height: 200px;
    background: var(--neon-violet);
    border-radius: 50%;
    filter: blur(80px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Voice Feature */
/* #voice-design background removed for parallax */

.voice-demo-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.voice-prompt {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--neon-cyan);
    padding-left: 1rem;
}

.voice-wave-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.bar {
    width: 6px;
    background: var(--neon-violet);
    border-radius: 3px;
    height: 10px;
    animation: wave 1s ease-in-out infinite;
}

.bar:nth-child(odd) {
    animation-duration: 0.8s;
}

.bar:nth-child(2n) {
    animation-duration: 1.1s;
}

.bar:nth-child(3n) {
    animation-duration: 1.3s;
}

@keyframes wave {

    0%,
    100% {
        height: 10px;
        opacity: 0.5;
    }

    50% {
        height: 35px;
        opacity: 1;
        box-shadow: 0 0 10px var(--neon-violet);
    }
}

.lia-response {
    color: var(--neon-violet);
    font-weight: 600;
}

/* Screening Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 900px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-violet);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--neon-violet);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

/* Interest Form */
.form-container {
    max-width: 500px;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--neon-violet);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
    text-align: center;
}

.lia-form {
    margin-top: 2rem;
}

.lia-form .form-group {
    margin-bottom: 1.5rem;
}

.lia-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.lia-form input:focus {
    outline: none;
    border-color: var(--neon-violet);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, var(--neon-violet), var(--neon-magenta));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
}

/* ===== LIA RESPONSIVE & ENHANCEMENTS ===== */


/* Parallax Background */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content */
    pointer-events: none;
    overflow: hidden;
}

/* Ensure content sits above parallax bg ONLY on Lia page */
.lia-page .section {
    position: relative;
    z-index: 1;
    background: transparent !important;
    /* Allow parallax to show through */
}

/* Add semi-transparent backdrops to readable areas */
.feature-text,
.screening-content,
.form-container {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--neon-violet);
    top: 20%;
    left: 10%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: 60%;
    right: -10%;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--neon-magenta);
    top: 80%;
    left: 20%;
}

@media (max-width: 768px) {
    .lia-brand {
        font-size: 15vw;
        /* Ensure it fits on small screens */
    }

    .lia-tagline {
        font-size: 1.2rem;
    }

    .lia-subtext {
        font-size: 1rem;
        padding: 0 1rem;
    }

    #lia-hero {
        padding-top: 120px;
        /* More space for nav */
        justify-content: center;
    }

    .voice-demo-box {
        padding: 1.5rem;
        margin: 1rem;
    }

    .voice-prompt {
        font-size: 0.9rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        /* Stack steps */
        gap: 3rem;
    }

    .step-card {
        margin: 0 1rem;
    }

    .form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
}