    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #3a3a3a;
            background: #faf9f7;
        }
        
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        max-width: 480px;
        padding: 0 20px;
    }
}

body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}
        
        /* Countdown Timer */
        .countdown-bar {
            background: linear-gradient(135deg, #ff6b6b, #ff4757);
            color: white;
            padding: 12px;
            position: sticky;
            top: 0;
            z-index: 1000;
            text-align: center;
            box-shadow: 0 2px 10px rgba(255, 75, 87, 0.3);
        }
        
        .countdown-text {
            font-size: 14px;
            font-weight: 600;
        }
        
        .countdown-timer {
            font-size: 20px;
            font-weight: 700;
            margin-top: 5px;
            font-family: 'Courier New', monospace;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #c08b9b 0%, #a67c8a 100%);
            padding: 30px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0); }
            100% { transform: translate(20px, 20px); }
        }
        
        .badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 1;
        }
        
        h1 {
            font-size: 26px;
            font-weight: 800;
            word-wrap: break-word;
            line-height: 1.2;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }
        
        .hero-subtitle {
            font-size: 16px;
            opacity: 0.95;
            margin-bottom: 25px;
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }
        
        /* Enhanced CTA Button */
        .cta-button {
            background: linear-gradient(135deg, #8b9f7e 0%, #7a8d6e 100%);
            color: white;
            padding: 16px 24px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(139, 159, 126, 0.4);
            text-decoration: none;
            display: inline-block;
            width: 100%;
            max-width: 280px;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 6px 25px rgba(139, 159, 126, 0.4); }
            50% { box-shadow: 0 8px 35px rgba(139, 159, 126, 0.6); }
            100% { box-shadow: 0 6px 25px rgba(139, 159, 126, 0.4); }
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 40px rgba(139, 159, 126, 0.5);
        }
        
        /* Mockup Section */
        .mockup-container {
            margin: 30px 0;
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            overflow: hidden;
        }

        
        
        .mockup-image {
            width: 100%;
            max-width: 280px;
            height: auto;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
            animation: float-mockup 3s ease-in-out infinite;
        }

                .mockup-image-2 {
            width: 100%;
            max-width: 360px;
            height: auto;
            margin: 0 auto;
            display: block;
        }
        
        @keyframes float-mockup {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .mockup-badge {
            position: absolute;
            top: -10px;
            right: 50px;
            background: #ff6b6b;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .price-tag {
            margin-top: 15px;
            font-size: 14px;
            position: relative;
            z-index: 1;
        }
        
        .price-old {
            text-decoration: line-through;
            opacity: 0.7;
        }
        
        .price-new {
            font-size: 28px;
            font-weight: 800;
            color: #ffeb3b;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        /* Enhanced Social Proof */
        .social-proof {
            background: white;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .testimonial-badge {
            background: linear-gradient(135deg, #f0e5e9, #e8d5db);
            color: #a67c8a;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: #8b9f7e;
            display: block;
        }
        
        .stat-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .testimonials-grid {
            display: grid;
            gap: 15px;
            margin-top: 30px;
        }
        
        .testimonial-card {
            background: #faf9f7;
            padding: 20px;
            border-radius: 15px;
            text-align: left;
            border-left: 4px solid #c08b9b;
	    opacity: 0;
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #c08b9b, #a67c8a);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            margin-right: 12px;
        }
        
        .testimonial-info {
            flex: 1;
        }
        
        .testimonial-name {
            font-weight: 700;
            color: #3a3a3a;
            font-size: 14px;
        }
        
        .testimonial-role {
            font-size: 12px;
            color: #999;
        }
        
        .stars {
            color: #ffc107;
            font-size: 14px;
        }
        
        .testimonial-text {
            font-size: 14px;
            line-height: 1.5;
            color: #666;
            font-style: italic;
        }
        
        /* Problem Section */
        .problem-section {
            padding: 40px 20px;
            background: #faf9f7;
        }
        
        .section-title {
            font-size: 26px;
            color: #3a3a3a;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 800;
        }
        
        .problem-item {
            background: white;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 15px;
            border-left: 4px solid #c08b9b;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
	    opacity: 0;
        }
        
        .problem-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .problem-item h3 {
            font-size: 18px;
            color: #a67c8a;
            margin-bottom: 8px;
        }
        
        /* Solution Section with Mockup */
        .solution-section {
            background: white;
            padding: 40px 20px;
            position: relative;
        }
        
        .solution-mockup {
            width: 200px;
            margin: 30px auto;
            display: block;
            transform: rotate(-5deg);
            filter: drop-shadow(0 5px 20px rgba(0,0,0,0.15));
        }
        
        .solution-grid {
            display: grid;
            gap: 20px;
            margin-top: 30px;
        }
        
        .solution-card {
            background: linear-gradient(135deg, #f5f0f2 0%, #f0e5e9 100%);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
	    opacity: 0;
        }
        
        .solution-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
            background-size: 15px 15px;
        }
        
        .solution-card:hover {
            transform: translateY(-5px);
        }
        
        .solution-number {
            background: #8b9f7e;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 15px;
            position: relative;
            z-index: 1;
        }
        
        .solution-card h3 {
            color: #3a3a3a;
            margin-bottom: 10px;
            font-size: 20px;
            position: relative;
            z-index: 1;
        }
        
        .solution-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }
        
        /* Benefits Section */
        .benefits-section {
            background: #f5f0f2;
            padding: 40px 20px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            background: white;
            padding: 15px;
            border-radius: 12px;
            transition: all 0.3s ease;
	    opacity: 0;
        }
        
        .benefit-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            font-size: 24px;
            margin-right: 15px;
            color: #8b9f7e;
        }
        
        .benefit-text h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #3a3a3a;
        }
        
        .benefit-text p {
            font-size: 14px;
            color: #666;
        }
        
        /* Authors Section with Mockup */
        .authors-section {
            background: white;
            padding: 40px 20px;
        }
        
        .authors-mockup {
            width: 280px;
            margin: 20px auto;
            display: block;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
        }
        
        .author-card {
            background: #faf9f7;
            padding: 25px;
            border-radius: 20px;
            margin-bottom: 20px;
            border: 2px solid #f0e5e9;
            position: relative;
	    opacity: 0;
        }

.author-photo {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; border: 2px solid #f0e5e9;
  box-shadow: 0 3px 10px rgba(0,0,0,.08);
}
        
        .author-verified {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #4caf50;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        
        .author-name {
            font-size: 20px;
            color: #a67c8a;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .author-credentials {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        .author-credentials ul {
            list-style: none;
            margin-top: 10px;
        }
        
        .author-credentials li {
            padding-left: 20px;
            position: relative;
            margin-bottom: 8px;
        }
        
        .author-credentials li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #8b9f7e;
            font-weight: bold;
        }
        
        /* Bonus Section */
        .bonus-section {
            background: linear-gradient(135deg, #8b9f7e 0%, #7a8d6e 100%);
            padding: 40px 20px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .bonus-section::before {
            content: '🎁';
            position: absolute;
            font-size: 150px;
            opacity: 0.1;
            top: -30px;
            right: -30px;
            transform: rotate(-15deg);
        }
        
        .bonus-title {
            font-size: 26px;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }
        
        .bonus-item {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .bonus-item:hover {
            background: rgba(255,255,255,0.15);
            transform: scale(1.02);
        }
        
        .bonus-item h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .bonus-item p {
            font-size: 14px;
            opacity: 0.95;
        }
        
        /* Guarantee Section */
        .guarantee-section {
            background: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        .guarantee-badge {
            background: linear-gradient(135deg, #ffc107, #ffb300);
            color: #3a3a3a;
            display: inline-block;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 700;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }
        
        .guarantee-text {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }
        
        /* FAQ Section */
        .faq-section {
            background: #faf9f7;
            padding: 40px 20px;
        }
        
        .faq-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: #f0e5e9;
        }
        
        .faq-question {
            font-size: 16px;
            font-weight: 600;
            color: #3a3a3a;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #c08b9b;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* Final CTA with Mockup */
        .final-cta {
            background: linear-gradient(135deg, #c08b9b 0%, #a67c8a 100%);
            padding: 40px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .final-mockup {
            width: 150px;
            margin: 20px auto;
            display: block;
            filter: drop-shadow(0 5px 20px rgba(0,0,0,0.3));
            animation: float-mockup 3s ease-in-out infinite;
        }
        
        .urgency-text {
            background: rgba(255,255,255,0.2);
            display: inline-block;
            padding: 10px 20px;
            border-radius: 20px;
            margin-bottom: 20px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            opacity: 0.9;
        }
        
        .security-badge {
            display: flex;
            align-items: center;
            font-size: 12px;
        }
        
        /* Footer */
        .footer {
            background: #3a3a3a;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 12px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 380px) {
            h1 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .cta-button {
                font-size: 16px;
                padding: 18px 30px;
            }
        }
        
        /* Loading animation */
        .loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        .loading-overlay.active {
            display: flex;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255,255,255,0.3);
            border-top: 5px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

@media (max-width: 600px){
  body{ padding-bottom: calc(68px + env(safe-area-inset-bottom)); }

  .cta-dock{
    position: fixed; left:0; right:0; bottom:0; z-index:1200;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(250,249,247,0) 0%, rgba(250,249,247,.85) 30%, rgba(250,249,247,.95) 100%);
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  }

  .cta-dock-btn{
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:2px; text-decoration:none; color:#fff; text-align:center;
    height:52px; border-radius:26px; width:100%;
    background: linear-gradient(135deg, #8b9f7e 0%, #7a8d6e 100%);
    box-shadow: 0 10px 30px rgba(139,159,126,.35);
  }

  .cta-dock-label{ font-weight:700; letter-spacing:.3px; font-size:14px; }
  .cta-dock-sub{ font-size:11px; opacity:.95; }
}
@media (min-width:601px){ .cta-dock{ display:none; } }


.mockup-wrapper {
    position: relative;
    padding: 40px;
}

.mockup-glow {
    position: absolute;
    width: 280px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.2), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.mockup-book {
    border: 3px solid white;
    border-radius: 8px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        0 20px 60px rgba(0,0,0,0.1);
}

.mockup-shadow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3), transparent);
    filter: blur(10px);
}