:root {
    --bg-color: #000000;
    --text-white: #ffffff;
    --accent-orange: #ff9450;
    --accent-orange-dark: #e88139;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Ensure vertical centering */
    text-align: center;
    position: relative;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 157, 92, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 span {
    color: var(--accent-orange);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.7);
}

.subheadline {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 15px !important;
    margin-bottom: 40px !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-orange-dark);
    transform: scale(1.05);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-white);
}

/* Base Classes for JS Animations */
.fade-in {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.reveal-text {
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.cta-group.fade-in {
    animation-delay: 0.5s;
}

p.fade-in {
    animation-delay: 0.3s;
}

/* Marquee Bar */
.marquee-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--accent-orange);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1000;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0 50px;
    text-transform: uppercase;
}

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

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

/* Movie Stack Animation */
.movie-stack {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin-bottom: 20px;
    z-index: 5;
}

.movie-card {
    width: 180px;
    height: 270px;
    border-radius: 12px;
    object-fit: cover;
    position: absolute;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Interaction */
.movie-card.active {
    z-index: 5000 !important;
    transform: translate(-50%, -50%) scale(1.4) rotate(0deg) !important;
    left: 50% !important;
    top: 50% !important;
    position: fixed;
    box-shadow: 0 0 100px rgba(255, 157, 92, 0.3), 0 0 40px rgba(0, 0, 0, 0.8);
}

.movie-card.dim {
    opacity: 0.2 !important;
    filter: blur(4px);
    pointer-events: none;
}

/* Badge */
.badge {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 400;
    margin: 10px auto 0;
    display: inline-block;
    position: relative;
    z-index: 100;
    animation-delay: 1.2s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .movie-card {
        width: 100px;
        height: 150px;
    }

    .movie-stack {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        height: 180px;
        margin: 10px auto 0;
        display: flex;
        justify-content: center;
        perspective: 1500px;
    }

    .hero {
        padding-top: 45px;
        /* Marquee is 40px */
        justify-content: flex-start;
    }

    .hero-content {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 40px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}

/* Marquee Section */
.marquee-section {
    padding: 40px 0;
    background-color: var(--bg-color);
    overflow: hidden;
    text-align: center;
}

.marquee-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 15px;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.marquee-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

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


/* Global Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Comparison Section */
.comparison {
    padding: 80px 20px 40px;
    background-color: var(--bg-color);
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 20px 0;
    line-height: 1.1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.comp-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    transition: var(--transition);
}

.premium-card {
    border: 2px solid var(--accent-orange);
    background: rgba(255, 157, 92, 0.03);
}

.premium-tag {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 1.2rem;
    color: var(--accent-orange);
}

.comp-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.icon-x {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
}

.icon-check {
    color: var(--accent-orange);
    background: rgba(255, 157, 92, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.premium-card li {
    color: #fff;
}

/* Comparison Mobile */
@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comp-card {
        padding: 30px;
    }
}

/* Commands Section */
.commands-section {
    padding: 40px 20px 80px;
    background-color: var(--bg-color);
    overflow: hidden;
}

.commands-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commands-content {
    max-width: 500px;
}

.commands-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 20px 0;
    line-height: 1.1;
}

.commands-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Vertical Scroll Visual */
.commands-visual {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    padding: 40px;
    height: 500px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.commands-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 15%, transparent 85%, var(--bg-color) 100%);
    pointer-events: none;
    z-index: 2;
}

.scroll-container {
    height: 100%;
    position: relative;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: verticalScroll 20s linear infinite;
}

@media (max-width: 992px) {
    .commands-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .commands-content {
        margin: 0 auto;
    }

    .commands-visual {
        height: 400px;
        padding: 20px;
    }
}

/* Steps Section */
.steps-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
    text-align: center;
}

.steps-header {
    margin-bottom: 60px;
}

.steps-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 20px 0;
    line-height: 1.1;
    color: #fff;
}

