/* Variables & Design System */
:root {
    --bg-color: #030206;
    --bg-darker: #000000;
    --bg-card: rgba(14, 11, 22, 0.65);
    --border-card: rgba(255, 0, 255, 0.18);
    --primary: #ff00ff;
    --primary-glow: rgba(255, 0, 255, 0.65);
    --primary-dark: #9d009d;
    --accent: #39ff14;
    --accent-glow: rgba(57, 255, 20, 0.5);
    --accent-dark: #27c90b;
    --text-main: #ffffff;
    --text-muted: #afacc2;
    --text-dark: #646272;
    --font-title: 'Outfit', 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1000px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glow-shadow: 0 0 25px var(--primary-glow);
    --glow-accent: 0 0 25px var(--accent-glow);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

/* Background Glow Effects */
.glow-bg-1, .glow-bg-2, .glow-bg-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 0, 195, 0.35) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}
.glow-bg-1 { top: 10%; left: -10%; }
.glow-bg-2 { top: 40%; right: -10%; background: radial-gradient(circle, rgba(255, 0, 255, 0.2) 0%, rgba(0,0,0,0) 70%); }
.glow-bg-3 { bottom: 15%; left: 10%; }

/* Live Notifications (Social Proof) */
.notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 8, 16, 0.9);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9999;
    max-width: 340px;
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.notification.hidden {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.notification-icon {
    background: rgba(255, 0, 255, 0.15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-desc {
    font-size: 0.85rem;
    color: var(--text-main);
}

/* Alert Bar */
.alert-bar {
    background: linear-gradient(90deg, #50005a 0%, #15002c 50%, #50005a 100%);
    border-bottom: 2px solid var(--primary);
    padding: 10px 20px;
    text-align: center;
    font-size: 0.85rem;
    font-family: var(--font-title);
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.alert-bar p {
    margin: 0;
}

.alert-bar span {
    color: var(--primary);
    font-weight: bold;
}

.alert-bar span:first-child {
    animation: flash 1s infinite alternate;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.badge {
    background: rgba(255, 0, 255, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-family: var(--font-title);
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.15);
}

.main-title {
    font-family: var(--font-title);
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.main-title .highlight {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

/* Image Mockup Container */
.mockup-container {
    position: relative;
    max-width: 580px;
    margin: 0 auto 40px auto;
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.4), rgba(0,0,0,0) 60%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.3);
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.live-counter {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-family: var(--font-title);
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-counter .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse-dot 1.5s infinite;
}

/* CTA Box */
.cta-box {
    margin-top: 30px;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff00ff 0%, #7d0091 100%);
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    padding: 20px 42px;
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.8), inset 0 2px 8px rgba(255, 255, 255, 0.5);
    filter: brightness(1.1);
}

.btn-cta:active {
    transform: translateY(1px);
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-icon {
    color: var(--accent);
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
    letter-spacing: -0.5px;
}

.section-header .tag-alert {
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 15px auto 0 auto;
}

/* Lie Section */
.lie-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(10, 0, 15, 0.7) 100%);
}

.lie-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.lie-card.text-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.lie-card.text-content .highlight-p {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 600;
    border-left: 3px solid var(--primary);
    padding-left: 16px;
}

.lie-card.text-content .neon-text {
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

/* Comparison Box */
.comparison-box {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.comp-item {
    margin-bottom: 25px;
}

.comp-item:last-child {
    margin-bottom: 0;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.comp-header h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
}

.comp-item.bad h3 {
    color: #ff3366;
}

.comp-item.good h3 {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.comp-item ul {
    list-style: none;
    padding-left: 6px;
}

.comp-item ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.comp-item.bad ul li::before {
    content: "•";
    color: #ff3366;
    position: absolute;
    left: 6px;
    font-size: 1.2rem;
    top: -2px;
}

.comp-item.good ul li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    top: 1px;
}

/* Discovery Section (Pillars) */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 35px 24px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.15);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 255, 0.08);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: inset 0 0 15px rgba(255, 0, 255, 0.15);
}

.pillar-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Profit Calculator Section */
.calculator-section {
    background: radial-gradient(ellipse at center, rgba(30, 10, 45, 0.4) 0%, rgba(3, 2, 6, 1) 80%);
}

.calculator-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 3px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--bg-card) 40%, var(--accent) 100%);
}

.calc-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.1), 0 15px 40px rgba(57, 255, 20, 0.05);
    filter: blur(20px);
    z-index: -1;
    border-radius: 24px;
}

.calc-content {
    background: #090710;
    border-radius: 21px;
    padding: 45px 35px;
}

.badge-green {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-family: var(--font-title);
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.1);
}

