/* ========================================
   HEBAMME LEIPZIG – SHARED STYLES
   ======================================== */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;1,6..12,300;1,6..12,400&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
    --color-cream: #FDF8F0;
    --color-warm-white: #FEFCF9;
    --color-beige: #F0E6D6;
    --color-beige-dark: #D4C4AE;
    --color-sage: #A8B5A0;
    --color-sage-light: #C5D1BE;
    --color-sage-dark: #7A8F72;
    --color-sage-deep: #5C7054;
    --color-rose: #D4A0A0;
    --color-rose-light: #E8C4C4;
    --color-rose-dark: #B87878;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-text-heading: #2C2C2C;
    --color-white: #FFFFFF;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.04);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.06);
    --shadow-elevated: 0 16px 60px rgba(0,0,0,0.08);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-warm-white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--color-text-heading); line-height: 1.2; font-weight: 400; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 500; }
p { font-size: clamp(0.95rem, 1.1vw, 1.05rem); color: var(--color-text-light); }

.section-label {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-sage-dark);
    margin-bottom: var(--space-sm); display: inline-block;
}
.section-heading { margin-bottom: var(--space-md); }
.section-subtitle { max-width: 600px; margin-bottom: var(--space-xl); font-size: clamp(1rem, 1.2vw, 1.1rem); line-height: 1.8; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.section-padding { padding: var(--space-3xl) 0; }
section[id] { scroll-margin-top: 80px; }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2.2rem; background: var(--color-sage-deep); color: var(--color-white);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.03em; border-radius: var(--radius-full);
    transition: var(--transition-smooth); box-shadow: 0 4px 15px rgba(92,112,84,0.25);
    position: relative; overflow: hidden;
}
.btn-primary::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); opacity: 0; transition: var(--transition-fast); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(92,112,84,0.35); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.9rem 2rem; background: transparent; color: var(--color-sage-deep);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.03em; border: 1.5px solid var(--color-sage);
    border-radius: var(--radius-full); transition: var(--transition-smooth);
}
.btn-secondary:hover { background: var(--color-sage-deep); color: var(--color-white); border-color: var(--color-sage-deep); transform: translateY(-2px); }

.btn-arrow { transition: transform var(--transition-fast); }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* ── NAVIGATION ── */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.2rem 0; transition: var(--transition-smooth); }
.nav.scrolled { background: rgba(253,248,240,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 0.8rem 0; box-shadow: 0 1px 20px rgba(0,0,0,0.04); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--color-text-heading); letter-spacing: -0.02em; }
.nav-logo span { color: var(--color-sage-deep); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 400; color: var(--color-text); position: relative; padding: 0.2rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--color-sage-deep); transition: var(--transition-fast); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 0.7rem 1.6rem !important; background: var(--color-sage-deep); color: var(--color-white) !important; border-radius: var(--radius-full); font-size: 0.85rem !important; font-weight: 500 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(92,112,84,0.3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; z-index: 1001; }
.nav-toggle span { width: 100%; height: 2px; background: var(--color-text-heading); border-radius: 2px; transition: var(--transition-fast); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (HOMEPAGE) ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--color-cream); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(253,248,240,0.95) 0%, rgba(253,248,240,0.7) 40%, rgba(197,209,190,0.3) 100%); }
.hero-deco { position: absolute; border-radius: 50%; opacity: 0.12; z-index: 0; }
.hero-deco-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--color-sage-light), transparent); top: -150px; right: -100px; }
.hero-deco-2 { width: 300px; height: 300px; background: radial-gradient(circle, var(--color-rose-light), transparent); bottom: -50px; left: -50px; }
.hero-deco-3 { width: 200px; height: 200px; background: radial-gradient(circle, var(--color-beige), transparent); top: 30%; left: 10%; opacity: 0.08; }

