:root {
    --bg-dark: #0a0a14;
    --neon-blue: #00f3ff;
    --neon-blue-glow: rgba(0, 243, 255, 0.6);
    --neon-blue-dark: rgba(0, 243, 255, 0.1);
    --text-main: #e0e6ed;
    --text-muted: #8c9baf;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #1b1b36 0%, #0a0a14 100%);
    z-index: -2;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    perspective: 1000px;
    transform: rotateX(60deg) scale(2);
    transform-origin: top center;
    animation: grid-scroll 20s linear infinite;
    opacity: 0.3;
}

@keyframes grid-scroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 50px;
    }
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow), 0 0 20px var(--neon-blue-glow);
}

.red-text {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.6), 0 0 20px rgba(255, 51, 51, 0.4);
}

/* Navbar */
.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-blue-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
}

.nav-download-btn {
    justify-self: center;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--neon-blue-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-download-btn:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--neon-blue-glow);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue-glow);
}

.btn-primary {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover,
.glow-effect:hover {
    background: var(--neon-blue);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 20px var(--neon-blue-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
    padding: 0 10% 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    z-index: 10;
    margin-top: 0;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-header-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-badge {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px var(--neon-blue-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 auto;
    max-width: 900px;
    line-height: 1.4;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Center Visualizer 
.hero-visualizer-container {
    margin-top: 15rem; 
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-graphics-left {
    position: relative;
    height: 40px; 
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
}

.holo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue-glow), inset 0 0 10px var(--neon-blue-dark);
}

.element-1 {
    width: 25px; 
    height: 25px;
    animation: spin 15s linear infinite;
    border: 1.5px dashed var(--neon-blue);
    left: 15px;
}

.element-2 {
    width: 32px; 
    height: 32px;
    animation: spin-reverse 25s linear infinite;
    border: 1px solid rgba(0, 243, 255, 0.6);
    left: 11px;
}

.element-3 {
    width: 22px; 
    height: 22px;
    animation: pulse 3s ease-in-out infinite;
    background: radial-gradient(circle, var(--neon-blue-glow) 0%, transparent 80%);
    border: none;
    left: 16px;
}
*/

/*
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}
*/

/* Waveform bars 
.waveform-container {
    position: absolute;
    left: 52px; 
    display: flex;
    gap: 2px;
    align-items: center;
    height: 30px; 
}

.bar {
    width: 2px; 
    background: linear-gradient(to bottom, var(--neon-blue), #ffffff, var(--neon-blue));
    border-radius: 5px;
    box-shadow: 0 0 8px var(--neon-blue-glow);
    transition: height 0.15s ease-in-out;
}
*/

/* Right Side Graphics (Video) */
.hero-graphics-right {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.main-video-container {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.15);
    overflow: hidden;
    background: #000;
}

.main-video-container::before {
    content: '';
    display: block;
    padding-top: 112.5%;
}

.main-video-container iframe,
.main-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Sections */
section {
    padding: 6rem 10%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: sticky;
    top: 80px;
    z-index: 50;
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(8px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 10px 30px rgba(10, 10, 20, 0.95);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--neon-blue-dark);
    border-color: var(--neon-blue);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    z-index: -1;
}

.step-card {
    text-align: center;
    background: #0a0a14;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.step-num {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue-dark);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.step-card p {
    color: var(--text-muted);
}

/* Hero Showcase */
.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 280px;
    margin: 12rem auto 0;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.showcase-item {
    position: absolute;
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #000;
}

.showcase-item img,
.showcase-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.showcase-item:hover {
    transform: translateZ(50px) scale(1.05);
    z-index: 20 !important;
    border-color: var(--neon-blue);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--neon-blue-glow);
}

.showcase-item:hover img,
.showcase-item:hover video {
    opacity: 1;
}

.showcase-center {
    width: 60%;
    z-index: 3;
    transform: translateZ(20px);
}

.showcase-right {
    width: 50%;
    right: 0;
    z-index: 1;
    transform: translateX(-5%) translateZ(-90px) rotateY(-15deg);
    border-color: rgba(188, 19, 254, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(188, 19, 254, 0.2);
}

.hero-video-sidebar {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 330px; /* Slightly smaller to fit both */
    z-index: 50;
}

.sidebar-left {
    left: 17%;
}

.sidebar-right {
    right: 17%;
}

.sidebar-heading {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.play-hint {
    display: inline-block;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    margin: 1.5rem auto 0;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    width: max-content;
}

.play-hint:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--neon-blue-glow);
    transform: scale(1.05);
}

.play-hint.playing {
    border-color: #ff0055;
    background: rgba(255, 0, 85, 0.1);
}

.play-hint.playing:hover {
    background: #ff0055;
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

.hero-video-sidebar .video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px var(--neon-blue-dark);
    overflow: hidden;
    background: #000;
}

.hero-video-sidebar .video-container::before {
    content: '';
    display: block;
    padding-top: 112.5%; /* Same height as before */
}

.hero-video-sidebar video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-left {
    width: 50%;
    left: 0;
    z-index: 2;
    transform: translateX(5%) translateZ(-60px) rotateY(15deg);
    border-color: rgba(255, 0, 85, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 85, 0.2);
}

.showcase-left:hover {
    border-color: #ff0055;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 0, 85, 0.4);
}

.showcase-right:hover {
    border-color: #bc13fe;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(188, 19, 254, 0.4);
}

.hologram-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0.5;
    animation: scanline 4s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

@media(max-width: 1400px) {
    .hero-video-sidebar {
        width: 250px;
    }
}

@media(max-width: 1200px) {
    .hero-video-sidebar {
        display: none; /* Hide on smaller screens to prevent overlap */
    }
}

@media(max-width: 900px) {
    .hero-showcase {
        height: 250px;
        perspective: none;
    }

    .showcase-left,
    .showcase-right {
        display: none;
    }

    .showcase-center {
        width: 90%;
        transform: none;
    }

    .showcase-center:hover {
        transform: scale(1.02);
    }
}

/* Action Templates Carousel */
.carousel-section {
    padding: 6rem 0;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.carousel-section .section-header {
    padding: 1.5rem 10%;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.carousel-row {
    position: relative;
    width: 100%;
    display: flex;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.scroll-ltr .carousel-track {
    animation: scroll-ltr 40s linear infinite;
}

.scroll-rtl .carousel-track {
    animation: scroll-rtl 40s linear infinite;
    transform: translateX(-50%);
}

.carousel-row:hover .carousel-track {
    animation-play-state: paused;
}

.action-card {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--neon-blue-dark);
    border-color: var(--neon-blue);
}

.action-card .icon {
    font-size: 1.5rem;
}

.action-card .text {
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

@keyframes scroll-ltr {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Works Everywhere Marquee */
.works-everywhere-marquee {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    position: relative;
    z-index: 20;
}

.works-everywhere-marquee::before,
.works-everywhere-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.works-everywhere-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.works-everywhere-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-content {
    display: flex;
    gap: 3rem;
    width: max-content;
    align-items: center;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.marquee-item img {
    height: 28px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.marquee-content.scroll-ltr {
    animation: scroll-ltr 30s linear infinite;
}

.works-everywhere-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 10%;
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
}

.feature-cards-grid .scrolling-card {
    height: 125px;
    width: 50%;
    margin: 0 auto;
    overflow: hidden;
    background: #000000 !important;
    border: 1px solid rgba(0, 243, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-cards-grid .scrolling-card .scrolling-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scroll-up 85s linear infinite;
}

.feature-cards-grid .scrolling-card .scrolling-content:hover {
    animation-play-state: paused;
}

.feature-cards-grid .scrolling-card .credit-line {
    font-size: 18px;
    font-weight: normal;
    text-transform: lowercase;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    opacity: 1;
    text-shadow: 0 0 8px currentColor;
}

.feature-cards-grid .scrolling-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.3) 10%,
        transparent 20%,
        transparent 30%,
        rgba(0,0,0,0.3) 40%,
        transparent 50%,
        transparent 60%,
        rgba(0,0,0,0.3) 70%,
        transparent 80%,
        transparent 90%,
        rgba(0,0,0,0.3) 100%
    );
    pointer-events: none;
    z-index: 1;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.credits-viewport {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 400px;
    overflow: hidden;
}

.credits-content {
    display: flex;
    flex-direction: column;
    gap: 120px;
    animation: scroll-credits 20s linear infinite;
    transform-style: preserve-3d;
}

.credit-line {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: normal;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    opacity: 1;
    text-shadow: 0 0 8px currentColor;
}

@keyframes scroll-credits {
    0% {
        transform: translateY(0) rotateX(25deg);
    }
    100% {
        transform: translateY(-50%) rotateX(25deg);
    }
}

.credits-content:hover {
    animation-play-state: paused;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.4);
}

.testimonial-content {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--neon-blue);
    font-family: var(--font-heading);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 10%;
    background: radial-gradient(circle at center, rgba(10, 10, 20, 1) 0%, rgba(0, 0, 0, 1) 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    align-items: center;
}

.pricing-card {
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured {
    border: 2px solid var(--neon-blue);
    background: rgba(10, 10, 25, 0.9);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    padding: 4rem 2rem;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 243, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-blue);
    color: var(--bg-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.featured-badge.alt {
    background: #ff0055;
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discounts-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.discounts-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.discounts-info strong {
    color: var(--neon-blue);
}

.discounts-info a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Core Highlights Banner */
.core-highlights {
    padding: 3rem 10%;
    margin-top: 2rem;
    position: relative;
    z-index: 20;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 243, 255, 0.05);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.privacy-icon {
    border-color: rgba(185, 28, 28, 0.5);
    box-shadow: 0 0 15px rgba(185, 28, 28, 0.2);
}

.language-icon {
    border-color: rgba(8, 145, 178, 0.5);
    box-shadow: 0 0 15px rgba(8, 145, 178, 0.2);
}

.integration-icon {
    border-color: rgba(180, 83, 9, 0.5);
    box-shadow: 0 0 15px rgba(180, 83, 9, 0.2);
}

.highlight-text-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.highlight-text-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Enhanced Highlight Features */
.enhanced-features-section {
    padding: 6rem 10%;
    background-color: var(--bg-color);
}

.feature-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(10, 10, 20, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 900px) {
    .feature-card {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 3rem;
    }
}

.feature-card-media {
    flex: 0.4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #000;
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-media video,
.feature-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-media .placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.feature-card-content {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-card-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.highlight-text {
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
    margin: 0 -0.2rem;
    color: #fff;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0% 100%;
    transition: background-size 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.highlight-text.active {
    background-size: 100% 100%;
}

.gradient-blue {
    background-image: linear-gradient(to right, #1d4ed8, #0e7490);
}

.gradient-red {
    background-image: linear-gradient(to right, #b91c1c, #be123c);
}

.gradient-green {
    background-image: linear-gradient(to right, #15803d, #047857);
}

.gradient-purple {
    background-image: linear-gradient(to right, #7e22ce, #6d28d9);
}

.gradient-orange {
    background-image: linear-gradient(to right, #c2410c, #d97706);
}

.gradient-yellow {
    background-image: linear-gradient(to right, #a16207, #b45309);
}

.gradient-cyan {
    background-image: linear-gradient(to right, #0369a1, #0891b2);
}

.gradient-lime {
    background-image: linear-gradient(to right, #4ade80, #22c55e);
}

.gradient-pink {
    background-image: linear-gradient(to right, #be185d, #e11d48);
}

.gradient-indigo {
    background-image: linear-gradient(to right, #4338ca, #3730A3);
}

.play-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

.play-video-btn:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.play-video-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.play-card-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

.play-card-video-btn:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.play-card-video-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.feature-card-media .play-card-video-btn {
    position: relative;
    margin-top: 0;
    margin-left: -100px;
    float: left;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    padding: 3rem 10% 1rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-bottom {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 5rem;
    }

    .cta-group {
        justify-content: center;
        margin-bottom: 3rem;
    }

    .hero-graphics {
        display: none;
    }

    .nav-links {
        display: none;
    }
}