@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600&family=Sora:wght@400;600;700;800&display=swap');

:root {
    /* Ultra-Premium Tech Palette */
    --bg-dark: #050608;
    --bg-card: rgba(13, 15, 20, 0.7);
    --bg-card-hover: rgba(20, 23, 31, 0.9);
    
    --primary: #6c63ff; /* New Indigo/Violet from logo ref */
    --primary-glow: rgba(108, 99, 255, 0.65);
    
    --silver: #F4F6FF;
    --silver-metallic: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --container-xl: 1200px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Subtle Noise Texture */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/noise.svg');
    opacity: 0.04;
    z-index: 9999;
    pointer-events: none;
}

/* Luxury Background */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 0% 0%, rgba(108, 99, 255, 0.05) 0%, transparent 40%),
        #050608;
}

.container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.2rem, 8vw, 5.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); letter-spacing: -0.03em; }
h3 { font-size: 2rem; letter-spacing: -0.02em; }

.silver-text {
    background: var(--silver-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-text {
    text-shadow: 0 0 25px var(--primary-glow);
}

/* Full Image Logo */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    height: 45px; /* Clean height for navbar */
}

.main-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    /* This effectively 'removes' the black background */
    mix-blend-mode: screen; 
    filter: drop-shadow(0 0 15px rgba(108, 99, 255, 0.5));
}

.footer-logo .main-logo {
    height: 35px; /* Smaller for footer */
}

.logo-container:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px -10px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(24px);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 3.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

/* Hero Section */
.hero {
    padding-top: 14rem;
    padding-bottom: 10rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.hero-description {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
}

.video-container {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.9), 
                0 0 50px -20px var(--primary-glow);
}

.lex-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 32px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    z-index: 5;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px var(--primary-glow);
}

.video-title-overlay {
    position: absolute;
    bottom: 50px;
    text-align: center;
    width: 100%;
    z-index: 5;
}

.video-title-overlay p {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

/* Glass Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(32px);
    border-radius: 24px;
    padding: 4rem 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 0 8rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(108, 99, 255, 0.2);
    backdrop-filter: blur(32px);
    border-radius: 28px;
    padding: 4rem;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 80px -20px rgba(108, 99, 255, 0.15);
}

.quote-icon {
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #9c8dff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 2rem 0 10rem;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(108, 99, 255, 0.3);
    backdrop-filter: blur(32px);
    border-radius: 32px;
    padding: 4rem;
    width: 100%;
    max-width: 680px;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(108, 99, 255, 0.2),
                0 0 0 1px rgba(108, 99, 255, 0.1);
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    margin-bottom: 3rem;
}

.pricing-blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.pricing-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.pricing-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.pricing-value {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--silver-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.pricing-recurrence {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    align-self: flex-end;
    padding-bottom: 0.5rem;
    white-space: nowrap;
}

.pricing-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.pricing-includes {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.includes-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.5;
}

.includes-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 1.4rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    h1 { font-size: 3.8rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .navbar { padding: 1.5rem 0; }
    .navbar.scrolled { padding: 0.8rem 0; }
    
    .hero { padding-top: 10rem; padding-bottom: 6rem; }
    h1 { font-size: 2.8rem; line-height: 1.2; }
    h2 { font-size: 2.2rem; }
    
    .hero-badge { margin-bottom: 2rem; padding: 8px 16px; font-size: 0.65rem; }
    .hero-description { font-size: 1.1rem; margin-bottom: 3rem; }
    
    .hero-actions { display: flex; flex-direction: column; gap: 1rem; }
    .hero-actions .btn { width: 100%; }
    
    .video-section { padding: 3rem 0; }
    .video-container { border-radius: 20px; }
    .play-button { width: 70px; height: 70px; }
    .video-title-overlay { bottom: 30px; }
    .video-title-overlay p { font-size: 0.7rem; letter-spacing: 3px; }

    .glass-card { padding: 2.5rem 1.5rem; }
    .features-grid { gap: 1.5rem; }
    
    .section-header { margin-bottom: 4rem; }
    
    /* CTA Section Fix */
    .cta-section { padding-bottom: 5rem; }
    .cta-section .glass-card { padding: 3rem 1.5rem; }
    .cta-section h2 { font-size: 2rem; }
    .cta-section .btn { width: 100%; padding: 1.2rem 2rem; }

    /* Testimonial Mobile */
    .testimonial-section { padding: 2rem 0 5rem; }
    .testimonial-card { padding: 2.5rem 1.8rem; border-radius: 20px; }
    .testimonial-text { font-size: 1.05rem; margin-bottom: 2rem; }

    /* Pricing Mobile */
    .pricing-section { padding: 1rem 0 6rem; }
    .pricing-card { padding: 2.5rem 1.5rem; border-radius: 24px; }
    .pricing-amount { font-size: 3rem; }
    .pricing-blocks { gap: 1.2rem; }
    .pricing-includes { padding: 1.5rem; }
    .includes-title { letter-spacing: 0.5px; font-size: 0.72rem; }
    .includes-list li { font-size: 0.88rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    .main-logo { height: 35px; }
    .navbar { padding: 1.2rem 0; }

    /* Pricing extra small */
    .pricing-card { padding: 2rem 1.2rem; }
    .pricing-amount { font-size: 2.6rem; }
    .pricing-currency { font-size: 1.2rem; }
    .pricing-blocks { gap: 1rem; }
    .includes-list li { font-size: 0.85rem; gap: 0.8rem; }
    .testimonial-card { padding: 2rem 1.4rem; }
    .testimonial-text { font-size: 0.98rem; }
    .author-avatar { width: 44px; height: 44px; font-size: 1rem; }
}