.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; padding: var(--space-3xl) 0; }
.hero-text { max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; background: rgba(168,181,160,0.15); border: 1px solid rgba(168,181,160,0.25); border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 500; color: var(--color-sage-dark); margin-bottom: var(--space-lg); letter-spacing: 0.04em; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--color-sage); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero h1 { margin-bottom: var(--space-md); font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--color-sage-deep); }
.hero-subtitle { font-size: clamp(1.05rem,1.3vw,1.15rem); line-height: 1.8; color: var(--color-text-light); margin-bottom: var(--space-lg); max-width: 480px; }
.hero-buttons { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }
.hero-trust { margin-top: var(--space-xl); display: flex; align-items: center; gap: var(--space-md); }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--color-text-light); }
.hero-trust-icon { width: 32px; height: 32px; background: var(--color-sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.hero-image-wrapper { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-main { width: 440px; height: 540px; border-radius: var(--radius-xl); overflow: hidden; position: relative; box-shadow: var(--shadow-elevated); }
.hero-image-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, var(--color-beige) 0%, var(--color-sage-light) 50%, var(--color-rose-light) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--color-sage-deep); font-size: 0.85rem; text-align: center; padding: 2rem; }
.hero-image-placeholder svg { width: 64px; height: 64px; opacity: 0.5; }
.hero-float-card { position: absolute; background: var(--color-white); border-radius: var(--radius-md); padding: 1rem 1.4rem; box-shadow: var(--shadow-medium); z-index: 2; animation: float 4s ease-in-out infinite; }
.hero-float-card-1 { top: 60px; left: -40px; }
.hero-float-card-2 { bottom: 80px; right: -30px; animation-delay: 2s; }
.float-card-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.float-card-text { font-size: 0.78rem; font-weight: 600; color: var(--color-text-heading); }
.float-card-sub { font-size: 0.72rem; color: var(--color-text-light); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ── SUBPAGE HERO ── */
.subpage-hero {
    padding: calc(var(--space-3xl) + 2rem) 0 var(--space-2xl);
    background: var(--color-cream); position: relative; overflow: hidden;
}
.subpage-hero .hero-deco-1 { width: 400px; height: 400px; background: radial-gradient(circle, var(--color-sage-light), transparent); top: -120px; right: -80px; position: absolute; border-radius: 50%; opacity: 0.12; }
.subpage-hero .hero-deco-2 { width: 250px; height: 250px; background: radial-gradient(circle, var(--color-rose-light), transparent); bottom: -60px; left: -60px; position: absolute; border-radius: 50%; opacity: 0.12; }
.subpage-hero-content { position: relative; z-index: 1; max-width: 780px; }
.subpage-hero .breadcrumb { font-size: 0.82rem; color: var(--color-text-light); margin-bottom: var(--space-md); }
.subpage-hero .breadcrumb a { color: var(--color-sage-deep); }
.subpage-hero .breadcrumb a:hover { text-decoration: underline; }
.subpage-hero h1 { margin-bottom: var(--space-md); font-weight: 300; }
.subpage-hero h1 em { font-style: italic; color: var(--color-sage-deep); }
.subpage-hero-intro { font-size: clamp(1.05rem,1.3vw,1.15rem); line-height: 1.8; color: var(--color-text-light); max-width: 640px; margin-bottom: var(--space-lg); }
.subpage-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.subpage-tag { padding: 0.4rem 1rem; background: rgba(168,181,160,0.15); border: 1px solid rgba(168,181,160,0.2); border-radius: var(--radius-full); font-size: 0.78rem; color: var(--color-sage-dark); font-weight: 500; }

/* ── CONTENT SECTIONS (SUBPAGES) ── */
.content-section { background: var(--color-warm-white); }
.content-section:nth-child(even) { background: var(--color-cream); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { margin-bottom: var(--space-md); }
.content-text p { margin-bottom: var(--space-sm); line-height: 1.9; }
.content-text p:last-child { margin-bottom: 0; }
.content-image-frame { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-medium); }
.content-image-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, var(--color-beige) 0%, var(--color-sage-light) 50%, var(--color-rose-light) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; color: var(--color-sage-deep); font-size: 0.82rem; }

/* Full width prose */
.prose-section { max-width: 780px; margin: 0 auto; }
.prose-section h2 { margin-bottom: var(--space-md); }
.prose-section h3 { margin-top: var(--space-lg); margin-bottom: var(--space-sm); font-size: 1.4rem; }
.prose-section p { margin-bottom: var(--space-sm); line-height: 1.9; font-size: 1rem; }

/* ── INLINE CTA BANNER ── */
.inline-cta {
    background: linear-gradient(135deg, var(--color-sage-deep) 0%, var(--color-sage-dark) 100%);
    border-radius: var(--radius-lg); padding: var(--space-xl); text-align: center;
    margin: var(--space-xl) 0; position: relative; overflow: hidden;
}
.inline-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent); border-radius: 50%; }
.inline-cta h3 { color: var(--color-white); margin-bottom: var(--space-sm); font-size: 1.6rem; position: relative; }
.inline-cta p { color: rgba(255,255,255,0.8); margin-bottom: var(--space-md); position: relative; max-width: 500px; margin-left: auto; margin-right: auto; }
.inline-cta .btn-primary { background: var(--color-white); color: var(--color-sage-deep); box-shadow: 0 4px 15px rgba(0,0,0,0.15); position: relative; }
.inline-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ── ABOUT ── */
.about { background: var(--color-warm-white); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-2xl); align-items: center; }
.about-image-area { position: relative; }
.about-image-frame { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-medium); }
.about-image-placeholder { width: 100%; height: 100%; background: linear-gradient(170deg, var(--color-sage-light) 0%, var(--color-beige) 60%, var(--color-rose-light) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; color: var(--color-sage-deep); font-size: 0.82rem; }
.about-accent-shape { position: absolute; width: 150px; height: 150px; background: var(--color-sage-light); border-radius: 50%; opacity: 0.2; top: -30px; right: -30px; z-index: -1; }
.about-text h2 { margin-bottom: var(--space-md); }
.about-intro { font-size: clamp(1rem,1.2vw,1.1rem); font-family: var(--font-display); font-style: italic; color: var(--color-sage-dark); line-height: 1.7; margin-bottom: var(--space-md); font-weight: 400; }
.about-description { margin-bottom: var(--space-md); line-height: 1.9; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid var(--color-beige); }
.about-stat { text-align: center; }
.about-stat-number { font-family: var(--font-display); font-size: 2.2rem; color: var(--color-sage-deep); line-height: 1; margin-bottom: 0.3rem; }
.about-stat-label { font-size: 0.78rem; color: var(--color-text-light); letter-spacing: 0.02em; }

/* ── WHY BECAME MIDWIFE (NEW) ── */
.story-section { background: var(--color-cream); position: relative; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-2xl); align-items: center; }
.story-text .section-label { color: var(--color-sage-dark); }
.story-quote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--color-sage-deep); line-height: 1.6; padding: var(--space-md); border-left: 3px solid var(--color-sage); margin: var(--space-md) 0; background: rgba(168,181,160,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ── SERVICES ── */
.services { background: var(--color-cream); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; top: 0; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(168,181,160,0.1), transparent); border-radius: 50%; }
.services-header { text-align: center; margin-bottom: var(--space-2xl); }
.services-header .section-subtitle { margin-left: auto; margin-right: auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-md); }
.service-card { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-lg); position: relative; overflow: hidden; transition: var(--transition-smooth); border: 1px solid rgba(212,196,174,0.2); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--color-sage), var(--color-sage-light)); transform: scaleX(0); transform-origin: left; transition: var(--transition-smooth); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--color-sage-light), rgba(168,181,160,0.3)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); font-size: 1.5rem; }
.service-card h3 { margin-bottom: var(--space-sm); font-size: 1.3rem; }
.service-card p { font-size: 0.92rem; line-height: 1.8; }
.service-tag { display: inline-block; margin-top: var(--space-sm); padding: 0.3rem 0.9rem; background: rgba(168,181,160,0.12); border-radius: var(--radius-full); font-size: 0.75rem; color: var(--color-sage-dark); font-weight: 500; }
.service-card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: var(--space-sm); font-size: 0.85rem; color: var(--color-sage-deep); font-weight: 500; }
.service-card-link:hover { gap: 0.7rem; }

