:root {
    --primary: #8A2BE2;
    --primary-light: #C77DFF;
    --primary-dark: #6A0DAD;
    --secondary: #00D2FF;
    --bg-dark: #0B0B0D;
    --bg-card: #141418;
    --bg-card-hover: #1A1A20;
    --text-main: #FFFFFF;
    --text-muted: #B0B0C0;
    --border-light: rgba(138, 43, 226, 0.2);
    --font-main: 'Outfit', sans-serif;
    --gradient-main: linear-gradient(135deg, #8A2BE2 0%, #C77DFF 100%);
    --gradient-btn: linear-gradient(90deg, #8A2BE2 0%, #6A0DAD 100%);
    --shadow-glow: 0 0 20px rgba(138, 43, 226, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.highlight-text {
    color: var(--primary-light);
    text-shadow: 0 0 15px rgba(199, 125, 255, 0.5);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #C77DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-btn);
    color: white;
    font-weight: 700;
    text-decoration: none;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.7);
}

.pulse-glow {
    animation: pulse-glow-anim 2s infinite;
}

.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(11, 11, 13, 0.95), transparent);
}

.logo {
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.4));
}

.hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 2rem;
}

.hero-bullets {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 500;
}

.hero-bullets i {
    color: var(--primary-light);
}

.hero-visual {
    margin-top: 5rem;
    position: relative;
}

.mockup-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.mockup-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(138, 43, 226, 0.3));
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.float-card {
    position: absolute;
    background: rgba(20, 20, 24, 0.9);
    backdrop-filter: blur(12px);
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 3;
    text-align: left;
}

.float-card .icon {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.float-card strong {
    display: block;
    font-size: 0.95rem;
    color: white;
}

.float-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-1 {
    top: 20%;
    left: 0%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    right: 0%;
    animation: float 6s ease-in-out infinite 1.5s;
}

.demo-section {
    padding: 100px 0;
    background: #0E0E12;
}

.demo-wrapper {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.video-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.15);
    background: #000;
    position: relative;
}

.video-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(138, 43, 226, 0.2);
    pointer-events: none;
    z-index: 2;
}

.product-video {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.benefits-section {
    padding: 100px 0;
    background: #0E0E12;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    background: var(--bg-card-hover);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 25px;
}

.personas-section {
    padding: 80px 0;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.persona-card {
    background: linear-gradient(145deg, #1A1A20, #141418);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.3s;
}

.persona-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.social-proof {
    padding: 100px 0;
    background: #0E0E12;
}

.offer-section {
    padding: 100px 0;
}

.offer-card {
    position: relative;
    background: rgba(20, 20, 24, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid var(--primary-light);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.offer-header {
    background: var(--gradient-main);
    padding: 30px 20px;
    text-align: center;
}

.offer-tag {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.offer-body {
    padding: 40px 30px;
    text-align: center;
}

.price-box {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-muted);
    position: relative;
    top: 10px;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -2px;
}

.offer-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 35px;
    max-width: 320px;
}

.offer-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #ddd;
}

.offer-list i {
    margin-right: 12px;
    color: var(--primary-light);
}

.how-it-works {
    padding: 100px 0;
    background: #0E0E12;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow);
}

.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    color: var(--text-muted);
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 25px;
}

.final-cta {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0B0B0D 80%);
}

.final-headline {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    background: #050507;
}

.footer-logo {
    height: 30px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow-anim {
    0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(138, 43, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
}

.fade-in, .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
}

.testimonials-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.testimonials-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-img {
    flex: 0 0 auto;
    width: 300px;
    height: auto;
    border-radius: 15px;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .testimonial-img {
        width: 85vw;
        max-width: 320px;
    }
    
    .hero h1 { font-size: 2.2rem; }
    .hero { padding: 120px 0 60px; }
    .steps-container { flex-direction: column; gap: 30px; }
    .section-title { font-size: 2rem; }
    .offer-card { margin: 0 15px; }
    .final-headline { font-size: 2rem; }
    .hero-bullets { flex-direction: column; gap: 10px; }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

@media (max-width: 768px) {
    .carousel-btn { display: none; }
}