:root {
    --bg-color: #080b11;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #ec4899;
    --text-color: #f3f4f6;
    --text-muted: #9ca3af;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Background Glow */
.glow-bg {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(8, 11, 17, 0) 70%);
    z-index: -1;
    filter: blur(80px);
    opacity: 0.7;
}

.container {
    max-width: 600px; /* Optimized for mobile consumption first */
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 0 30px;
}

/* Stacked Avatars & Trust Badge */
.trust-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.stack-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -15px; /* Overlap effect */
    object-fit: cover;
}

.stack-img:first-child {
    margin-left: 0;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.trust-badge .stars {
    color: #fbbf24; /* Gold stars */
}

.trust-text {
    font-size: 1rem; /* Increased font size as requested */
    font-weight: 600;
    color: #fff;
}

h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.4;
}

.subtitle.main-offer-line {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 400;
}

.subtitle strong {
    color: var(--secondary);
    font-weight: 800;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
    font-size: 1.2rem;
    margin-right: 5px;
}

.new-price {
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #f472b6, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bullet Offer */
.bullet-offer {
    text-align: left;
    margin-bottom: 30px;
}

.includes-text {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.bullet-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.bullet-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.04);
}

.bullet-icon-svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.bullet-item p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

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

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.sub-cta {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #ef4444; /* Red for urgency */
    font-weight: 500;
}

/* Testimonial Section */
.testimonials {
    margin: 40px 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

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

.client-info h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.client-info .client-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.client-info .stars {
    color: #fbbf24;
    font-size: 0.8rem;
}

.testimonial-body p {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
}

/* Results Section */
.results {
    text-align: center;
    margin: 40px 0;
}

.results h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.yellow-line-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.yellow-line-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 4px;
    background-color: #fbbf24;
    border-radius: 2px;
}

.results-line-sub {
    font-size: 1.1rem;
    color: var(--secondary); /* High contrast */
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
}

.results-sub {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.slider-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    aspect-ratio: 1 / 1;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

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

.dot.active {
    background-color: var(--primary);
    width: 20px;
    border-radius: 4px;
}

/* Form Section */
.form-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
}

.form-container p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: white;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 15px;
}

.btn-submit {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-whatsapp-submit {
    background: #25d366;
    color: white;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-whatsapp-submit:hover {
    background: #1ebd59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Guarantee Section */
.guarantee {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.guarantee-badge {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.guarantee h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.guarantee p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    margin: 40px 0;
}

.faq h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    margin: 40px 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
}

/* Success State */
.hidden {
    display: none;
}

#form-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (min-width: 600px) {
    .container {
        padding: 40px;
    }
    h1 {
        font-size: 3.2rem;
    }
}
