:root {
    --bg-primary: #FAF9F6;
    --bg-secondary: #F0EFEB;
    --text-main: #2D2D2D;
    --text-muted: #5A5A5A;
    --accent: #8C6A53;
    --accent-hover: #755642;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
}
body.bg-light { background-color: var(--bg-secondary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; }

.navbar {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: transparent; transition: background 0.3s ease; padding: 20px 0;
}
.navbar.scrolled, .navbar.navbar-solid {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-main); text-decoration: none; }
.navbar nav a { margin-left: 30px; text-decoration: none; color: var(--text-main); font-weight: 400; transition: color 0.3s; }
.navbar nav a:hover { color: var(--accent); }

.hero { height: 100vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; text-align: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(45, 45, 45, 0.4); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 4rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.25rem; margin-bottom: 40px; font-weight: 300; }

.btn-primary {
    display: inline-block; background-color: var(--accent); color: #fff;
    padding: 15px 35px; text-decoration: none; border-radius: 4px;
    font-weight: 600; letter-spacing: 1px; transition: background 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background-color: var(--accent-hover); }
.btn-outline {
    display: inline-block; border: 1px solid var(--accent); color: var(--accent);
    padding: 10px 25px; text-decoration: none; border-radius: 4px; font-weight: 600;
    transition: all 0.3s; background: transparent; cursor: pointer;
}
.btn-outline:hover { background-color: var(--accent); color: #fff; }

.about { padding: 120px 0; }
.about-container { display: flex; align-items: center; gap: 60px; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 30px; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); }

.philosophy { padding: 100px 0; }
.text-center { text-align: center; }
.philosophy-text-body { max-width: 800px; margin: 0 auto; font-size: 1.2rem; color: var(--text-muted); line-height: 1.8; }

.testimonial { padding: 80px 0; background: var(--bg-primary); }
.testimonial-card { max-width: 900px; margin: 0 auto; text-align: center; padding: 60px; background: #fff; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); border-top: 4px solid var(--accent); }
.quote { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; color: var(--text-main); margin-bottom: 20px; line-height: 1.5; }
.author { font-weight: 600; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; }

.offers { padding: 100px 0; background-color: var(--bg-secondary); }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.offer-card { background: #fff; padding: 50px 40px; border-radius: 8px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease; display: flex; flex-direction: column; }
.offer-card:hover { transform: translateY(-10px); }
.offer-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.offer-price { font-size: 3rem; font-family: var(--font-heading); color: var(--accent); margin-bottom: 30px; }
.offer-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.offer-features li { padding: 10px 0; border-bottom: 1px solid #eee; color: var(--text-muted); }
.offer-features li:last-child { border-bottom: none; }

.footer { background-color: #1a1a1a; color: #fff; padding: 80px 0 40px; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-end; }
.footer-info h3 { margin-bottom: 20px; color: var(--accent); }
.footer-info p { margin-bottom: 10px; color: #ccc; }
.footer-logo { text-align: right; color: #666; }

.checkout-container { padding: 120px 20px 80px; }
.checkout-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; }
.plan-card, .contact-form, .payment-box { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-top: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); }
.total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.payment-note { font-size: 0.9rem; color: var(--text-muted); text-align: center; margin-bottom: 15px; }

.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 30px; }

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1000; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-content { background: #fff; padding: 50px; border-radius: 8px; text-align: center; max-width: 500px; }

@media (max-width: 768px) {
    .about-container { flex-direction: column; }
    .offers-grid { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; align-items: flex-start; gap: 30px; }
}
