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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6fffa 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Utility Classes */
.emphasis-text {
    font-weight: 600;
    color: #1a202c;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.5);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a365d;
    margin-bottom: 2rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.5);
}

.connection-text {
    font-style: italic;
    color: #2d3748;
    font-size: 1.1rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.3);
}

.empowerment-text {
    font-weight: 600;
    color: #2f855a;
    font-size: 1.2rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.5);
}

.call-to-action-text {
    font-weight: 600;
    color: #1a365d;
    font-size: 1.2rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.5);
}

.transition-text {
    font-weight: 500;
    color: #4a5568;
    font-style: italic;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    color: white;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #047857 100%);
}

/* Header Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1f2937 50%, #059669 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    z-index: 1;
}

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

.hero-headline {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.primary-cta {
    font-size: 1.3rem;
    padding: 20px 40px;
    background: linear-gradient(135deg, #059669 0%, #2563eb 100%);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6fffa 0%, #f0f9ff 50%, #f7fafc 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-points {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #dc2626;
}

.problem-points p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.explanation-flow {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f59e0b;
}

.failed-solutions {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #dc2626;
}

.pain-cycle {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #059669;
}

/* Opportunity Section */
.opportunity-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6fffa 50%, #f7fafc 100%);
}

.opportunity-hook {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.5);
}

.method-explanation {
    max-width: 900px;
    margin: 0 auto;
}

.four-phase-method {
    background: linear-gradient(135deg, #e6fffa 0%, #f0f9ff 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.phase-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
}

.phase-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.proof-points {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #059669;
}

.proof-points ul {
    list-style: none;
    padding-left: 0;
}

.proof-points li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.proof-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.transformation-vision {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #059669;
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6fffa 0%, #f0f9ff 50%, #f7fafc 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #2563eb;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.3);
}

/* Value Section */
.value-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6fffa 50%, #f7fafc 100%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #059669;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-card h3 {
    color: #1a202c;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.3);
}

/* Proof Section */
.proof-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6fffa 0%, #f0f9ff 50%, #f7fafc 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #059669;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
}

.stats-section {
    margin: 4rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.science-backing {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid #2563eb;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6fffa 50%, #f7fafc 100%);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-hook {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.5);
}

.failed-attempts,
.breaking-point,
.realization,
.discovery,
.transformation,
.mission {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

/* Program Section */
.program-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6fffa 0%, #f0f9ff 50%, #f7fafc 100%);
}

.program-intro {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.5);
}

.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.diff-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-3px);
}

.diff-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.phases-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.phase-detail {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #059669;
}

.phase-detail ul {
    list-style: none;
    padding-left: 0;
}

.phase-detail li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.phase-detail li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.bonus-materials {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 2px solid #059669;
}

.bonus-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.bonus-list li {
    padding-left: 1.5rem;
    position: relative;
}

.bonus-list li::before {
    content: '🎁';
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1f2937 50%, #059669 100%);
    color: white;
}

.pricing-section .section-title {
    color: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #2d3748;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.regular-price {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.crossed-out {
    text-decoration: line-through;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
}

.price-amount {
    font-size: 2.5rem;
    color: #059669;
}

.included-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.included-list li {
    margin-bottom: 1rem;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value {
    color: #718096;
    font-size: 0.9rem;
}

.value-summary {
    background: linear-gradient(135deg, #f7fafc 0%, #e6fffa 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.total-value {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-amount {
    font-weight: bold;
    color: #718096;
    text-decoration: line-through;
}

.you-pay {
    font-size: 1.5rem;
    font-weight: bold;
}

.pay-amount {
    color: #059669;
    font-size: 2rem;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.payment-btn {
    padding: 1rem;
    border: 2px solid #2563eb;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #2563eb;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.payment-btn.primary {
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    color: white;
    border-color: transparent;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.payment-note {
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
}

.cost-comparison {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.cost-comparison li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.cost-comparison li::before {
    content: '💰';
    position: absolute;
    left: 0;
}

.price-conclusion {
    font-weight: 600;
    color: #059669;
}

.limited-bonus {
    background: linear-gradient(135deg, #fed7d7 0%, #fef5e7 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #f59e0b;
}

.bonus-offer {
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc2626;
    margin: 1rem 0;
}

.bonus-value {
    color: #718096;
}

.bonus-details {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.bonus-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bonus-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.bonus-scarcity {
    font-weight: 600;
    color: #dc2626;
}

.urgency {
    background: linear-gradient(135deg, #fef5e7 0%, #fed7d7 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.urgency-close {
    font-weight: 600;
    color: #dc2626;
}

.pricing-cta {
    width: 100%;
    margin-top: 2rem;
    font-size: 1.3rem;
    padding: 1.5rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6fffa 50%, #f7fafc 100%);
}

.guarantee-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-promise,
.why-guarantee,
.guarantee-meaning,
.our-promise {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #059669;
}

.guarantee-terms {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.guarantee-close {
    font-weight: bold;
    color: #059669;
    font-size: 1.2rem;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6fffa 0%, #f0f9ff 50%, #f7fafc 100%);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.positive-future {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #059669;
}

.benefits-flow {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 8px;
}

.negative-future {
    background: linear-gradient(135deg, #fed7d7 0%, #fef5e7 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #dc2626;
}

.vision-close {
    background: linear-gradient(135deg, #f7fafc 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

/* Objections Section */
.objections-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6fffa 50%, #f7fafc 100%);
}

.objection-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.objection-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #2563eb;
}

.objection-card h3 {
    color: #1a202c;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6fffa 0%, #f0f9ff 50%, #f7fafc 100%);
}

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

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #f0f9ff 100%);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.3);
}

.faq-question:hover {
    background: linear-gradient(135deg, #edf2f7 0%, #e6fffa 100%);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1f2937 50%, #059669 100%);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0;
}

.final-cta {
    font-size: 1.4rem;
    padding: 20px 40px;
    margin: 2rem 0;
}

.final-reassurance {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.final-reassurance p {
    margin: 0;
    font-size: 1rem;
    color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .phases-grid,
    .audience-grid,
    .value-grid,
    .testimonials-grid,
    .stats-grid,
    .differentiator-grid,
    .phases-detailed,
    .objection-cards {
        grid-template-columns: 1fr;
    }
    
    .payment-buttons {
        flex-direction: column;
    }
    
    .final-reassurance {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bonus-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .phase-card,
    .audience-card,
    .value-card,
    .testimonial-card,
    .diff-card,
    .phase-detail,
    .objection-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.cta-button:focus,
.payment-btn:focus,
.faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}