:root {
    --cyan: #3FE4C5;
    --cyan-glow: rgba(63, 228, 197, 0.4);
    --coral: #FF6B4A;
    --coral-glow: rgba(255, 107, 74, 0.4);
    --bg-dark: #030712;
    --bg-card: rgba(17, 24, 39, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Work Sans', sans-serif;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-mesh {
    will-change: transform;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: var(--bg-dark);
    overflow: hidden;
}

.bg-orb {
    will-change: transform;
    transform: translateZ(0);
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: rgba(63, 228, 197, 0.15);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 55vw;
    height: 55vw;
    background: rgba(255, 107, 74, 0.12);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 35vw;
    height: 35vw;
    background: rgba(63, 228, 197, 0.1);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

.bg-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 15%) scale(1.2);
    }
}

.title-lg {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.85;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.title-md {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.9;
    font-weight: 600;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(to right, var(--cyan), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
}

.theme-cyan {
    background: var(--cyan) !important;
    color: var(--bg-dark) !important;
}

.theme-cyan .text-gradient {
    background: none;
    -webkit-text-fill-color: var(--bg-dark);
    color: var(--bg-dark);
}

.theme-cyan .badge,
.theme-cyan .testi-badge {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--bg-dark);
}

.theme-cyan .section-desc,
.theme-cyan .step-desc,
.theme-cyan .testi-meta,
.theme-cyan .testi-quote,
.theme-cyan .testi-name {
    color: rgba(0, 0, 0, 0.8) !important;
}

.theme-cyan .glass-panel,
.theme-cyan .step-card,
.theme-cyan .testi-card {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: none;
}

.theme-cyan .step-num {
    border-color: var(--bg-dark);
    color: var(--bg-dark);
    background: transparent;
    box-shadow: none;
}

.theme-cyan h2,
.theme-cyan h3,
.theme-cyan h4 {
    color: var(--bg-dark) !important;
}

.theme-cyan span[style*="color:var(--cyan)"] {
    color: var(--bg-dark) !important;
}

.theme-coral {
    background: var(--coral) !important;
    color: var(--bg-dark) !important;
}

.theme-coral .text-gradient {
    background: none;
    -webkit-text-fill-color: var(--bg-dark);
    color: var(--bg-dark);
}

.theme-coral .badge,
.theme-coral .testi-badge {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--bg-dark);
}

.theme-coral .section-desc,
.theme-coral .testi-meta,
.theme-coral .testi-quote {
    color: rgba(0, 0, 0, 0.8) !important;
}

.theme-coral .glass-panel,
.theme-coral .testi-card {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: none;
}

.theme-coral h2,
.theme-coral h3,
.theme-coral h4 {
    color: var(--bg-dark) !important;
}

.theme-coral svg {
    color: var(--bg-dark) !important;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.9), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--text-primary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--cyan);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn-nav:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    overflow: hidden;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: rgba(63, 228, 197, 0.1);
    border: 1px solid rgba(63, 228, 197, 0.3);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: var(--text-primary);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3rem;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(63, 228, 197, 0.05);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-block .num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--cyan);
    line-height: 1;
    font-weight: 700;
}

.stat-block .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-phone-container {
    position: relative;
    width: 300px;
    height: 600px;
    perspective: 1000px;
    animation: floatMain 6s ease-in-out infinite;
}

.hero-phone {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 40px;
    border: 2px solid #333;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--cyan-glow);
    position: relative;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    position: absolute;
    inset: 6px;
    background: linear-gradient(160deg, #111, #050505);
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 50px 20px 20px;
}

.widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.w-1 {
    top: 10%;
    left: -60px;
    animation: floatWidget 5s ease-in-out infinite alternate;
    border-left: 2px solid var(--cyan);
}

.w-2 {
    bottom: 20%;
    right: -80px;
    animation: floatWidget 7s ease-in-out infinite alternate-reverse;
    border-right: 2px solid var(--coral);
}

@keyframes floatMain {

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

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

@keyframes floatWidget {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-15px) scale(1.05);
    }
}