/* ── TESTIMONIALS (NEW) ── */
.testimonials { background: var(--color-warm-white); position: relative; }
.testimonials-header { text-align: center; margin-bottom: var(--space-2xl); }
.testimonials-header .section-subtitle { margin-left: auto; margin-right: auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); }
.testimonial-card { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-lg); border: 1px solid rgba(212,196,174,0.15); position: relative; transition: var(--transition-smooth); }
.testimonial-card:hover { box-shadow: var(--shadow-medium); transform: translateY(-4px); }
.testimonial-stars { color: #E8B849; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: var(--space-sm); }
.testimonial-text { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--color-text); line-height: 1.7; margin-bottom: var(--space-md); }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--color-sage-light), var(--color-rose-light)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--color-text-heading); }
.testimonial-meta { font-size: 0.78rem; color: var(--color-text-light); }

/* ── CERTIFICATES (NEW) ── */
.certificates { background: var(--color-cream); }
.certificates-header { text-align: center; margin-bottom: var(--space-xl); }
.certificates-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); }
.cert-badge { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.6rem; background: var(--color-white); border-radius: var(--radius-full); border: 1px solid rgba(212,196,174,0.2); transition: var(--transition-smooth); }
.cert-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.cert-icon { width: 40px; height: 40px; background: var(--color-sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cert-text { font-size: 0.88rem; font-weight: 500; color: var(--color-text-heading); }

/* ── TIMELINE / PROCESS ── */
.process { background: var(--color-warm-white); position: relative; }
.process-header { text-align: center; margin-bottom: var(--space-2xl); }
.process-header .section-subtitle { margin-left: auto; margin-right: auto; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 32px; width: 2px; background: linear-gradient(to bottom, var(--color-sage-light), var(--color-sage), var(--color-sage-light)); }
.timeline-item { position: relative; padding-left: 80px; padding-bottom: var(--space-xl); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: 20px; top: 4px; width: 26px; height: 26px; background: var(--color-white); border: 3px solid var(--color-sage); border-radius: 50%; z-index: 1; transition: var(--transition-smooth); }
.timeline-item:hover .timeline-dot { background: var(--color-sage); transform: scale(1.15); }
.timeline-step { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-sage-dark); margin-bottom: 0.4rem; }
.timeline-card { background: var(--color-white); border-radius: var(--radius-md); padding: var(--space-md); box-shadow: var(--shadow-soft); border: 1px solid rgba(212,196,174,0.15); transition: var(--transition-smooth); }
.timeline-card:hover { box-shadow: var(--shadow-medium); transform: translateX(6px); }
.timeline-card h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.timeline-card p { font-size: 0.9rem; line-height: 1.8; }

/* ── WHY ME ── */
.why-me { background: var(--color-sage-deep); color: var(--color-white); position: relative; overflow: hidden; }
.why-me::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(197,209,190,0.15) 0%, transparent 60%); }
.why-me-header { text-align: center; margin-bottom: var(--space-2xl); position: relative; }
.why-me-header .section-label { color: var(--color-sage-light); }
.why-me-header h2 { color: var(--color-white); }
.why-me-header .section-subtitle { color: rgba(255,255,255,0.75); margin-left: auto; margin-right: auto; }
.why-me-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-md); position: relative; }
.why-me-card { text-align: center; padding: var(--space-lg); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); transition: var(--transition-smooth); backdrop-filter: blur(4px); }
.why-me-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); }
.why-me-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-md); font-size: 1.6rem; }
.why-me-card h4 { color: var(--color-white); margin-bottom: 0.6rem; font-size: 1.15rem; }
.why-me-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.7; }

