:root {
    --color-primary: #4DA8FF; /* Sky Blue */
    --color-primary-dark: #3b8ce0;
    --color-secondary: #FFD84D; /* Sunshine Yellow */
    --color-accent: #FF7B54; /* Coral Orange */
    --color-accent-2: #6ED7A6; /* Mint Green */
    --color-cream: #FFF9F0; /* Soft Cream */
    --color-charcoal: #333333;
    --color-white: #ffffff;
    
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--color-charcoal); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.bg-cream { background-color: var(--color-cream); }
.mt-2 { margin-top: 1.5rem; }

/* Typography */
h1, h2, h3, h4, .logo a { font-family: var(--font-heading); color: var(--color-primary); }
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}
.btn-primary { background: var(--color-accent); color: var(--color-white); box-shadow: 0 4px 15px rgba(255, 123, 84, 0.4); }
.btn-primary:hover { background: #e86742; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 123, 84, 0.5); }
.btn-outline { border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.4rem; }
.btn-full { width: 100%; }

/* Header */
.site-header { padding: 1.5rem 0; position: sticky; top: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 2rem; font-weight: 800; color: var(--color-accent); letter-spacing: -1px; }
.main-nav { display: flex; gap: 2rem; align-items: center; }
.main-nav a:not(.btn) { font-weight: 500; transition: color 0.2s; }
.main-nav a:not(.btn):hover { color: var(--color-accent); }

/* Hero */
.hero { padding: 6rem 0; background: linear-gradient(135deg, var(--color-cream) 0%, #fff 100%); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.lead { font-size: 1.25rem; color: #555; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; }
.hero-image img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: rotate(2deg); }

/* Why Matter */
.why-matter { padding: 5rem 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.benefit-card { background: #fff; padding: 2.5rem; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s; }
.benefit-card:hover { transform: translateY(-5px); }
.benefit-icon { font-size: 3rem; margin-bottom: 1rem; }
.benefit-card p { font-weight: 500; font-size: 1.1rem; }

/* Popular Themes */
.popular-themes { padding: 5rem 0; }
.themes-pill-container { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: 900px; margin: 0 auto; }
.theme-pill { background: var(--color-secondary); color: var(--color-charcoal); padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 600; font-family: var(--font-heading); font-size: 1.1rem; transition: all 0.3s; cursor: default; }
.theme-pill:hover { transform: scale(1.05); background: var(--color-accent); color: #fff; }

/* Portfolio */
.portfolio { padding: 5rem 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.portfolio-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s; }
.portfolio-card:hover { transform: translateY(-10px); }
.portfolio-card img { width: 100%; height: 250px; object-fit: cover; }
.portfolio-info { padding: 1.5rem; text-align: center; }
.portfolio-info h3 { margin-bottom: 0.2rem; color: var(--color-charcoal); }
.portfolio-info span { color: var(--color-primary); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Process */
.process { padding: 5rem 0; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; position: relative; }
.step-card { text-align: center; position: relative; }
.step-number { width: 60px; height: 60px; background: var(--color-accent-2); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 1.5rem; box-shadow: 0 5px 15px rgba(110, 215, 166, 0.4); }
.step-card h3 { color: var(--color-charcoal); font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.95rem; color: #666; }

/* Pricing */
.pricing { padding: 5rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: start; }
.pricing-card { background: #fff; padding: 3rem 2rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; position: relative; border: 2px solid transparent; transition: all 0.3s; }
.pricing-card.popular { border-color: var(--color-accent); transform: scale(1.05); box-shadow: 0 20px 40px rgba(255, 123, 84, 0.15); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--color-accent); color: #fff; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; }
.price { font-size: 3rem; font-weight: 800; color: var(--color-primary); font-family: var(--font-heading); margin: 1rem 0 0.5rem; }
.purpose { color: #666; font-style: italic; margin-bottom: 2rem; }
.features { list-style: none; margin-bottom: 2.5rem; text-align: left; }
.features li { margin-bottom: 1rem; padding-left: 1.5rem; position: relative; }
.features li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent-2); font-weight: bold; }

/* Testimonials */
.testimonials { padding: 5rem 0; background: var(--color-primary); color: #fff; }
.testimonials h2 { color: #fff; }
.testimonial-carousel-container { position: relative; display: flex; align-items: center; gap: 20px; }
.scrolling-wrapper { flex: 1; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.scrolling-wrapper::-webkit-scrollbar { display: none; }
.scrolling-content { display: flex; gap: 20px; }
.testimonial-card { flex: 0 0 100%; scroll-snap-align: center; background: rgba(255,255,255,0.1); padding: 2.5rem; border-radius: 20px; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); }
@media (min-width: 768px) { .testimonial-card { flex: 0 0 calc(50% - 10px); } }
@media (min-width: 1024px) { .testimonial-card { flex: 0 0 calc(33.333% - 13.333px); } }
.stars { color: var(--color-secondary); margin-bottom: 1rem; font-size: 1.25rem; }
.quote { font-size: 1.1rem; font-style: italic; margin-bottom: 1.5rem; line-height: 1.8; }
.author { font-weight: 600; font-family: var(--font-heading); color: var(--color-secondary); }
.testimonial-btn { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.4); width: 44px; height: 44px; border-radius: 50%; font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.3s ease; flex-shrink: 0; }
.testimonial-btn:hover { background: #fff; color: var(--color-primary); border-color: #fff; transform: scale(1.05); }

/* FAQ */
.faq { padding: 5rem 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.03); overflow: hidden; }
.faq-question { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h3 { margin: 0; font-size: 1.2rem; color: var(--color-charcoal); }
.faq-toggle { font-size: 1.5rem; font-weight: bold; color: var(--color-primary); transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 500px; }

/* Final CTA */
.final-cta { padding: 6rem 0; background-image: url('../assets/images/hero-bg.png'); background-size: cover; background-position: center; position: relative; text-align: center; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: rgba(255, 249, 240, 0.9); }
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content p { font-size: 1.2rem; margin-bottom: 2rem; color: #444; }

/* Footer */
.site-footer { background: var(--color-charcoal); color: #ddd; padding: 4rem 0 2rem; text-align: center; }
.footer-info h3 { color: #fff; margin-bottom: 1rem; }
.footer-info a { color: var(--color-secondary); }
.footer-copyright { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Checkout */
.checkout-page { padding: 4rem 0; }
.checkout-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; background: #fff; padding: 3rem; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select { width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(77, 168, 255, 0.1); }
.order-summary-card { background: var(--color-cream); padding: 2rem; border-radius: 15px; border: 2px solid var(--color-primary); }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 1.1rem; }
.summary-item.total { padding-top: 1rem; border-top: 2px dashed #ddd; font-size: 1.3rem; color: var(--color-primary); font-weight: bold; }
.hidden { display: none !important; }

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .pricing-card.popular { transform: none; }
    .checkout-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero { padding: 4rem 0; }
    .form-row { grid-template-columns: 1fr; }
}
