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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1A1F2E;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.accent-badge {
    background: #FFB800;
    color: #1A1F2E;
}

.badge.large {
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #FF6B35;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #e55a2a;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 2rem 4rem;
    font-size: 1.5rem;
}

.cta-button.accent {
    background: #FFB800;
    color: #1A1F2E;
}

.cta-button.accent:hover {
    background: #e5a600;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #FFB800;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 31, 46, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1A1F2E;
}

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

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

/* Content Box */
.content-box {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: white;
}

.text-content {
    font-size: 1.125rem;
    color: #374151;
    text-align: left;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1F2E;
    text-align: center;
}

.highlight-primary {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    text-align: center;
}

@media (min-width: 768px) {
    .text-content {
        font-size: 1.25rem;
    }
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1F2E 0%, #2D3748 100%);
    color: white;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin-top: -3rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
    margin-bottom: -3rem;
}

.highlight-accent {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFB800;
}

@media (min-width: 768px) {
    .highlight-accent {
        font-size: 1.75rem;
    }
}

/* Steps Section */
.steps-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.step-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content {
    padding: 1.5rem;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    stroke-width: 2;
}

.step-badge {
    background: #FF6B35;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1A1F2E;
}

.step-description {
    color: #374151;
    line-height: 1.6;
}

/* Transformation Section */
.transformation-section {
    padding: 5rem 0;
    background: white;
}

.transformation-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .transformation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.transformation-image img {
    border-radius: 0.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.transformation-content {
    text-align: left;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #FF6B35;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item p {
    font-size: 1.125rem;
    color: #374151;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: #1A1F2E;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background: #1A1F2E;
    color: white;
}

.urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.urgency-icon {
    width: 2rem;
    height: 2rem;
    color: #FFB800;
}

.urgency-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.urgency-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 1.875rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.new-price {
    font-size: 3.75rem;
    font-weight: 900;
    color: #FFB800;
}

.urgency-subtext {
    font-size: 1.125rem;
    color: #d1d5db;
}

.urgency-questions {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .urgency-text {
        font-size: 1.5rem;
    }
}

/* CTA Main Section */
.cta-main-section {
    padding: 5rem 0;
    background: white;
}

.cta-card {
    max-width: 64rem;
    margin: 0 auto;
    background: white;
    border: 4px solid #FF6B35;
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.cta-intro {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
}

.options-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.option-box {
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.option-box.negative {
    background: #f3f4f6;
}

.option-box.positive {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #FF6B35;
}

.option-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.option-box.negative h3 {
    color: #6b7280;
}

.option-box.positive h3 {
    color: #FF6B35;
}

.option-box p {
    color: #374151;
}

.option-box.positive p {
    color: #1f2937;
}

.price-box {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.final-price {
    font-size: 3.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.price-details {
    font-size: 1.25rem;
    color: white;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 4rem;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.guarantee-icon {
    width: 6rem;
    height: 6rem;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guarantee-icon svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

.guarantee-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.guarantee-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #FF6B35;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1F2E;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #374151;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: #1A1F2E;
    color: white;
}

.final-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.final-cta-details {
    margin-top: 1.5rem;
    color: #d1d5db;
}

@media (min-width: 768px) {
    .final-cta-text {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #111827;
    color: #9ca3af;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-copyright {
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cta-button {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }
    
    .hero-title br {
        display: none;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
}