.comparison-bar {
    padding: 0 5%;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.comp-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
}

.comp-item {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.comp-before {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    text-decoration-color: var(--coral);
}

.comp-after {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.marquee-wrap {
    width: 100%;
    background: var(--cyan);
    color: var(--bg-dark);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg) scale(1.05);
    z-index: 10;
    margin: 4rem 0;
}

.marquee {
    display: flex;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: scrollText 20s linear infinite;
}

.marquee span {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.section {
    padding: 100px 5%;
    position: relative;
    z-index: 2;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.ai-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ai-content li h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.ai-content li p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.chat-window {
    transform: rotateY(-10deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
    padding: 0;
    overflow: hidden;
    perspective: 1000px;
}

.chat-head {
    background: rgba(63, 228, 197, 0.1);
    padding: 1rem;
    border-bottom: 1px solid rgba(63, 228, 197, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
}

.bubble {
    padding: 1rem;
    border-radius: 1rem;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.5;
}

.bubble.nova {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.bubble.user {
    background: linear-gradient(90deg, var(--cyan), #29b59a);
    color: var(--bg-dark);
    align-self: flex-end;
    border-bottom-right-radius: 0;
    font-weight: 500;
}

.chip-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0 1.5rem 1.5rem;
}

.chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    color: var(--cyan);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    transition: 0.4s;
}

.bento-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--cyan-glow);
}

.bento-wide {
    grid-column: span 2;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.bento-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.bento-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan);
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
}

.coral-theme:hover {
    border-color: var(--coral);
    box-shadow: 0 20px 40px var(--coral-glow);
}

.coral-theme .bento-tag {
    color: var(--coral);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-num {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.split-reverse {
    direction: rtl;
}

.split-reverse>* {
    direction: ltr;
}

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

.feature-list li h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.feature-list li p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.scan-visual {
    width: 260px;
    height: 500px;
    margin: 0 auto;
    background: linear-gradient(160deg, #111, #050505);
    border-radius: 30px;
    border: 2px solid var(--glass-border);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.scan-frame {
    width: 160px;
    height: 300px;
    border: 2px dashed var(--cyan);
    border-radius: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-line {
    position: absolute;
    left: -10px;
    right: -10px;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {

    0%,
    100% {
        top: 10%;
    }

    50% {
        top: 90%;
    }
}

.scan-label {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--cyan);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--cyan);
    font-weight: bold;
}

.nutrition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.n-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.track-container {
    perspective: 1200px;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.card-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    width: max-content;
    animation: appScroll 40s linear infinite;
}

.card-track:hover {
    animation-play-state: paused;
}

@keyframes appScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.track-card {
    flex: 0 0 300px;
    height: 650px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.track-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
}

.track-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--cyan);
    box-shadow: 0 30px 60px var(--cyan-glow), inset 0 0 0 1px rgba(63, 228, 197, 0.3);
}

.track-label {
    margin-top: auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
}

.testi-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.testi-grid::-webkit-scrollbar {
    display: none;
}

.testi-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 300px;
    scroll-snap-align: start;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testi-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.testi-nav button {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    color: var(--cyan);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.testi-nav button:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 15px var(--cyan-glow);
    transform: scale(1.05);
}

@media (max-width:1024px) {
    .testi-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width:768px) {
    .testi-card {
        flex: 0 0 100%;
    }
}

.testi-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-dark);
}

.testi-name {
    font-weight: bold;
    font-size: 1rem;
}

.testi-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testi-badge {
    margin-left: auto;
    background: rgba(63, 228, 197, 0.1);
    color: var(--cyan);
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.price-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.4s;
    cursor: pointer;
}

.price-card:hover {
    border-color: var(--cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--cyan-glow);
}

.price-card.pro {
    background: rgba(17, 24, 39, 0.9);
    border: 2px solid var(--cyan);
    box-shadow: 0 10px 30px var(--cyan-glow);
    transform: scale(1.05);
    z-index: 10;
}

.price-card.pro:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px var(--cyan-glow);
}

.p-name {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.p-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.p-price span {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.p-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.p-save {
    display: inline-block;
    background: rgba(255, 107, 74, 0.15);
    color: var(--coral);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.p-features {
    list-style: none;
    margin: 0 0 2rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.p-features svg {
    color: var(--cyan);
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.btn-ghost {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-fill {
    background: linear-gradient(90deg, var(--cyan), #29b59a);
    color: var(--bg-dark);
}

.btn-fill:hover {
    box-shadow: 0 0 30px var(--cyan-glow);
    transform: translateY(-2px);
}

.pricing-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-footer div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.integ-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.integ-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.lang-chip {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    padding: 2rem;
}

.faq-q {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.faq-a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.final-cta {
    text-align: center;
    padding: 80px 5%;
    background: var(--cyan);
    color: var(--bg-dark);
    border-radius: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
}

.final-cta .badge {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--bg-dark);
}

.final-cta h2,
.final-cta .section-desc {
    color: var(--bg-dark) !important;
}

.final-cta span[style*="color:var(--cyan)"] {
    color: var(--bg-dark) !important;
}

.store-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-dark);
    border: 2px solid transparent;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: 0.3s;
    width: fit-content;
}

.store-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: #111;
}

footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--glass-border);
    background: #010308;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

@media (max-width:1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .split-section,
    .ai-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split-reverse>* {
        direction: ltr;
    }

    .chat-window {
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .testi-grid,
    .pricing-grid,
    .grid-4 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width:768px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .btn-block {
        width: 100%;
        text-align: center;
        display: block;
    }

    .btn-primary,
    .btn-outline,
    .btn-ghost,
    .btn-fill {
        display: inline-flex;
        width: auto;
    }

    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }

    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .comp-inner {
        grid-template-columns: 1fr;
    }

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

    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-footer {
        flex-direction: column;
        gap: 1rem;
    }

    #problem-solution [style*="grid-template-columns:1fr 1fr"],
    #problem-solution [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    #features [style*="grid-template-columns:repeat(3"],
    #features [style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    .steps-grid {
        grid-template-columns: 1fr !important;
    }

    .ai-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .section {
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

@media (max-width:768px) {
    .hamburger {
        display: block !important;
    }
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 100px 2rem 2rem;
    border-left: 1px solid var(--glass-border);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar .nav-links {
    flex-direction: column;
    gap: 2rem;
}

.mobile-sidebar .nav-links a {
    font-size: 1.2rem;
}

.mobile-sidebar .btn-nav {
    margin-top: 2rem;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinSlowReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulseGlow {
    from {
        transform: scale(0.9);
        opacity: 0.6;
    }

    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

.track-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.card-track {
    display: flex;
    gap: 2rem;
    animation: autoScroll 60s linear infinite;
    width: max-content;
}

.track-card {
    width: 300px;
    height: 650px;
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.track-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

@keyframes autoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.bento-card,
.comp-item,
.step-card,
.testi-card,
.pricing-card,
.btn-primary,
.btn-outline,
.btn-nav {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px var(--cyan-glow);
    border-color: var(--cyan);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--cyan-glow);
    border-color: var(--cyan);
}

.comp-item:hover,
.step-card:hover,
.testi-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
    z-index: 10;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--cyan);
    transition: width 0.3s ease;
}

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

.btn-nav:hover {
    transform: scale(1.05);
}

.footer-links a,
.social-links a {
    transition: all 0.3s ease !important;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--cyan);
}

.footer-links a:hover {
    padding-left: 8px;
    color: var(--cyan);
}

.faq-header:hover {
    color: var(--cyan);
}

/* Footer Highlight */
.footer-highlight {
    color: var(--cyan) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-highlight:hover {
    text-shadow: 0 0 15px var(--cyan-glow);
    padding-left: 8px !important;
}

.footer-highlight i {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
}