/* Reset & Base Styles */
:root {
    --primary-bg: #000000;
    --secondary-bg: #0a0a0a;
    --accent-color: #ef4444;
    --accent-dark: #b91c1c;
    --accent-glow: rgba(239, 68, 68, 0.5);
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --card-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    --card-shadow-hover:
        0 10px 15px -3px rgba(239, 68, 68, 0.1),
        0 0 0 1px rgba(239, 68, 68, 0.3) inset;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    background-image:
        radial-gradient(circle at 50% 0%, #1a0505 0%, #000000 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ef4444' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
    perspective: 1000px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
}

.btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #991b1b 100%);
    color: #fff;
    box-shadow:
        0 4px 6px -1px rgba(239, 68, 68, 0.3),
        0 2px 0 #7f1d1d;
    border: none;
    transform: translateZ(0);
}

.btn-primary:hover {
    transform: translateY(-1px) translateZ(5px);
    box-shadow:
        0 8px 12px -2px rgba(239, 68, 68, 0.5),
        0 2px 0 #7f1d1d;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow:
        0 2px 4px -1px rgba(239, 68, 68, 0.3),
        0 1px 0 #7f1d1d;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline-gold {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    transition: var(--transition);
    box-shadow:
        0 4px 10px -2px rgba(0, 0, 0, 0.8),
        inset 0 0 15px rgba(239, 68, 68, 0.05);
    backdrop-filter: blur(5px);
    transform: translateZ(0);
}

.btn-outline-gold span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-outline-gold strong {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.btn-outline-gold:hover {
    background: rgba(239, 68, 68, 0.05);
    box-shadow:
        0 0 20px rgba(239, 68, 68, 0.2),
        inset 0 0 20px rgba(239, 68, 68, 0.1);
    transform: translateY(-2px) scale(1.02);
    border-color: #f87171;
    color: #fff;
}

.btn-large {
    font-size: 1rem;
    padding: 18px 40px;
}

/* Typography Utilities */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    transform: translateZ(20px);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    transform: translateZ(30px);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transform: translateZ(15px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    transform: translateZ(10px);
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px 12px;
    border-radius: 15px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.badge svg {
    color: var(--accent-color);
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

/* Emotional Block */
.emotional-block {
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
}

.emotional-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.pain-points {
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    transform: translateZ(10px);
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    max-width: 800px;
    width: 100%;
}

.pain-points p {
    margin-bottom: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pain-points p::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.pain-points p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    color: #ffffff;
    margin-top: 20px;
    justify-content: center;
}

.pain-points p:last-child::before {
    display: none;
}

.emotional-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    perspective: 1000px;
}

.highlight-card {
    background: linear-gradient(145deg, #111111, #050505);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    box-shadow: var(--card-shadow);
    transform: translateZ(0);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 68, 68, 0.3);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
    border-radius: 3px 3px 0 0;
}

.card-icon {
    color: var(--accent-color);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transform: translateZ(20px);
    width: 40px;
    height: 40px;
}

.highlight-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 800;
    transform: translateZ(10px);
}

.highlight-card p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transform: translateZ(5px);
}

/* How it Works */
.how-it-works {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(to bottom, transparent, rgba(239, 68, 68, 0.02), transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.step-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(5, 5, 5, 0.8));
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--card-shadow);
    transform-style: preserve-3d;
}

.step-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(10, 10, 10, 0.9));
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.step-number {
    background: transparent;
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    line-height: 1;
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
    transform: translateZ(20px);
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #ffffff;
    transform: translateZ(15px);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    transform: translateZ(10px);
}

.cta-container {
    text-align: center;
    margin-top: 40px;
    transform: translateZ(20px);
}

/* Why Effective */
.why-effective {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.02), transparent);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    border-left-color: var(--accent-color);
    background: linear-gradient(to right, rgba(239, 68, 68, 0.05), transparent);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.feature-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.feature-item span {
    font-weight: 500;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-lg) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    perspective: 1000px;
}

.testimonial-card {
    background: linear-gradient(145deg, #111111, #050505);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.testimonial-card:hover {
    line-height: 1.6;
    transform: translateZ(10px);
}

.testimonial-author {
    transform: translateZ(20px);
}

.testimonial-author strong {
    display: block;
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 2px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ */
.faq {
    padding: var(--spacing-lg) 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    perspective: 1000px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: scale(1.005);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question .icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: var(--transition);
    text-shadow: 0 0 5px var(--accent-glow);
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
}

.faq-answer p {
    padding: 0 20px 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #000;
    color: var(--text-light);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.footer-cta {
    margin-bottom: 50px;
    transform: translateZ(20px);
}

.footer-cta h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2.2rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.separator {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Responsive Adjustments (Mobile Optimization) */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-md: 1.25rem;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .emotional-cards {
        width: 100%;
        gap: 15px;
    }

    .highlight-card {
        width: 100%;
        min-width: auto;
        padding: 25px 20px;
    }

    .step-number {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta h2 {
        font-size: 1.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: none;
    }
}