* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #1a2332;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4527a0 0%, #2962ff 100%);
    color: white;
    padding: 0.25rem 1rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero .highlight {
    color: #ffd54f;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #ff6b35 0%, #f06292 100%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 28rem;
}

.cta-button:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: scale(0.98);
}

.hero-image {
    margin-top: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 100%;
    width: 98%;
    height: auto;
}

/* Section Styles */
.section {
    padding: 2rem 1rem;
}

.section-beige {
    background-color: #faf8f3;
}

.section-white {
    background-color: #ffffff;
}

.section-blue-light {
    background: linear-gradient(135deg, rgba(41,98,255,0.05) 0%, rgba(69,39,160,0.05) 100%);
}

.section-pricing {
    padding: 1.5rem 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a2332;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #616161;
}

/* Cards */
.card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.card p {
    color: #616161;
}

/* Stars */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    fill: #ffd54f;
    color: #ffd54f;
}

/* Testimonials */
.testimonial-quote {
    font-style: italic;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-photo-container {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-photo {
    width: 80%;
    height: 80%;
    object-fit: cover;
    object-position: center;
    margin: 10%;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: #1a2332;
    margin: 0;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #616161;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-photo-container {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: #1a2332;
    margin: 0;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #616161;
    margin: 0;
}

/* Problem Cards */
.problem-card {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.problem-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ef4444;
}

.problem-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.problem-content p {
    color: #616161;
}

/* Steps */
.step-card {
    display: flex;
    gap: 1rem;
    background: white;
    border: 2px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f06292 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.step-content p {
    color: #616161;
}

/* Checklist */
.checklist-item {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.check-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: #66bb6a;
}

.checklist-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #1a2332;
}

.checklist-item p {
    color: #616161;
}

/* Pricing */
.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.value-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #616161;
    margin-bottom: 1rem;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2962ff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    text-align: center;
    color: #616161;
    margin-bottom: 1.5rem;
}

.urgency-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff9c4;
    color: #f57f17;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Quote Box */
.quote-box {
    background: rgba(41, 98, 255, 0.1);
    border-left: 4px solid #2962ff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.quote-box p {
    font-style: italic;
    color: #1a2332;
    margin-bottom: 1rem;
}

.highlight-text {
    color: #f57f17;
    font-weight: 600;
}

/* Footer */
footer {
    background: #1a2332;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

footer p {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(41, 98, 255, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(41, 98, 255, 1);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: -1.5rem;
}

.carousel-next {
    right: -1.5rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2962ff;
    transform: scale(1.2);
}

.indicator:hover {
    background: #4285f4;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