/* ── PARALLAX QUOTE ── */
.parallax-quote { position: relative; padding: var(--space-3xl) 0; background: var(--color-cream); overflow: hidden; text-align: center; }
.parallax-bg { position: absolute; inset: 0; overflow: hidden; }
.parallax-shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.parallax-shape-1 { width: 400px; height: 400px; background: var(--color-sage); top: -100px; left: -100px; }
.parallax-shape-2 { width: 300px; height: 300px; background: var(--color-rose); bottom: -80px; right: -60px; }
.quote-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.quote-mark { font-family: var(--font-display); font-size: 6rem; color: var(--color-sage-light); line-height: 0.5; margin-bottom: var(--space-sm); }
.quote-text { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); font-style: italic; color: var(--color-text-heading); line-height: 1.5; margin-bottom: var(--space-md); font-weight: 300; }
.quote-author { font-size: 0.88rem; color: var(--color-text-light); }

/* ── FAQ ── */
.faq { background: var(--color-warm-white); }
.faq-header { text-align: center; margin-bottom: var(--space-2xl); }
.faq-header .section-subtitle { margin-left: auto; margin-right: auto; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-beige); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: var(--space-md) 0; text-align: left; font-family: var(--font-display); font-size: 1.2rem; color: var(--color-text-heading); background: none; cursor: pointer; transition: var(--transition-fast); gap: 1rem; }
.faq-question:hover { color: var(--color-sage-deep); }
.faq-icon { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: var(--color-cream); display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.faq-icon svg { width: 14px; height: 14px; transition: var(--transition-smooth); }
.faq-item.active .faq-icon { background: var(--color-sage-deep); }
.faq-item.active .faq-icon svg { transform: rotate(45deg); stroke: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1); }
.faq-answer-inner { padding: 0 0 var(--space-md) 0; }
.faq-answer-inner p { font-size: 0.95rem; line-height: 1.9; }

