:root {
    --primary-color: #12063c;
    --primary-light: #aeace0;
    --primary-dark: #4834CB;
    --accent-color: #00D2D3;
    --accent-light: #00FFFF;
    --dark-bg: #0F1621;
    --darker-bg: #080E17;
    --card-bg: rgba(20, 30, 48, 0.85);
    --card-highlight: rgba(30, 40, 60, 0.95);
    --text-color: #EEF2F7;
    --text-muted: #A0AEC0;
    --success-color: #00B894;
    --warning-color: #FDCB6E;
    --error-color: #FF7675;
}

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 70%, var(--dark-bg) 100%);
}

.hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    color: #a5b4fc;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #fbbf24;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.title-main {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
}

.title-sub {
    display: block;
    color: #a5b4fc;
    font-size: 0.7em;
    font-weight: 600;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #10b981;
    font-weight: 600;
}

/* Hero Proof */
.hero-proof {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-weight: 500;
}

.proof-item i {
    color: #10b981;
    font-size: 1.1em;
}

/* CTA Container */
.cta-container {
    margin-bottom: 48px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a5b4fc;
    font-size: 14px;
    font-weight: 500;
}

.benefit i {
    color: #10b981;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    color: #6366f1;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 3rem;
    color: #1033ce;
    background: rgba(15, 5, 1, 0.825);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(to right, #fff, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    margin-bottom: 40px;
}

.guarantee {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn:hover::before {
    left: 0;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: #fff;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: var(--text-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-color);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-color);
    color: #fff;
}

.btn-success:hover {
    background: #00CE9E;
    transform: translateY(-2px);
}

.features-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Added styles below */

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-color);
}

.section-title.glow {
    text-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: var(--card-highlight);
}

.feature-card.premium {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 210, 211, 0.15));
    border: 1px solid var(--primary-light);
}

.feature-icon-container {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon-container i {
    font-size: 24px;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    margin-top: 15px;
}

.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.feature-list li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.how-it-works {
    padding: 80px 20px;
    background: var(--darker-bg);
    text-align: center;
}

.workflow-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.workflow-step h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonials {
    padding: 80px 20px;
    background: var(--dark-bg);
    text-align: center;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-top: 30px;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card .author {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-card .results {
    color: var(--success-color);
    font-weight: 600;
}

.pricing-cta {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--darker-bg), var(--dark-bg));
    text-align: center;
}

.pricing-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-muted);
}

.price-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.price-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

.faq {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    background: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    height: auto;
    padding: 0 20px 20px;
}

