* {
    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: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #2563eb 100%);
    color: white;
    padding: 80px 20px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-icon {
    margin-bottom: 32px;
}

.mail-icon {
    width: 64px;
    height: 64px;
    color: #bfdbfe;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 32px;
    color: #bfdbfe;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-primary.large {
    padding: 20px 48px;
    font-size: 20px;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-right: 8px;
}

.stars {
    display: flex;
}

.star {
    color: #fbbf24;
    font-size: 1.5rem;
}

.star.half {
    opacity: 0.5;
}

.stat-label {
    color: #bfdbfe;
    font-size: 14px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Educative Section */
.educative-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.educative-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .educative-content {
        grid-template-columns: 1fr 1fr;
    }
}

.educative-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point {
    display: flex;
    align-items: flex-start;
}

.point-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.point-icon.red {
    background: #fef2f2;
}

.point-icon.red svg {
    color: #dc2626;
    width: 24px;
    height: 24px;
}

.point-icon.orange {
    background: #fff7ed;
}

.point-icon.orange svg {
    color: #ea580c;
    width: 24px;
    height: 24px;
}

.point-icon.yellow {
    background: #fefce8;
}

.point-icon.yellow svg {
    color: #ca8a04;
    width: 24px;
    height: 24px;
}

.point-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.point-content p {
    color: #6b7280;
}

.cost-breakdown {
    background: linear-gradient(135deg, #fef2f2, #fef7ed);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.cost-breakdown h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 16px;
}

.cost-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cost-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cost-stat.total {
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
    font-weight: 600;
}

.cost-value {
    font-weight: 600;
    color: #dc2626;
}

.cost-stat.total .cost-value {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card.blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.benefit-card.green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.benefit-card.purple {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

.benefit-card.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.benefit-card.teal {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
}

.benefit-card.yellow {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-card.blue .benefit-icon {
    background: #2563eb;
}

.benefit-card.green .benefit-icon {
    background: #059669;
}

.benefit-card.purple .benefit-icon {
    background: #7c3aed;
}

.benefit-card.orange .benefit-icon {
    background: #ea580c;
}

.benefit-card.teal .benefit-icon {
    background: #0d9488;
}

.benefit-card.yellow .benefit-icon {
    background: #ca8a04;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6b7280;
}

/* Case Study Section */
.case-study-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.case-study-badge {
    display: inline-flex;
    align-items: center;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.case-study-badge svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.case-study-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.case-study-intro {
    padding: 32px;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px 32px;
}

@media (min-width: 1024px) {
    .case-study-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.case-study-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.case-study-text p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.challenge-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.challenge-point {
    display: flex;
    align-items: flex-start;
}

.challenge-point svg {
    width: 20px;
    height: 20px;
    color: #dc2626;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.challenge-point p {
    margin: 0;
    color: #6b7280;
}

.testimonial-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.testimonial-icon {
    width: 64px;
    height: 64px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.testimonial-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.testimonial-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-title {
    color: #6b7280;
    font-size: 14px;
}

.solution-section {
    padding: 32px;
    margin-bottom: 32px;
}

.solution-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.solution-section p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.solution-item {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
}

.solution-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.solution-icon.green {
    background: #059669;
}

.solution-icon.blue {
    background: #2563eb;
}

.solution-icon.purple {
    background: #7c3aed;
}

.solution-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.solution-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.solution-item p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.strategy-highlights {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
}

.strategy-highlights h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.strategy-highlights ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-highlights li {
    display: flex;
    align-items: flex-start;
}

.strategy-highlights li svg {
    width: 20px;
    height: 20px;
    color: #059669;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.results-section {
    padding: 32px;
    margin-bottom: 32px;
}

.results-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.results-table {
    overflow-x: auto;
    margin-bottom: 32px;
}

.results-table table {
    width: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    border-collapse: collapse;
}

.results-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.results-table td {
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.results-table td:first-child {
    font-weight: 500;
    color: #1f2937;
}

.results-table .before {
    color: #dc2626;
    font-weight: 600;
}

.results-table .after {
    color: #059669;
    font-weight: 600;
}

.final-testimonial {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.final-testimonial blockquote {
    font-style: italic;
    color: #374151;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.conclusion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 32px;
}

@media (min-width: 1024px) {
    .conclusion-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.conclusion-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.conclusion-text p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.conclusion-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.conclusion-text li {
    display: flex;
    align-items: flex-start;
}

.conclusion-text li svg {
    width: 20px;
    height: 20px;
    color: #059669;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.recommendations {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 32px;
    border-radius: 8px;
}

.recommendations h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.recommendations p {
    color: #6b7280;
    margin-bottom: 24px;
}

.recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recommendation {
    display: flex;
    align-items: flex-start;
}

.rec-number {
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-right: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.recommendation p {
    margin: 0;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonials-section .testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonials-section .stars {
    display: flex;
    margin-bottom: 16px;
}

.testimonials-section .star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonials-section .testimonial-card p {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonials-section .author-name {
    font-weight: 600;
    color: #1f2937;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
}

.step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.step p {
    color: #6b7280;
}

.step-arrow {
    position: absolute;
    top: 32px;
    right: -16px;
    display: none;
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
    
    .step:last-child .step-arrow {
        display: none;
    }
}

.step-arrow svg {
    width: 32px;
    height: 32px;
}

.step:nth-child(1) .step-arrow svg {
    color: #93c5fd;
}

.step:nth-child(2) .step-arrow svg {
    color: #86efac;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
}

.urgency-content {
    text-align: center;
    margin-bottom: 32px;
}

.urgency-icon {
    margin-bottom: 16px;
}

.urgency-icon svg {
    width: 64px;
    height: 64px;
    color: #fca5a5;
}

.urgency-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.urgency-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #fca5a5;
    margin-bottom: 32px;
}

.countdown-timer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.timer-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.timer-unit {
    text-align: center;
}

.timer-number {
    font-size: 4rem;
    font-weight: 700;
}

.timer-text {
    font-size: 14px;
    color: #fca5a5;
}

.urgency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature svg {
    width: 24px;
    height: 24px;
    color: #10b981;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #2563eb 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.final-cta-section p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 32px;
    color: #bfdbfe;
}

.cta-pricing {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-value {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.price-number {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-right: 8px;
}

.price-original {
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-label {
    color: #bfdbfe;
    font-size: 14px;
}

.cta-disclaimer {
    font-size: 14px;
    color: #bfdbfe;
    margin-top: 16px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 48px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 0;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 32px;
    height: 32px;
    color: #3b82f6;
    margin-right: 12px;
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timer-display {
        gap: 16px;
    }
    
    .timer-number {
        font-size: 2.5rem;
    }
    
    .urgency-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature {
        justify-content: flex-start;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}