/* ── CONTACT ── */
.contact { background: var(--color-cream); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; bottom: -200px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,160,160,0.08), transparent); border-radius: 50%; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); position: relative; }
.contact-info h2 { margin-bottom: var(--space-md); }
.contact-info > p { margin-bottom: var(--space-lg); line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-detail { display: flex; align-items: flex-start; gap: var(--space-sm); }
.contact-detail-icon { width: 44px; height: 44px; min-width: 44px; background: var(--color-sage-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-detail-text { display: flex; flex-direction: column; }
.contact-detail-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-sage-dark); margin-bottom: 0.2rem; }
.contact-detail-value { font-size: 0.95rem; color: var(--color-text); }
.contact-map { margin-top: var(--space-lg); border-radius: var(--radius-md); overflow: hidden; height: 200px; background: var(--color-beige); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--color-text-light); border: 1px solid var(--color-beige-dark); }
.contact-form-wrapper { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-medium); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.82rem; font-weight: 500; color: var(--color-text); }
.form-input, .form-textarea { padding: 0.9rem 1.1rem; border: 1.5px solid var(--color-beige); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.92rem; color: var(--color-text); background: var(--color-warm-white); transition: var(--transition-fast); outline: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--color-sage); box-shadow: 0 0 0 3px rgba(168,181,160,0.15); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 0.2rem; accent-color: var(--color-sage-deep); }
.form-checkbox label { font-size: 0.82rem; color: var(--color-text-light); line-height: 1.5; }
.form-checkbox a { color: var(--color-sage-deep); text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; }
.form-trust { text-align: center; margin-top: var(--space-sm); font-family: var(--font-display); font-style: italic; font-size: 0.92rem; color: var(--color-sage-dark); }

/* ── INTERNAL LINKS SECTION ── */
.internal-links { background: var(--color-warm-white); }
.internal-links-header { text-align: center; margin-bottom: var(--space-xl); }
.internal-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); }
.internal-link-card { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-lg); border: 1px solid rgba(212,196,174,0.15); transition: var(--transition-smooth); display: block; }
.internal-link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); border-color: var(--color-sage); }
.internal-link-card h4 { margin-bottom: 0.4rem; color: var(--color-text-heading); }
.internal-link-card p { font-size: 0.88rem; color: var(--color-text-light); margin-bottom: 0.6rem; }
.internal-link-card .service-card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--color-sage-deep); font-weight: 500; }

/* ── FOOTER ── */
.footer { background: var(--color-text-heading); color: rgba(255,255,255,0.7); padding: var(--space-2xl) 0 var(--space-lg); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-2xl); }
.footer-brand .nav-logo { color: var(--color-white); margin-bottom: var(--space-sm); display: block; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }
.footer-heading { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: var(--space-md); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--color-sage-light); }
.footer-bottom { padding-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--color-sage-light); }
.footer-legal-links { display: flex; gap: var(--space-md); }

