/* ============================================================
   Elite Beauty Pro - Elegant, Feminine, Luxurious
   Palette: Soft rose (#e8a0bf) + Deep plum (#4a1942) + Cream (#fdf6f0) + Gold (#c9a84c)
   Vibe: High-end beauty - Charlotte Tilbury / Glossier
   ============================================================ */

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fdf6f0; color: #4a3040; line-height: 1.7; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

/* ========== SUBTLE TEXTURE ========== */
body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
    background: radial-gradient(ellipse at 20% 50%, rgba(232, 160, 191, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
}
body > * { position: relative; z-index: 1; }

/* ========== ANIMATIONS ========== */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2); }
    50% { box-shadow: 0 4px 30px rgba(201, 168, 76, 0.35); }
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.03); }
    66% { transform: translate(-15px, 8px) scale(0.97); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-18px, 12px) scale(0.97); }
    66% { transform: translate(12px, -18px) scale(1.03); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
.stagger > *:nth-child(7) { transition-delay: 0.35s; }

/* ========== NAVIGATION ========== */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(253, 246, 240, 0.85);
    backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid rgba(232, 160, 191, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
    background: rgba(253, 246, 240, 0.96);
    box-shadow: 0 4px 30px rgba(74, 25, 66, 0.06);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px; transition: height 0.3s ease;
}
.nav.scrolled .nav-container { height: 64px; }
.nav-brand a {
    font-size: 1.5rem; font-weight: 700; color: #4a1942;
    font-family: 'Playfair Display', Georgia, serif; letter-spacing: -0.02em;
}
.brand-accent { color: #c9a84c; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: #6a4a60; font-weight: 500; font-size: 0.95rem;
    transition: color 0.3s; position: relative; font-family: 'Lato', sans-serif;
}
.nav-links a:hover { color: #4a1942; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; width: 0; height: 2px;
    background: linear-gradient(90deg, #e8a0bf, #c9a84c);
    transition: width 0.3s, left 0.3s; border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-cta {
    background: linear-gradient(135deg, #c9a84c, #b89540) !important; color: #fff !important;
    padding: 10px 24px !important; border-radius: 24px; font-weight: 700 !important;
    font-family: 'Lato', sans-serif !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    border: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}
.nav-mobile { display: none; }
.menu-toggle { background: none; border: none; color: #4a1942; font-size: 1.5rem; cursor: pointer; padding: 8px; }

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

/* ========== SECTION DIVIDERS ========== */
.section-divider-wide {
    height: 1px; width: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 160, 191, 0.3), rgba(201, 168, 76, 0.3), transparent);
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block; padding: 16px 36px; border-radius: 28px;
    font-weight: 700; font-size: 1rem; color: #fff;
    background: linear-gradient(135deg, #c9a84c, #b89540);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    position: relative; overflow: hidden;
    animation: pulseGlow 3s ease-in-out infinite;
    border: none; cursor: pointer; font-family: 'Lato', sans-serif;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 36px rgba(201, 168, 76, 0.35);
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-secondary {
    display: inline-block; padding: 16px 36px; border-radius: 28px;
    font-weight: 600; font-size: 1rem; color: #4a1942;
    border: 2px solid rgba(232, 160, 191, 0.4); background: rgba(232, 160, 191, 0.06);
    transition: all 0.3s; font-family: 'Lato', sans-serif;
}
.btn-secondary:hover {
    border-color: #e8a0bf; background: rgba(232, 160, 191, 0.12);
    transform: translateY(-3px); box-shadow: 0 6px 24px rgba(232, 160, 191, 0.15);
}
.btn-outline {
    display: inline-block; padding: 14px 32px; border-radius: 24px;
    font-weight: 600; color: #4a1942; border: 1px solid rgba(201, 168, 76, 0.4);
    background: transparent; transition: all 0.3s; font-family: 'Lato', sans-serif;
}
.btn-outline:hover {
    background: rgba(201, 168, 76, 0.08); border-color: #c9a84c;
    transform: translateY(-2px); box-shadow: 0 4px 16px rgba(201, 168, 76, 0.15);
}
.btn-large { padding: 20px 48px; font-size: 1.15rem; }
.btn-submit {
    display: inline-block; padding: 16px 36px; border-radius: 28px;
    font-weight: 700; font-size: 1rem; color: #fff; cursor: pointer;
    background: linear-gradient(135deg, #c9a84c, #b89540); border: none;
    transition: transform 0.3s, box-shadow 0.3s; font-family: 'Lato', sans-serif;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35); }

/* ========== TYPOGRAPHY ========== */
h1 {
    font-size: 3.2rem; font-weight: 700; line-height: 1.12; color: #4a1942;
    margin-bottom: 24px; letter-spacing: -0.02em;
}
h2 {
    font-size: 2.5rem; font-weight: 700; line-height: 1.18; color: #4a1942;
    margin-bottom: 16px; letter-spacing: -0.01em;
}
h3 { font-size: 1.4rem; font-weight: 600; color: #4a1942; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 600; color: #4a1942; margin-bottom: 8px; }
p { color: #6a4a60; }
.accent { color: #e8a0bf; }
.accent-gold { color: #c9a84c; }
.accent-green { color: #5a9a6e; }
.accent-purple { color: #7b4a8a; }
.section-subtitle { font-size: 1.15rem; color: #8a6a7a; text-align: center; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-accent {
    background: linear-gradient(135deg, #e8a0bf, #c9a84c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== ICON TREATMENT ========== */
.icon-glow, .styled-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 160, 191, 0.15), rgba(201, 168, 76, 0.1));
    font-size: 1.8rem; margin-bottom: 20px;
    transition: transform 0.3s;
}
.icon-glow:hover, .styled-icon:hover { transform: scale(1.1); }

/* ========== HERO ========== */
.hero {
    padding: 160px 0 120px; position: relative; overflow: hidden; min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(170deg, #fdf6f0 0%, #f9ece4 30%, #fdf0f5 60%, #fdf6f0 100%);
}
.hero::before {
    content: ''; position: absolute; top: -30%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232, 160, 191, 0.15) 0%, transparent 70%);
    animation: orbFloat1 12s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute; bottom: -20%; left: -5%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    animation: orbFloat2 15s ease-in-out infinite;
}
.hero-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-content h1 { font-size: 3.6rem; margin-bottom: 24px; line-height: 1.1; }
.hero-subtitle { font-size: 1.2rem; color: #8a6a7a; margin-bottom: 36px; line-height: 1.8; max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.proof-item {
    font-weight: 600; font-size: 0.85rem; color: #c9a84c;
    padding: 8px 16px; background: rgba(201, 168, 76, 0.08);
    border-radius: 24px; border: 1px solid rgba(201, 168, 76, 0.15);
    font-family: 'Lato', sans-serif;
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-card {
    background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(232, 160, 191, 0.2);
    border-radius: 24px; padding: 32px; width: 100%; max-width: 380px;
    backdrop-filter: blur(20px); animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(74, 25, 66, 0.06);
}
.card-header { font-size: 0.85rem; color: #8a6a7a; margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-family: 'Lato', sans-serif; }
.card-stat { margin-bottom: 20px; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 700; color: #c9a84c; line-height: 1; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.85rem; color: #8a6a7a; }
.card-progress { background: rgba(232, 160, 191, 0.15); height: 6px; border-radius: 3px; margin-bottom: 16px; overflow: hidden; }
.progress-bar { background: linear-gradient(90deg, #e8a0bf, #c9a84c); height: 100%; border-radius: 3px; }
.card-footer { font-size: 0.85rem; color: #8a6a7a; }

/* ========== SECTIONS ========== */
.problem { padding: 120px 0; background: #faf2ec; }
.problem h2 { text-align: center; margin-bottom: 56px; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.problem-item {
    text-align: center; padding: 40px 28px;
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03);
}
.problem-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(74, 25, 66, 0.08);
}
.problem-item h3 { color: #c44569; margin-bottom: 12px; }
.problem-item p { color: #8a6a7a; line-height: 1.7; font-size: 0.95rem; }

.solution { padding: 120px 0; }
.solution h2 { text-align: center; margin-bottom: 12px; }
.solution-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 56px 0; }
.solution-card {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px; padding: 36px; position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03);
}
.solution-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(74, 25, 66, 0.08); }
.solution-card.featured { border-color: rgba(201, 168, 76, 0.3); box-shadow: 0 4px 30px rgba(201, 168, 76, 0.08); }
.card-badge {
    position: absolute; top: -12px; left: 30px;
    background: linear-gradient(135deg, #e8a0bf, #c9a84c); color: #fff;
    padding: 6px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
    font-family: 'Lato', sans-serif;
}
.solution-card h3 { margin-bottom: 12px; }
.solution-card p { color: #8a6a7a; margin-bottom: 20px; }
.card-results { margin-bottom: 24px; padding: 16px; background: rgba(232, 160, 191, 0.08); border-radius: 16px; text-align: center; }
.result-stat { display: block; font-size: 1.6rem; font-weight: 700; color: #c9a84c; line-height: 1; font-family: 'Playfair Display', serif; }
.result-desc { font-size: 0.85rem; color: #8a6a7a; }
.card-benefits li {
    padding: 10px 0 10px 28px; color: #6a4a60; position: relative;
    border-bottom: 1px solid rgba(232, 160, 191, 0.08);
}
.card-benefits li:last-child { border-bottom: none; }
.card-benefits li::before { content: "\2713"; position: absolute; left: 0; color: #5a9a6e; font-weight: 700; }
.solution-guarantee {
    text-align: center; padding: 36px;
    background: rgba(90, 154, 110, 0.06); border: 1px solid rgba(90, 154, 110, 0.15);
    border-radius: 24px; margin-top: 40px;
}
.solution-guarantee h4 { color: #5a9a6e; margin-bottom: 12px; font-size: 1.2rem; }
.solution-guarantee p { color: #8a6a7a; font-size: 1.05rem; }

.services-preview { padding: 120px 0; background: #faf2ec; }
.services-preview h2 { text-align: center; margin-bottom: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin: 56px 0; }
.services-grid-detailed { display: grid; grid-template-columns: 1fr; gap: 24px; margin: 56px 0; }
.service-item, .service-card, .service-card-detailed {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px; padding: 36px; text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03);
}
.service-item:hover, .service-card:hover, .service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(74, 25, 66, 0.08);
}
.service-item h3, .service-card h3 { margin-bottom: 12px; }
.service-item p, .service-card p { color: #8a6a7a; line-height: 1.7; font-size: 0.95rem; }
.services-cta { text-align: center; margin-top: 48px; }
.service-header { margin-bottom: 16px; }
.service-details, .service-list, .service-summary, .service-guarantee, .service-features { margin-top: 12px; }
.service-details li, .service-list li, .service-features li {
    padding: 8px 0 8px 24px; color: #6a4a60; position: relative;
}
.service-details li::before, .service-list li::before, .service-features li::before {
    content: "\2713"; position: absolute; left: 0; color: #5a9a6e; font-weight: 700;
}

.testimonials { padding: 120px 0; }
.testimonials h2 { text-align: center; margin-bottom: 56px; }
.steps-flow { max-width: 800px; margin: 0 auto; position: relative; }
.steps-flow::before {
    content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, #e8a0bf, #c9a84c);
}
.deliver-step { display: flex; gap: 24px; margin-bottom: 48px; position: relative; }
.deliver-step:last-child { margin-bottom: 0; }
.step-num {
    flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #e8a0bf, #c9a84c);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.4rem; color: #fff; position: relative; z-index: 1;
    box-shadow: 0 4px 20px rgba(232, 160, 191, 0.3);
    font-family: 'Lato', sans-serif;
}
.step-body {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px; padding: 28px; flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03);
}
.step-body:hover { transform: translateX(8px); box-shadow: 0 8px 30px rgba(74, 25, 66, 0.06); }
.step-body h3 { color: #c9a84c; margin-bottom: 8px; font-size: 1.2rem; }
.step-body p { color: #8a6a7a; line-height: 1.7; font-size: 0.95rem; }
.social-proof-note { text-align: center; margin-top: 40px; }
.social-proof-note p { color: #a08a98; font-style: italic; }
.social-proof-note a { color: #c9a84c; font-weight: 600; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; }
.testimonial { background: #fff; border: 1px solid rgba(232, 160, 191, 0.12); border-radius: 24px; padding: 32px; box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03); }
.testimonial-content p { color: #6a4a60; font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author strong { color: #4a1942; }
.testimonial-author span { color: #a08a98; font-size: 0.9rem; }

/* Steps alt */
.steps-section { padding: 120px 0; }
.steps-wrapper { max-width: 800px; margin: 0 auto; }
.step-card {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px; padding: 32px; margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03); transition: all 0.3s;
}
.step-card:hover { transform: translateX(8px); box-shadow: 0 8px 30px rgba(74, 25, 66, 0.06); }
.step-number { color: #c9a84c; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Lato', sans-serif; }
.step-title { color: #4a1942; font-size: 1.2rem; font-weight: 700; margin: 8px 0; }
.step-headline { color: #c9a84c; font-weight: 700; margin-bottom: 8px; }

/* ========== FAQ ========== */
.faq { padding: 120px 0; background: #faf2ec; }
.faq h2 { text-align: center; margin-bottom: 56px; }
.faq-list, .faq-grid { max-width: 800px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.faq-item {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.1);
    border-radius: 20px; margin-bottom: 12px; overflow: hidden;
    transition: box-shadow 0.3s; box-shadow: 0 2px 10px rgba(74, 25, 66, 0.02);
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(74, 25, 66, 0.06); }
.faq-question {
    padding: 22px 28px; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    font-weight: 600; color: #4a1942; font-size: 1.05rem; user-select: none; transition: color 0.2s;
    font-family: 'Playfair Display', serif;
}
.faq-question:hover { color: #c9a84c; }
.faq-arrow { font-size: 1.2rem; color: #c9a84c; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s; padding: 0 28px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }
.faq-answer p { color: #8a6a7a; line-height: 1.7; }
.faq-item h3 { color: #c9a84c; margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.faq-item p { color: #8a6a7a; line-height: 1.7; }

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 120px 0; text-align: center; position: relative;
    background: linear-gradient(170deg, #fdf6f0, #fdf0f5, #fdf6f0);
}
.final-cta h2 { margin-bottom: 16px; }
.final-cta > .container > p { font-size: 1.15rem; color: #8a6a7a; margin-bottom: 36px; }
.cta-guarantee {
    margin-top: 28px; padding: 24px 32px;
    background: rgba(201, 168, 76, 0.06); border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px; display: inline-block;
}
.cta-guarantee p { color: #6a4a60; font-size: 1rem; margin: 0; }
.cta-box, .cta-section {
    padding: 60px 40px; text-align: center; margin: 40px 0;
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px; box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03);
}
.cta-box h2, .cta-box h3, .cta-section h2, .cta-section h3 { margin-bottom: 16px; }
.cta-box p, .cta-section p { color: #8a6a7a; margin-bottom: 24px; }
.cta-btn { display: inline-block; }

/* ========== FOOTER ========== */
.footer { background: #4a1942; padding: 0; }
.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8a0bf, #c9a84c, transparent);
}
.footer-inner { padding: 60px 0 30px; }
.footer-content {
    display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; margin-bottom: 40px;
}
.footer-brand h3 { margin-bottom: 12px; font-size: 1.3rem; color: #fff; }
.footer-brand p { color: rgba(255, 255, 255, 0.5); line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-column h4 { color: #e8a0bf; font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: rgba(255, 255, 255, 0.5); transition: color 0.3s; font-size: 0.9rem; }
.footer-column ul li a:hover { color: #c9a84c; }
.footer-bottom { border-top: 1px solid rgba(232, 160, 191, 0.15); padding-top: 24px; text-align: center; }
.footer-bottom p { color: rgba(255, 255, 255, 0.3); font-size: 0.85rem; }

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 160px 0 80px; text-align: center; position: relative;
    background: linear-gradient(170deg, #fdf6f0, #fdf0f5);
    min-height: 50vh; display: flex; align-items: center; justify-content: center;
}
.page-header .container { width: 100%; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 1.2rem; color: #8a6a7a; max-width: 600px; margin: 0 auto; }

/* ========== CONTACT ========== */
.contact { padding: 80px 0; }
.contact-content, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px; padding: 40px;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03);
}
.contact-info { padding: 20px 0; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; color: #4a1942; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; background: #fdf6f0;
    border: 1px solid rgba(232, 160, 191, 0.2); border-radius: 16px;
    color: #4a1942; font-size: 1rem; font-family: 'Lato', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: #e8a0bf;
    box-shadow: 0 0 0 4px rgba(232, 160, 191, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { text-align: center; margin-top: 8px; }

/* ========== BLOG ========== */
.blog-header {
    padding: 140px 0 40px; text-align: center;
    background: linear-gradient(170deg, #fdf6f0, #fdf0f5);
}
.blog-header h1 { margin-bottom: 12px; }
.blog-header p { color: #8a6a7a; font-size: 1.1rem; }
.articles-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px; padding: 60px 0; max-width: 1200px; margin: 0 auto;
}
.article-card {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.1);
    border-radius: 24px; padding: 32px; display: flex; flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03);
}
.article-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(74, 25, 66, 0.08); }
.article-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.article-card h3 a { color: #4a1942; transition: color 0.2s; }
.article-card h3 a:hover { color: #c9a84c; }
.article-card p { color: #8a6a7a; font-size: 0.95rem; line-height: 1.7; flex-grow: 1; }
.article-card .meta { font-size: 0.85rem; color: #a08a98; margin-bottom: 12px; }
.article-card .read-more { color: #c9a84c; font-weight: 600; margin-top: 16px; display: inline-block; transition: color 0.2s; }
.article-card .read-more:hover { color: #e8a0bf; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px; font-family: 'Lato', sans-serif; }
.badge-gold { background: rgba(201, 168, 76, 0.12); color: #c9a84c; }
.badge-green { background: rgba(90, 154, 110, 0.12); color: #5a9a6e; }
.badge-blue { background: rgba(100, 130, 180, 0.12); color: #6482b4; }
.badge-purple { background: rgba(123, 74, 138, 0.12); color: #7b4a8a; }
.pillar-badge { background: rgba(201, 168, 76, 0.12); color: #c9a84c; }
.pillar-feature { border-color: rgba(201, 168, 76, 0.2); }

.article-header {
    padding: 140px 0 40px; text-align: center;
    background: linear-gradient(170deg, #fdf6f0, #fdf0f5);
}
.article-header h1 { font-size: 2.4rem; max-width: 800px; margin: 0 auto 16px; }
.article-header .meta { color: #a08a98; font-size: 0.95rem; }
.article-content {
    max-width: 760px; margin: 0 auto; padding: 60px 24px 80px;
    font-size: 1.05rem; line-height: 1.85; color: #6a4a60;
}
.article-content h2 { font-size: 1.8rem; margin: 48px 0 20px; color: #4a1942; }
.article-content h3 { font-size: 1.3rem; margin: 36px 0 16px; color: #5a3050; }
.article-content p { margin-bottom: 20px; color: #6a4a60; }
.article-content a { color: #c9a84c; text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: #e8a0bf; }
.article-content ul, .article-content ol { margin: 16px 0 20px 24px; }
.article-content li { margin-bottom: 8px; color: #6a4a60; list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content blockquote {
    border-left: 3px solid #e8a0bf; padding: 16px 24px; margin: 24px 0;
    background: rgba(232, 160, 191, 0.06); border-radius: 0 16px 16px 0;
    font-style: italic; color: #8a6a7a;
}
.article-content strong { color: #4a1942; }
.toc {
    background: rgba(232, 160, 191, 0.06); border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 20px; padding: 24px 32px; margin-bottom: 40px;
}
.toc h3 { color: #c9a84c; font-size: 1rem; margin-bottom: 12px; }
.toc ol { margin-left: 20px; }
.toc li { margin-bottom: 6px; }
.toc a { color: #c9a84c; text-decoration: none; }
.toc a:hover { text-decoration: underline; }
.inline-cta {
    background: rgba(201, 168, 76, 0.06); border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px; padding: 32px; text-align: center; margin: 40px 0;
}
.inline-cta h3 { color: #4a1942; margin-bottom: 12px; }
.inline-cta p { color: #8a6a7a; margin-bottom: 20px; }

/* ========== MISC ========== */
.green { color: #5a9a6e; } .red { color: #c44569; } .pink { color: #e8a0bf; } .purple { color: #7b4a8a; }
.positive { color: #5a9a6e; } .negative { color: #c44569; }
.why-choose-us { padding: 80px 0; }
.free-audit, .free-audit-box {
    padding: 40px; background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15); border-radius: 24px;
    text-align: center; margin: 40px 0;
}
.free-audit h3, .free-audit-box h3 { color: #4a1942; margin-bottom: 12px; }
.free-audit p, .free-audit-box p { color: #8a6a7a; margin-bottom: 20px; }
.free-audit-cta { margin-top: 16px; }
.free-audit-note { font-size: 0.9rem; color: #a08a98; margin-top: 12px; }
.audit-benefits li { padding: 8px 0 8px 24px; color: #6a4a60; position: relative; }
.audit-benefits li::before { content: "\2713"; position: absolute; left: 0; color: #5a9a6e; font-weight: 700; }
.founder { padding: 80px 0; }
.founder-inner { display: flex; gap: 40px; align-items: center; max-width: 800px; margin: 0 auto; }
.founder-avatar {
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(135deg, #e8a0bf, #c9a84c);
    display: flex; align-items: center; justify-content: center; font-size: 3rem; flex-shrink: 0;
}
.our-story, .our-mission { padding: 80px 0; }
.about-content, .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text p, .story-text p, .story-content p { color: #8a6a7a; line-height: 1.8; margin-bottom: 16px; }
.story-list li { padding: 8px 0 8px 24px; color: #6a4a60; position: relative; }
.story-list li::before { content: "\2713"; position: absolute; left: 0; color: #5a9a6e; font-weight: 700; }
.mission-grid, .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.mission-item, .value-card, .value-item {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px; padding: 32px; text-align: center;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}
.mission-item:hover, .value-card:hover, .value-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(74, 25, 66, 0.06); }
.values-section { padding: 80px 0; }
.how-it-works { padding: 80px 0; }
.phase-section, .services-phase { padding: 80px 0; }
.phase-badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 16px; font-family: 'Lato', sans-serif; }
.phase-header { margin-bottom: 24px; }
.phase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.phase-content, .phase-details, .phase-description { margin-top: 16px; }
.phase-list li, .phase-highlight li, .expect-list li {
    padding: 8px 0 8px 24px; color: #6a4a60; position: relative;
}
.phase-list li::before, .phase-highlight li::before, .expect-list li::before {
    content: "\2713"; position: absolute; left: 0; color: #5a9a6e; font-weight: 700;
}
.phase-alt { background: #faf2ec; }
.phase-number { color: #c9a84c; font-weight: 700; }
.phase-intro { color: #8a6a7a; margin-bottom: 24px; }
.info-card {
    background: #fff; border: 1px solid rgba(232, 160, 191, 0.12);
    border-radius: 24px; padding: 32px; margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03); transition: box-shadow 0.3s;
}
.info-card:hover { box-shadow: 0 8px 30px rgba(74, 25, 66, 0.06); }
.guarantee-content, .guarantee-item {
    background: rgba(90, 154, 110, 0.06); border: 1px solid rgba(90, 154, 110, 0.12);
    border-radius: 24px; padding: 32px;
}
.stats-card, .impact-stat {
    background: rgba(201, 168, 76, 0.06); border-radius: 20px; padding: 24px; text-align: center;
}
.flow-arrow { text-align: center; font-size: 2rem; color: #e8a0bf; padding: 16px 0; }
.arrow-line { width: 2px; height: 40px; background: linear-gradient(to bottom, #e8a0bf, transparent); margin: 0 auto; }
.arrow-icon { color: #e8a0bf; font-size: 1.5rem; }
.arrow-label { color: #a08a98; font-size: 0.85rem; }
.label { font-size: 0.8rem; font-weight: 600; color: #c9a84c; text-transform: uppercase; letter-spacing: 0.1em; }
.icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.item { margin-bottom: 16px; }
.narrow { max-width: 800px; margin: 0 auto; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.comparison-item { padding: 36px; border-radius: 24px; background: #fff; border: 1px solid rgba(232, 160, 191, 0.12); box-shadow: 0 4px 20px rgba(74, 25, 66, 0.03); }
.comparison-list li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid rgba(232, 160, 191, 0.06); color: #6a4a60; }
.comparison-list li:last-child { border-bottom: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(253, 246, 240, 0.98); backdrop-filter: blur(24px);
        flex-direction: column; padding: 24px; gap: 20px;
        transform: translateY(-10px); opacity: 0; visibility: hidden;
        transition: all 0.3s; border-bottom: 1px solid rgba(232, 160, 191, 0.1);
    }
    .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-mobile { display: block; }
    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-proof { justify-content: center; }
    .hero-visual { display: none; }
    .solution-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-flow::before { left: 20px; }
    .step-num { width: 40px; height: 40px; font-size: 1rem; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { grid-template-columns: 1fr; gap: 24px; }
    .about-content, .contact-content, .contact-grid, .story-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .founder-inner { flex-direction: column; text-align: center; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .problem, .solution, .services-preview, .testimonials, .faq, .final-cta { padding: 80px 0; }
    .articles-grid { grid-template-columns: 1fr; padding: 40px 24px; }
    .article-content { padding: 40px 20px 60px; }
    .article-header h1 { font-size: 1.8rem; }
    .page-header { padding: 120px 0 60px; min-height: auto; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .problem-grid { grid-template-columns: 1fr; }
    .phase-grid { grid-template-columns: 1fr; }
}
