:root {
    --color-bg: #050a14;
    /* Deepest Midnight */
    --color-bg-secondary: #0f172a;
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-accent: #38bdf8;
    /* Cyan */
    --color-accent-glow: rgba(56, 189, 248, 0.5);
    --color-primary: #818cf8;
    /* Soft Indigo */
    --color-highlight: #fbbf24;
    /* Warm Amber */
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --spacing-container: 1200px;
    --spacing-section: 6rem;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    top: 0;

    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(129, 140, 248, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-display);
    color: #fff;
    line-height: 1.2;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.product-highlight {
    margin-bottom: 3rem;
}

.product-highlight h2 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.mockup-container {
    margin: 3rem auto;
    max-width: 450px;
    position: relative;
    perspective: 1000px;
}

.hero-mockup {
    width: 100%;
    height: auto;
    display: block;
    transform-style: preserve-3d;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow:
        20px 20px 50px rgba(0, 0, 0, 0.5),
        -5px -5px 20px rgba(56, 189, 248, 0.1);
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

@keyframes float {
    0% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(-20px);
    }

    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0px);
    }
}

/* Pricing */
.price-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(129, 140, 248, 0.5);
    filter: brightness(1.1);
}

/* Sections General */
.section {
    padding: var(--spacing-section) 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #fff, var(--color-text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

/* Glass Card Styles */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
}

/* Pain Points Grid */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* Product Details */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-item {
    border-left: 3px solid var(--color-primary);
    padding-left: 1.5rem;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Mechanism */
.glass-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
    display: inline-block;
    text-align: left;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    text-align: center;
}

.stars {
    color: var(--color-highlight);
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
}

/* Bonuses */
.bonus-card {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.05));
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.bonus-card h3 {
    color: var(--color-highlight);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.bonus-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Offer Section */
.offer-box {
    text-align: center;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.offer-box .lead {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-box .sub-lead {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(129, 140, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
    }
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.icon-shield {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Objections */
.objection-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cross-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cross-list span {
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.accordion-header::after {
    content: '+';
    color: var(--color-accent);
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-text-muted);
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #020408;
    margin-top: 4rem;
}

.footer-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 3rem;
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    display: inline-block;
}

.check-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
}

.check-list li::before {
    content: '✔';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

/* Bonuses */
.bonus-card {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.05));
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.bonus-card h3 {
    color: var(--color-highlight);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.bonus-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Offer Section */
.offer-box {
    text-align: center;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.offer-box .lead {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-box .sub-lead {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(129, 140, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
    }
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.icon-shield {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Objections */
.objection-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cross-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cross-list span {
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.accordion-header::after {
    content: '+';
    color: var(--color-accent);
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-text-muted);
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #020408;
    margin-top: 4rem;
}

.footer-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 3rem;
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    display: inline-block;
}

.check-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
}

.check-list li::before {
    content: '✔';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

/* Bonuses */
.bonus-card {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.05));
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.bonus-card h3 {
    color: var(--color-highlight);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.bonus-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Offer Section */
.offer-box {
    text-align: center;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.offer-box .lead {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-box .sub-lead {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(129, 140, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
    }
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.icon-shield {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Objections */
.objection-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cross-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cross-list span {
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.accordion-header::after {
    content: '+';
    color: var(--color-accent);
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-text-muted);
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #020408;
    margin-top: 4rem;
}

.footer-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 3rem;
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    display: inline-block;
}

.check-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
}

.check-list li::before {
    content: '✔';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

/* Bonuses */
.bonus-card {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.05));
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.bonus-card h3 {
    color: var(--color-highlight);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.bonus-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Offer Section */
.offer-box {
    text-align: center;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.offer-box .lead {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-box .sub-lead {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(129, 140, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
    }
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.icon-shield {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Objections */
.objection-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cross-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cross-list span {
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.accordion-header::after {
    content: '+';
    color: var(--color-accent);
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-text-muted);
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #020408;
    margin-top: 4rem;
}

.footer-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 3rem;
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    display: inline-block;
}

.check-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
}

.check-list li::before {
    content: '✔';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.price-final {
    margin: 2rem 0;
    display: block;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.image-placeholder {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.bonus-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Offer Section */
.offer-box {
    text-align: center;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.offer-box .lead {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-box .sub-lead {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(129, 140, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
    }
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.icon-shield {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Objections */
.objection-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cross-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cross-list span {
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.accordion-header::after {
    content: '+';
    color: var(--color-accent);
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-text-muted);
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #020408;
    margin-top: 4rem;
}

.footer-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 3rem;
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    display: inline-block;
}

.check-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
}

.check-list li::before {
    content: '✔';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.price-final {
    margin: 2rem 0;
    display: block;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--color-accent);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-placeholder {
    height: 400px;
    margin: 3rem auto;
    max-width: 700px;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    text-align: center;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.offer-box .lead {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-box .sub-lead {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(129, 140, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
    }
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.icon-shield {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Objections */
.objection-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cross-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cross-list span {
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.accordion-header::after {
    content: '+';
    color: var(--color-accent);
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-text-muted);
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #020408;
    margin-top: 4rem;
}

.footer-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 3rem;
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    display: inline-block;
}

.check-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
}

.check-list li::before {
    content: '✔';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.price-final {
    margin: 2rem 0;
    display: block;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--color-accent);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-placeholder {
    height: 400px;
    margin: 3rem auto;
    max-width: 700px;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 6rem;
    }

    .image-placeholder {
        height: 150px;
    }
}

/* Bonus 3D Images */
.bonus-image-container {
    margin: 1.5rem auto;
    max-width: 200px;
    position: relative;
    perspective: 1000px;
}

.bonus-mockup {
    width: 100%;
    height: auto;
    display: block;
    transform-style: preserve-3d;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow:
        10px 10px 30px rgba(0, 0, 0, 0.3),
        -2px -2px 10px rgba(56, 189, 248, 0.1);
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.bonus-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.05);
}