.calc-content h2 {
    font-family: var(--font-title);
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.calc-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Slider Style */
.slider-container {
    margin-bottom: 35px;
}

.slider-container label {
    display: block;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.neon-pink-text {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
    font-size: 1.5rem;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #191624;
    outline: none;
    transition: background 0.3s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 12px var(--primary);
    border: 2px solid #ffffff;
    transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.result-card {
    background: rgba(14, 12, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.result-card.featured {
    border-color: var(--border-card);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08) 0%, rgba(14, 12, 22, 0.8) 100%);
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px !important;
}

.result-value {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.result-card.featured .result-value {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
    font-size: 2.2rem;
}

/* Profit Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress-bar-bg {
    width: 100%;
    height: 14px;
    background: #14121e;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff00ff 0%, #39ff14 100%);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.target-message {
    margin-top: 10px;
    font-size: 0.9rem !important;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.target-message.reached {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.2);
}

.calc-footer-copy {
    font-size: 0.9rem !important;
    color: var(--text-dark) !important;
    margin-bottom: 0 !important;
}

/* Course Content Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.module-num {
    position: absolute;
    top: -15px;
    right: -10px;
    font-family: var(--font-title);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 0, 255, 0.04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.module-card h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.module-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Bonus Wrapper */
.bonus-wrapper {
    margin-top: 80px;
    border-top: 1px dashed rgba(255, 0, 255, 0.2);
    padding-top: 60px;
}

.bonus-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    text-align: center;
    color: var(--accent);
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.15);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bonus-card {
    background: rgba(14, 11, 22, 0.4);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.12);
}

.bonus-badge {
    background: var(--accent);
    color: #000000;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.bonus-card h4 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    margin-bottom: 12px;
    margin-top: 10px;
}

.bonus-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 60px;
}

.price-strike {
    font-size: 0.85rem;
    color: var(--text-dark);
    text-decoration: line-through;
    display: block;
}

.bonus-card .price-strike {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    background: rgba(57, 255, 20, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(15, 0, 20, 0.8) 100%);
}

.offer-box {
    background: rgba(10, 8, 16, 0.75);
    border: 2px solid var(--primary);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 0, 255, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(15px);
}

.urgency-tag {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid #ff3366;
    color: #ff3366;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.15);
}

.offer-box h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.offer-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.value-list {
    list-style: none;
    max-width: 520px;
    margin: 0 auto 35px auto;
    text-align: left;
}

.value-list li {
    font-size: 0.98rem;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.value-list li span:first-child {
    margin-right: 12px;
    color: var(--accent);
}

.value-list li span:last-child {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.price-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,0,255,0.3), transparent);
    margin: 30px 0;
}

.price-container {
    margin-bottom: 35px;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-dark);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.new-price {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.new-price .huge-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
    display: inline-block;
    line-height: 1;
}

.payment-installments {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 6px;
}

.comparison-anchor {
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin: 0 auto 35px auto;
    max-width: 620px;
    line-height: 1.5;
}

.comparison-anchor strong {
    color: #ffffff;
}

/* Button Checkout */
.btn-checkout {
    display: block;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #000000;
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 900;
    text-decoration: none;
    padding: 22px 30px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-checkout:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 45px rgba(57, 255, 20, 0.7), inset 0 2px 6px rgba(255, 255, 255, 0.6);
    filter: brightness(1.05);
}

.btn-checkout:active {
    transform: translateY(1px);
}

/* Guarantee Box */
.guarantee-box {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
}

.guarantee-badge {
    flex-shrink: 0;
    background: rgba(255, 0, 255, 0.08);
    border: 1px solid rgba(255, 0, 255, 0.3);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.15);
}

.guarantee-text h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Security Seals */
.security-seals {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.seal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-dark);
}

.seal svg {
    color: var(--accent);
}

/* FAQ Section */
.faq-section {
    background: #050409;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background: rgba(14, 12, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 0, 255, 0.2);
}

.faq-item.active {
    border-color: rgba(255, 0, 255, 0.3);
    background: rgba(14, 12, 22, 0.8);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 22px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 28px 24px 28px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.disclaimer {
    font-size: 0.78rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 30px auto;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-dark);
    text-align: center;
}

/* Animations */
@keyframes flash {
    0% { opacity: 0.6; }
    100% { opacity: 1; text-shadow: 0 0 10px var(--primary); }
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 12px var(--accent); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.4); }
    50% { box-shadow: 0 0 35px rgba(255, 0, 255, 0.75); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.4); }
}

.pulse-btn {
    animation: pulse-shadow 2.5s infinite;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .lie-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .alert-bar {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn-cta {
        padding: 16px 28px;
        font-size: 1.05rem;
        width: 100%;
    }
    
    .btn-checkout {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    
    .new-price .huge-price {
        font-size: 3.2rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .calculator-box {
        border-radius: 16px;
    }
    
    .calc-content {
        padding: 30px 20px;
    }
    
    .calc-content h2 {
        font-size: 1.6rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        padding: 40px 20px;
    }
    
    .offer-box h2 {
        font-size: 1.8rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
}