.steps-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: left;
    border: 1px solid rgba(255, 157, 92, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.step-card:nth-child(2) {
    transition-delay: 0.15s;
}

.step-card:nth-child(3) {
    transition-delay: 0.3s;
}

.step-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(255, 157, 92, 0.15);
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.step-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.step-img-placeholder {
    margin-top: auto;
    padding-top: 10px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 157, 92, 0.05), rgba(255, 157, 92, 0.12));
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-section {
        padding: 60px 15px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background-color: var(--bg-color);
    text-align: center;
}

.testimonials-header {
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 20px 0;
    line-height: 1.1;
}

.testimonials-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}

.testimonials-slider:active {
    cursor: grabbing;
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--accent-orange);
    color: #000;
}

.slider-arrow.prev {
    left: -25px;
}

.slider-arrow.next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 10px;
}

.testimonial-card {
    min-width: 380px;
    background: #ffffff;
    border-radius: 40px;
    padding: 25px 30px 30px;
    text-align: left;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    font-family: serif;
    font-size: 4rem;
    line-height: 1;
    color: #000;
    margin-bottom: 5px;
}

.testimonial-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.testimonial-desc {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.user-photo {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid #eee;
}

.user-details {
    flex: 1;
}

.user-name {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}

.user-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.user-rating {
    color: #ffb800;
    font-size: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 1100px) {
    .slider-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: calc(100vw - 60px);
        padding: 30px;
    }
}

@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }

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

    /* Scrolls half-way since we duplicated content */
}

/* Command Card Styling */
.command-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
}

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Icon Colors from Image */
.pl {
    background: #e6f9f0;
    color: #10b981;
}

.ad {
    background: #f3f4f6;
    color: #6b7280;
}

.pv {
    background: #e0f2fe;
    color: #0ea5e9;
}

.p {
    background: #fce7f3;
    color: #db2777;
}

.tr {
    background: #fef2f2;
    color: #ef4444;
}

.card-info {
    flex: 1;
}

.card-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.check {
    color: #3b82f6;
    font-size: 0.9rem;
}

.card-line {
    height: 4px;
    background: #f3f4f6;
    border-radius: 2px;
    margin-bottom: 4px;
}

.card-line.long {
    width: 80%;
}

.card-line.short {
    width: 40%;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background-color: var(--bg-color);
    text-align: center;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 20px 0;
    line-height: 1.1;
    color: #fff;
}

.lime-badge {
    background: #0070F3 !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    padding: 5px 15px !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px 40px;
    color: #000;
    text-align: left;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.premium-p {
    border: 3px solid #0070f3;
    padding-top: 50px;
    overflow: hidden;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #0070f3;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.currency {
    font-size: 2rem;
    font-weight: 800;
}

.amount {
    font-size: 6rem;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -4px;
}

.period {
    font-size: 1.1rem;
    color: #666;
    margin-left: 10px;
}

.plan-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.features-title {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.check-circle.grey {
    border: 1px solid #ddd;
    color: #ccc;
}

.check-circle.lime {
    background: #0070F3;
    color: #fff;
}

.btn-lime {
    background: #0070F3;
    color: #fff;
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-lime:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 112, 243, 0.3);
    background: #0060d1;
}

/* Scroll Animation Adjustment */
@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }

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

@media (max-width: 992px) {
    .pricing {
        padding: 60px 10px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        gap: 20px;
    }

    .pricing-card {
        padding: 35px 25px;
        border-radius: 30px;
    }

    .pricing-card.premium-p {
        order: -1;
    }

    .amount {
        font-size: 5rem;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 20px 40px;
    background-color: var(--bg-color);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 20px 0;
    line-height: 1.1;
    color: #fff;
}

.faq-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.blue-badge {
    background: rgba(255, 157, 92, 0.1) !important;
    color: var(--accent-orange) !important;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 25px;
}

.accordion-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 20px;
        font-size: 1rem;
    }

    .faq {
        padding: 40px 10px 20px;
    }

    .accordion {
        max-width: 100%;
        width: 100%;
    }
}

/* Final CTA */
.final-cta {
    padding: 40px 20px 40px;
}

.cta-box {
    background: #0a0a0a;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-action .btn-lime {
    max-width: 320px;
}

.guarantee {
    font-size: 0.85rem !important;
    opacity: 0.5;
    margin-bottom: 0 !important;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

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

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 60px 20px;
    }
}