/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors - Exact palette */
    --primary: #7E1F3C;
    --cream: #F2E4D8;
    --gray: #E6E6E6;
    --dark: #53313B;

    /* Text Colors */
    --text-dark: #2d2d2d;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --text-muted: #8a8a8a;

    /* Background */
    --bg-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(126, 31, 60, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 20px 56px;
    font-size: 15px;
}

/* Top Banner */
.top-banner {
    background: var(--primary);
    padding: 12px 20px;
    text-align: center;
}

.top-banner a {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-banner a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: var(--cream);
    padding: 80px 24px 120px;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero .logo {
    max-width: 286px;
    height: auto;
    margin: 0 auto 40px;
}

.hero h1 {
    font-size: 56px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg-white);
    clip-path: ellipse(70% 100% at 50% 100%);
}

/* Goals Section */
.goals-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.section-intro {
    text-align: center;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.goal-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: var(--cream);
}

.goal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.goal-icon svg {
    width: 100%;
    height: 100%;
}

.goal-item span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Message Section */
.message-section {
    padding: 60px 24px;
    background: var(--gray);
    text-align: center;
}

.message-section h3 {
    font-size: 32px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

.philosophy-intro {
    text-align: center;
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 60px;
    font-style: italic;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-card {
    text-align: center;
    padding: 48px 40px;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(83, 49, 59, 0.1);
}

.philosophy-card h2 {
    font-size: 36px;
    color: var(--primary);
    line-height: 1.3;
}

.philosophy-card h2 span {
    color: var(--dark);
    font-style: italic;
}

/* App Preview Section */
.app-preview {
    padding: 100px 24px;
    background: var(--primary);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.app-info {
    color: white;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.app-info h3 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.app-info p {
    font-size: 18px;
    opacity: 0.9;
}

.app-image img {
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Features Section */
.features-section {
    padding: 100px 24px;
    background: var(--cream);
}

.features-title {
    text-align: center;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(83, 49, 59, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Easy App Section */
.easy-app-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

.easy-app-section h3 {
    text-align: center;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.app-feature {
    padding: 36px;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.app-feature:hover {
    background: var(--gray);
}

.feature-num {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.app-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.app-feature p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 24px;
    background: var(--gray);
}

.testimonials-section h3 {
    text-align: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 32px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(83, 49, 59, 0.1);
}

.stars {
    color: var(--primary);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

.pricing-section h3 {
    text-align: center;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 48px 40px;
    background: var(--cream);
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(83, 49, 59, 0.1);
}

.pricing-card:first-child {
    border-color: var(--primary);
}

.pricing-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.price-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.price .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
}

.price .period {
    font-size: 16px;
    color: var(--text-muted);
}

.price-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.refund-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.pricing-card .btn {
    width: 100%;
}

/* Stats Section */
.stats-section {
    padding: 80px 24px;
    background: var(--dark);
}

.stats-section h3 {
    text-align: center;
    font-size: 32px;
    color: white;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* Investment Section */
.investment-section {
    padding: 80px 24px;
    background: var(--cream);
    text-align: center;
}

.investment-section h3 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.investment-content {
    max-width: 600px;
    margin: 0 auto;
}

.investment-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.investment-content .highlight {
    font-weight: 600;
    color: var(--primary);
}

/* Expert Section */
.expert-section {
    padding: 100px 24px;
    background: var(--bg-white);
    text-align: center;
}

.expert-section h3 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.expert-section p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 32px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 24px;
    background: var(--gray);
}

.faq-section h3 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 32px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(83, 49, 59, 0.08);
}

.faq-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 100px 24px;
    background: var(--primary);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.final-cta .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.final-cta .btn-primary:hover {
    background: var(--cream);
    border-color: var(--cream);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    padding: 80px 24px 40px;
    background: var(--dark);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 195px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 44px;
    }

    .goals-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .philosophy-grid,
    .app-features,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 24px 100px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-intro,
    .message-section h3,
    .philosophy-intro {
        font-size: 24px;
    }

    .philosophy-grid,
    .app-features,
    .testimonials-grid,
    .faq-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .app-info h3 {
        font-size: 36px;
    }

    .features-title,
    .easy-app-section h3,
    .pricing-section h3,
    .final-cta h2 {
        font-size: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .btn {
        padding: 14px 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
