/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a2a;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Utility Classes */
.red-text {
    color: #e74c3c;
    font-weight: 700;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 20px;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
}

/* Header */
.header {
    background: transparent;
    padding: 20px 40px;
    text-align: center;
    border: none;
}

.logo h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Hero Section */
.hero {
    padding: 80px 40px;
    text-align: center;
    background: transparent;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

/* Urgency Banner */
.urgency-banner {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.6); }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #089135, #06cc0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.feature i {
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
}

/* VSL Container */
.vsl-container {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
}

.vsl-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vsl-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-play 2s ease-in-out infinite;
}

@keyframes pulse-play {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.vsl-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
}

.vsl-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.proof-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.proof-item .label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: float-around 15s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; }
.floating-icon:nth-child(4) { top: 40%; right: 25%; }

@keyframes float-around {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

/* Before/After Section */
.before-after {
    padding: 40px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.comparison-item {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.comparison-item.before {
    border: 3px solid #e74c3c;
}

.comparison-item.after {
    border: 3px solid #00b894;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.comparison-header i {
    font-size: 1.5rem;
}

.comparison-item.before .comparison-header i {
    color: #e74c3c;
}

.comparison-item.after .comparison-header i {
    color: #00b894;
}

.comparison-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.before-after-image {
    height: 300px;
    background: linear-gradient(135deg, #f1f2f6 0%, #ddd 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.stat {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    min-width: 120px;
}

.stat.negative {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
}

.stat.positive {
    background: rgba(0, 184, 148, 0.1);
    border: 2px solid #00b894;
}

.stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat.negative .number {
    color: #e74c3c;
}

.stat.positive .number {
    color: #00b894;
}

.stat .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
}

.problems-list, .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.problem, .benefit {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
}

.problem {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.benefit {
    background: rgba(0, 184, 148, 0.1);
    color: #00b894;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: 900;
}

.testimonial-highlight {
    margin-top: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.name {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

.role {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stars {
    font-size: 1.2rem;
}

/* Problem Section */
.problem {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.problem h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.problem-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.warning-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.stop-text {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Old Format Problems */
.old-format {
    padding: 80px 40px;
    text-align: center;
    background: #2c3e50;
    color: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(231, 76, 60, 0.2);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e74c3c;
}

.problem-item i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.problem-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.old-format h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.old-format p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* New Format Benefits */
.new-format {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.new-format h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.new-format .benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.new-format .benefit-item i {
    font-size: 1.5rem;
    color: #00ff88;
}

.new-format .benefit-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Steps Section */
.steps {
    padding: 40px 40px;
    text-align: center;
    background: #f8f9fa;
}

.steps h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.step-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-item p {
    color: #6c757d;
    line-height: 1.5;
}

.time-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 30px;
}

/* Packs Section */
.packs {
    padding: 40px 40px;
    text-align: center;
    background: white;
}

.packs h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pack-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pack-item:hover {
    transform: scale(1.05);
}

.pack-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.pack-item h4 {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.niche-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.editable-text {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Bonuses Section */
.bonuses {
    padding: 40px 40px;
    text-align: center;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.bonuses h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.bonuses p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bonus-item i {
    font-size: 1.5rem;
    color: #e17055;
}

.bonus-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Target Audience */
.target {
    padding: 40px 40px;
    text-align: center;
    background: #2c3e50;
    color: white;
}

.target h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.target-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.target-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #74b9ff;
}

.target-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.target p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    padding: 40px 40px;
    text-align: center;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.pricing h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.pricing-box {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.original-price {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #6c757d;
}

.old-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: line-through;
}

.current-price {
    margin-bottom: 40px;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.4);
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.6);
}

/* Choice Section */
.choice {
    padding: 40px 40px;
    text-align: center;
    background: #f8f9fa;
}

.choice h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.choice-item {
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choice-item.negative {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.choice-item.positive {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.choice-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.choice-item p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.choice-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

/* About Section */
.about {
    padding: 80px 40px;
    text-align: center;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #6c757d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* FAQ Section */
.faq {
    padding: 40px 40px;
    background: #f8f9fa;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-item p {
    padding: 20px 30px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    padding: 40px;
    text-align: center;
    background: #2c3e50;
    color: white;
}

.footer p {
    margin-bottom: 20px;
}

.footer a {
    color: #74b9ff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-top: 20px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .before-after h2,
    .problem h2,
    .new-format h2,
    .steps h2,
    .packs h2,
    .bonuses h2,
    .target h2,
    .pricing h2,
    .choice h2,
    .about h2 {
        font-size: 1.8rem;
    }
    
    .hero,
    .before-after,
    .problem,
    .old-format,
    .new-format,
    .steps,
    .packs,
    .bonuses,
    .target,
    .pricing,
    .choice,
    .about,
    .faq {
        padding: 40px 20px;
    }
    
    .pricing-box {
        padding: 30px 20px;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
}

/* VSL Middle Section */
.vsl-middle {
    padding: 40px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.vsl-middle h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vsl-middle h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #FFD700;
}

.vsl-container-middle {
    max-width: 900px;
    margin: 0 auto 40px;
}

.vsl-placeholder-middle {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vsl-placeholder-middle:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.video-benefits {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.video-benefits span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.video-cta {
    margin-top: 40px;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* Enhanced Pricing Styles */
.value-stack {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.value-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.value-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.value-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: line-through;
}

.total-value {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #667eea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e74c3c;
    text-decoration: line-through;
}

.discount-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-weight: 700;
    animation: pulse-glow 2s ease-in-out infinite;
}

.installments {
    display: block;
    font-size: 1rem;
    color: #6c757d;
    margin-top: 10px;
}

.savings {
    background: rgba(0, 184, 148, 0.1);
    color: #00b894;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.savings-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.urgency-timer {
    background: rgba(231, 76, 60, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
}

.timer-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 15px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 10px;
    min-width: 70px;
    text-align: center;
}

.time-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
}

.time-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pulse-animation {
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button .cta-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-button .cta-subtext {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.guarantee i {
    color: #00b894;
}

/* Pack Enhancements */
.pack-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.pack-item {
    position: relative;
}

.template-preview {
    font-size: 1.2rem;
    font-weight: 600;
}

.pack-stats {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.packs-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.packs-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.packs-benefits .benefit-item i {
    font-size: 1.5rem;
    color: #00b894;
}

/* Problem Section Enhancements */
.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.pain-point i {
    font-size: 2rem;
    color: #FFD700;
    margin-top: 5px;
}

.pain-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pain-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.reality-check {
    background: rgb(107, 104, 104);
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
    backdrop-filter: blur(10px);
}

.urgency-box {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #FFD700;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.urgency-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFD700;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vs-divider {
        order: 2;
    }
    
    .comparison-item.before {
        order: 1;
    }
    
    .comparison-item.after {
        order: 3;
    }
    
    .pain-points {
        grid-template-columns: 1fr;
    }
    
    .timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px;
    }
    
    .guarantees {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .vsl-placeholder,
    .vsl-placeholder-middle {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* About Criart Section */
.about-criart {
    padding: 40px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-criart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="criart-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23criart-pattern)"/></svg>');
    opacity: 0.3;
}

.criart-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.criart-brand {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.criart-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0.9;
}

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

.criart-story {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.criart-story h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
}

.criart-story p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.criart-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.criart-expertise {
    margin-bottom: 80px;
}

.criart-expertise h3 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #FFD700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
}

.expertise-item i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
    display: block;
}

.expertise-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.expertise-item p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.criart-testimonials {
    margin-bottom: 80px;
}

.criart-testimonials h3 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #FFD700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    color: #2c3e50;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #2c3e50;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    color: #2c3e50;
}

.author-business {
    font-size: 0.9rem;
    color: #6c757d;
    display: block;
    margin-bottom: 5px;
}

.criart-guarantee {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.criart-guarantee h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #FFD700;
}

.guarantee-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.guarantee-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.guarantee-point i {
    font-size: 1.5rem;
    color: #00ff88;
    margin-top: 2px;
}

.guarantee-point span {
    font-size: 1rem;
    line-height: 1.5;
}

.criart-cta {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 50px;
    border-radius: 25px;
    border: 3px solid #FFD700;
}

.criart-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
}

.criart-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button.criart-special {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2c3e50;
    font-weight: 900;
    padding: 25px 50px;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    animation: pulse-gold 2s ease-in-out infinite;
}

.cta-button.criart-special:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
}

@keyframes pulse-gold {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
    }
}

.cta-button.criart-special .cta-text {
    font-size: 1.3rem;
    font-weight: 900;
}

.cta-button.criart-special .cta-subtext {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Responsive for Criart Section */
@media (max-width: 768px) {
    .about-criart {
        padding: 60px 20px;
    }
    
    .criart-brand {
        font-size: 2rem;
    }
    
    .criart-tagline {
        font-size: 1.1rem;
    }
    
    .criart-story {
        padding: 30px 20px;
    }
    
    .criart-story h3 {
        font-size: 1.6rem;
    }
    
    .criart-story p {
        font-size: 1rem;
    }
    
    .criart-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-item {
        padding: 30px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .criart-guarantee {
        padding: 30px 20px;
    }
    
    .guarantee-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .criart-cta {
        padding: 30px 20px;
    }
    
    .criart-cta h3 {
        font-size: 1.8rem;
    }
    
    .criart-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .criart-brand {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .expertise-item i {
        font-size: 2.5rem;
    }
    
    .cta-button.criart-special {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
}