/* ── STICKY CTA BUTTON ── */
.sticky-cta {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 1.8rem; background: var(--color-sage-deep); color: var(--color-white);
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 25px rgba(92,112,84,0.4);
    transition: var(--transition-smooth);
    opacity: 0; transform: translateY(20px); pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.sticky-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(92,112,84,0.5); }
.sticky-cta-icon { font-size: 1.1rem; }

/* ── SCROLL CTA (appears after 30%) ── */
.scroll-cta-bar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
    background: var(--color-sage-deep); color: var(--color-white);
    padding: 0.6rem 0; text-align: center;
    transform: translateY(-100%); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
    font-size: 0.85rem;
}
.scroll-cta-bar.visible { transform: translateY(0); }
.scroll-cta-bar a { color: var(--color-white); text-decoration: underline; font-weight: 600; margin-left: 0.5rem; }
.scroll-cta-bar .close-bar { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.7); font-size: 1.1rem; cursor: pointer; background: none; border: none; }
.scroll-cta-bar .close-bar:hover { color: white; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; padding: var(--space-md); transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner { max-width: 900px; margin: 0 auto; background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-md) var(--space-lg); box-shadow: 0 -4px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: var(--space-lg); flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 250px; }
.cookie-text h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.cookie-text p { font-size: 0.82rem; line-height: 1.6; }
.cookie-text a { color: var(--color-sage-deep); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-btn { padding: 0.7rem 1.5rem; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 500; transition: var(--transition-fast); }
.cookie-btn-accept { background: var(--color-sage-deep); color: var(--color-white); }
.cookie-btn-accept:hover { background: var(--color-sage-dark); }
.cookie-btn-necessary { background: var(--color-beige); color: var(--color-text); }
.cookie-btn-necessary:hover { background: var(--color-beige-dark); }

/* ── MODALS ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: var(--space-md); }
.modal-overlay.active { display: flex; }
.modal { background: var(--color-white); border-radius: var(--radius-lg); width: 100%; max-width: 780px; max-height: 85vh; overflow-y: auto; padding: var(--space-xl); position: relative; }
.modal-close { position: absolute; top: var(--space-md); right: var(--space-md); width: 36px; height: 36px; border-radius: 50%; background: var(--color-cream); display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); font-size: 1.1rem; cursor: pointer; }
.modal-close:hover { background: var(--color-beige); }
.modal h2 { margin-bottom: var(--space-lg); font-size: 1.8rem; }
.modal h3 { margin-top: var(--space-lg); margin-bottom: var(--space-sm); font-size: 1.2rem; font-weight: 500; }
.modal p, .modal li { font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.5rem; }
.modal ul { padding-left: 1.2rem; margin-bottom: var(--space-sm); }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 2rem; left: 2rem; width: 48px; height: 48px; background: var(--color-beige-dark); color: var(--color-text-heading); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 997; opacity: 0; transform: translateY(20px); transition: var(--transition-smooth); box-shadow: var(--shadow-soft); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); background: var(--color-sage); color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: calc(var(--space-3xl) + 2rem); }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image-wrapper { display: none; }
    .about-grid, .story-grid, .content-grid, .content-grid.reverse { grid-template-columns: 1fr; gap: var(--space-xl); direction: ltr; }
    .about-image-area { max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(253,248,240,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.2rem; }
    .nav-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .why-me-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: var(--space-lg); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .timeline::before { left: 22px; }
    .timeline-item { padding-left: 60px; }
    .timeline-dot { left: 10px; }
    .sticky-cta span:not(.sticky-cta-icon) { display: none; }
    .sticky-cta { padding: 0.9rem; border-radius: 50%; }
}

@media (max-width: 480px) {
    .why-me-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; gap: var(--space-md); }
    .hero-trust { flex-direction: column; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .internal-links-grid { grid-template-columns: 1fr; }
}