.footer {
    background: var(--darker-bg);
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-guarantee {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .price-card {
        min-width: 100%;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .workflow-step {
        min-width: 100%;
    }

    .footer-info {
        flex-direction: column;
    }

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


/*  title animat */


.border-glow {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;

    /* Make the text itself transparent so only the stroke is visible */
    color: transparent;
    /* Outline thickness and default color (this will get animated) */
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;

    /* Animate the stroke color over time */
    animation: strokeCycle 3s linear infinite;
}

/* Keyframes for cycling the stroke color */
@keyframes strokeCycle {
    0% {
        -webkit-text-stroke-color: #071439;
        /* pink */
    }

    25% {
        -webkit-text-stroke-color: #063606;
        /* green */
    }

    50% {
        -webkit-text-stroke-color: #fefef6;
        /* yellow */
    }

    75% {
        -webkit-text-stroke-color: #6603df;
        /* cyan */
    }

    100% {
        -webkit-text-stroke-color: #ff0080;
        /* back to pink */
    }
}



/* Center our SVG in the hero */
.snake-stroke-container {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Optionally add spacing, etc. */
    margin-bottom: 30px;
}

/* Constrain the SVG size so it doesn't blow up too large */
.snake-stroke-text {
    width: 80%;
    /* adjust as needed for your layout */
    max-width: 600px;
    /* it can scale down on mobile */
    height: auto;
}

/* The text inside our SVG has no fill, only stroke. */
.snake-stroke-text text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3em;
    /* You can tweak this for bigger/smaller text */
    fill: none;
    /* No fill—transparent interior */
    stroke: url(#strokeGradient);
    /* Use the linearGradient we defined above */
    stroke-width: 3px;

    /* The “dash array” and “dash offset” let us animate the stroke so it appears to move from left to right. */
    stroke-dasharray: 12;
    /* length of each dash segment; tweak for desired effect */
    stroke-dashoffset: 120;
    /* large enough offset so the dash is “offscreen” initially */

    /* Animate from offset:120 to offset:0 repeatedly so it looks like a snake traveling across the letters. */
    animation: dashMove 2s linear infinite;
}

/* Keyframes for moving the dash offset leftward (so it appears the “light” or “snake” is traveling right-to-left). */
@keyframes dashMove {
    0% {
        stroke-dashoffset: 120;
    }

    100% {
        stroke-dashoffset: 0;
    }
}




/* Neon title styling */
.neon-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

/* AI text */
.ai-text {
    color: hsl(0, 0%, 100%);
    margin-right: 0.2rem;
}

/* Neon text container */
.neon-text {
    display: inline-flex;
    position: relative;
}

/* Individual neon letters */
.neon-letter {
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

/* Color for each letter */
.n-letter {
    color: #ff2d55;
    text-shadow: 0 0 2px #ff2d55, 0 0 5px #ff2d55;
    animation: neon-pulse 2s infinite alternate;
    animation-delay: 0s;
}

.e-letter {
    color: #ff2d9e;
    text-shadow: 0 0 2px #ff2d9e, 0 0 5px #ff2d9e;
    animation: neon-pulse 2s infinite alternate;
    animation-delay: 0.5s;
}

.o-letter {
    color: #0a511a;
    text-shadow: 0 0 2px #b643ff, 0 0 5px #b643ff;
    animation: neon-pulse 2s infinite alternate;
    animation-delay: 1s;
}

.n2-letter {
    color: #3478f6;
    text-shadow: 0 0 2px #3478f6, 0 0 5px #3478f6;
    animation: neon-pulse 2s infinite alternate;
    animation-delay: 1.5s;
}

/* Subtle pulsing animation */
@keyframes neon-pulse {
    0% {
        text-shadow: 0 0 2px currentColor, 0 0 5px currentColor;
    }

    100% {
        text-shadow: 0 0 3px currentColor, 0 0 8px currentColor, 0 0 12px currentColor;
    }
}

/* Make it responsive */
@media (max-width: 768px) {
    .neon-title-container {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .neon-title-container {
        font-size: 1.8rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards Enhancement */
.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.feature-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-stats .stat {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Testimonial Cards Enhancement */
.testimonial-card.featured {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.05);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-title {
    color: #a5b4fc;
    font-size: 14px;
    margin-bottom: 2px;
}

.author-location {
    color: #64748b;
    font-size: 12px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.result-label {
    font-size: 12px;
    color: #94a3b8;
}

.result-value {
    font-weight: 600;
    color: #ffffff;
}

.result-value.positive {
    color: #10b981;
}

.testimonials-footer {
    margin-top: 48px;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a5b4fc;
    font-size: 14px;
    font-weight: 500;
}

.badge i {
    color: #10b981;
}

/* Pricing Banner */
.pricing-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 48px;
    text-align: center;
    color: white;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.banner-content i {
    font-size: 1.5rem;
}

.countdown {
    display: flex;
    gap: 16px;
    margin-left: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Enhanced Price Cards */
.price-original {
    font-size: 1.2rem;
    color: #64748b;
    text-decoration: line-through;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.price-period {
    font-size: 1rem;
    color: #94a3b8;
}

.price-savings {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

.price-description {
    color: #a5b4fc;
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
}

.price-note {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 16px;
}

/* Pricing Guarantee */
.pricing-guarantee {
    margin-top: 48px;
    text-align: center;
}

.guarantee-content {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 24px 32px;
}

.guarantee-content i {
    font-size: 2rem;
    color: #10b981;
}

.guarantee-text h4 {
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.guarantee-text p {
    color: #a5b4fc;
    font-size: 14px;
    margin: 0;
}