* {
    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;
    background-color: #fafaf9;
}

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

.section {
    padding: 5rem 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1c1917;
    margin-bottom: 3rem;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
/*     background: linear-gradient(to bottom right, rgba(28, 25, 23, 0.7), rgba(146, 64, 14, 0.7)); */
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
    color: #e7e5e4;
}

.cta-button {
    background-color: #d97706;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b45309;
    transform: scale(1.05);
}

/* What I Offer Section */
.offer-section {
    background-color: #e7e5e4;
}

.offer-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.offer-intro {
    font-size: 1.25rem;
    color: #44403c;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.offer-description {
    font-size: 1rem;
    color: #57534e;
    margin-bottom: 2rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
}

.offer-card-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.offer-conclusion {
    font-size: 1.25rem;
    color: #44403c;
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.how-it-works-overlay {
    position: absolute;
    inset: 0;
/*     background: rgba(255, 255, 255, 0.85); */
}

.how-it-works-section .container {
    position: relative;
    z-index: 10;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.how-it-works-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
}

.how-it-works-content {
    padding: 2rem;
}

.how-it-works-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1c1917;
    margin-bottom: 1rem;
}

/* Themes Section */
.themes-section {
    background-color: #d6d3d1;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.theme-card {
    background: white;
    border: 1px solid #a8a29e;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.theme-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.theme-content {
    padding: 2rem;
}

.theme-text {
    font-size: 1.125rem;
    color: #44403c;
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to right, #fef3c7, #e7e5e4);
}

.pricing-card {
    max-width: 48rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #f59e0b;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-content {
    padding: 3rem;
}

.pricing-text {
    font-size: 1.5rem;
    color: #44403c;
    font-weight: 300;
    text-align: center;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 96rem;
    margin: 0 auto;
}

.about-image {
    text-align: center;
}

.profile-image {
    width: 16rem;
    height: 16rem;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #a8a29e;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.about-card {
    background-color: #fafaf9;
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
}

.about-card-content {
    padding: 2rem;
}

.about-text {
    color: #57534e;
    font-style: italic;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #e7e5e4;
}

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

.testimonial-card {
    background: white;
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-text {
    color: #57534e;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #78716c;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-overlay {
    position: absolute;
    inset: 0;
/*     background: rgba(28, 25, 23, 0.6); */
}

.contact-section .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.contact-title {
    color: white;
}

.contact-form-wrapper {
    margin-bottom: 3rem;
}

.contact-form-card {
    max-width: 32rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form-header {
    padding: 1.5rem 1.5rem 0;
}

.contact-form-title {
    text-align: center;
    color: #374151;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-form-content {
    padding: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: white;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-textarea {
    resize: none;
    min-height: 5rem;
}

.form-submit-button {
    width: 100%;
    background-color: #92400e;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-submit-button:hover {
    background-color: #78350f;
}

.contact-cta {
    color: white;
    margin-bottom: 2rem;
}

.contact-cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    background-color: #1c1917;
    color: #a8a29e;
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: #78716c;
}

.footer-quote {
    color: #78716c;
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Toast */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    max-width: 20rem;
    transition: all 0.3s ease;
}

.toast.hidden {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.toast-description {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-image {
        width: 12rem;
        height: 12rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .offer-grid,
    .how-it-works-grid,
    .themes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .offer-intro {
        font-size: 1.125rem;
    }
    
    .pricing-text {
        font-size: 1.25rem;
    }
}
