/* ============================================
   Balance & Kraft - Praxisgemeinschaft
   Shared Stylesheet
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nude-100: #faf7f5;
    --nude-200: #f5ebe5;
    --nude-300: #e8dcd3;
    --nude-400: #d4c4b7;
    --nude-500: #bfa898;
    --nude-600: #a08779;
    --rose: #c9a99a;
    --rose-light: #e5d5cd;
    --taupe: #8a7968;
    --text-dark: #2d2a26;
    --text-medium: #5c564e;
    --text-light: #8a847a;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--nude-100);
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* ============================================
   Navigation
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 245, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.25rem 3rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo span {
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-menu span {
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: 0.3s;
    display: block;
}

.mobile-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.mobile-menu.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--rose);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--taupe);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    margin-left: 1rem;
}

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

.btn-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Section Utilities
   ============================================ */

section {
    padding: 8rem 3rem;
}

.section-header {
    max-width: 700px;
    margin-bottom: 5rem;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--nude-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 3rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 560px;
}

.hero-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nude-500);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--rose);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--nude-200), var(--nude-300));
    border-radius: 0 120px 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--nude-400);
    border-radius: 0 100px 0 100px;
}

.hero-image-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--nude-500);
    stroke-width: 1;
    fill: none;
}

.hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid var(--nude-300);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
}

/* Page Hero (shorter variant for inner pages) */
.page-hero {
    min-height: auto;
    padding: 10rem 3rem 5rem;
}

.page-hero .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 3.5rem;
}

/* ============================================
   Philosophy Strip
   ============================================ */

.philosophy {
    background: var(--nude-200);
    padding: 5rem 3rem;
    text-align: center;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.philosophy cite {
    display: block;
    margin-top: 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(180deg, var(--nude-200) 0%, var(--rose-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--nude-500);
    stroke-width: 1;
    fill: none;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--nude-300);
    z-index: -1;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.credential {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    color: var(--text-medium);
    border: 1px solid var(--nude-300);
    letter-spacing: 0.5px;
}

/* ============================================
   Practitioner Cards (Homepage)
   ============================================ */

.practitioners {
    background: var(--white);
}

.practitioners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.practitioners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.practitioner-card {
    background: var(--nude-100);
    padding: 3.5rem;
    transition: all 0.4s ease;
}

.practitioner-card:hover {
    background: var(--nude-200);
}

.practitioner-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(180deg, var(--nude-200) 0%, var(--rose-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.practitioner-image svg {
    width: 80px;
    height: 80px;
    stroke: var(--nude-500);
    stroke-width: 1;
    fill: none;
}

.practitioner-card .section-label {
    margin-bottom: 0.75rem;
}

.practitioner-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.practitioner-card .role {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.practitioner-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.practitioner-card .btn {
    margin-left: 0;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: var(--nude-100);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--nude-300);
}

.service-card {
    background: var(--white);
    padding: 3.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose);
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background: var(--nude-100);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--nude-300);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.8;
}

.service-card .service-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--taupe);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.service-card .service-link:hover {
    color: var(--text-dark);
}

/* ============================================
   For Whom Section (dark bg)
   ============================================ */

.for-whom {
    background: var(--text-dark);
    color: var(--white);
}

.for-whom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

.for-whom .section-header {
    margin-bottom: 0;
}

.for-whom .section-header h2 {
    color: var(--white);
}

.for-whom .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.for-whom .section-label {
    color: var(--rose);
}

.whom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.whom-item {
    background: var(--text-dark);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s;
}

.whom-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.whom-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.whom-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--rose);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
    background: var(--white);
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.pricing-card {
    background: var(--nude-100);
    padding: 3.5rem;
    position: relative;
    transition: all 0.4s;
}

.pricing-card.featured {
    background: var(--text-dark);
    color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-card.featured .pricing-duration,
.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .pricing-features li::before {
    background: var(--rose);
}

.pricing-label {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
}

.pricing-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--nude-400);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--nude-200);
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
    background: var(--nude-200);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--nude-300);
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-card p {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--nude-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    font-weight: 400;
    font-size: 0.9rem;
}

.testimonial-author-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: var(--nude-200);
    padding: 6rem 3rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background: var(--nude-100);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--taupe);
    stroke-width: 1.5;
    fill: none;
}

.contact-item-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-item-text span,
.contact-item-text a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-item-text a:hover {
    color: var(--text-dark);
}

/* Dual contact columns (kontakt.html) */
.contact-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-person {
    padding: 3rem;
    background: var(--white);
}

.contact-person h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-person .role {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form {
    background: var(--white);
    padding: 3.5rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 400;
    color: var(--text-dark);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--nude-300);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: var(--nude-100);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--taupe);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ============================================
   WRB Form (Wohnraumbalance)
   ============================================ */

.wrb-form-section {
    background: var(--white);
    padding: 8rem 3rem;
}

.wrb-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.wrb-form {
    background: var(--nude-100);
    padding: 3.5rem;
}

.wrb-form-group {
    margin-bottom: 2.5rem;
}

.wrb-form-group h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--nude-300);
}

.wrb-form-group p.form-hint {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--taupe);
    cursor: pointer;
}

.checkbox-item label {
    font-size: 0.95rem;
    color: var(--text-medium);
    cursor: pointer;
}

.wrb-form .form-group input,
.wrb-form .form-group textarea,
.wrb-form .form-group select {
    background: var(--white);
}

/* ============================================
   Service Detail Sections
   ============================================ */

.service-detail {
    padding: 8rem 3rem;
}

.service-detail:nth-child(even) {
    background: var(--white);
}

.service-detail:nth-child(odd) {
    background: var(--nude-100);
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
}

.service-detail-container.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.service-detail-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-detail-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.95rem;
}

.service-detail-sidebar {
    position: sticky;
    top: 6rem;
}

.detail-highlight-card {
    background: var(--nude-200);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.detail-highlight-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.detail-highlight-card ul {
    list-style: none;
}

.detail-highlight-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.detail-highlight-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.85rem;
}

.disclaimer {
    padding: 2rem;
    background: var(--nude-200);
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 2rem;
}

/* ============================================
   WRB Teaser (dark section)
   ============================================ */

.wrb-teaser {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.wrb-teaser-container {
    max-width: 800px;
    margin: 0 auto;
}

.wrb-teaser h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.wrb-teaser p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.wrb-teaser .section-label {
    color: var(--rose);
}

/* ============================================
   WRB Pricing Table
   ============================================ */

.wrb-pricing {
    background: var(--nude-100);
}

.wrb-pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.wrb-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.wrb-pricing-table tr {
    border-bottom: 1px solid var(--nude-300);
}

.wrb-pricing-table td {
    padding: 1.25rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.wrb-pricing-table td:last-child {
    text-align: right;
    font-weight: 400;
    color: var(--text-dark);
}

/* ============================================
   Download Section
   ============================================ */

.download-section {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--nude-200);
}

.download-section p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ============================================
   Process Steps
   ============================================ */

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
}

.process-step .step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--nude-300);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   WRB Goal/Poem Section
   ============================================ */

.wrb-goal {
    background: var(--nude-200);
    padding: 6rem 3rem;
    text-align: center;
}

.wrb-goal-content {
    max-width: 800px;
    margin: 0 auto;
}

.wrb-goal .poem-lines {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 2.2;
    margin-bottom: 2rem;
}

.wrb-goal .poem-conclusion {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 5rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.8;
}

.footer-links h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--rose-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    section {
        padding: 5rem 2rem;
    }

    nav {
        padding: 1rem 2rem;
    }

    .hero {
        padding: 8rem 2rem 4rem;
    }

    .page-hero {
        padding: 8rem 2rem 3rem;
    }

    .hero-container,
    .about-container,
    .contact-container,
    .for-whom-container,
    .service-detail-container,
    .service-detail-container.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .pricing-grid.three-col {
        grid-template-columns: 1fr;
    }

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

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

    .contact-dual {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .about-container {
        gap: 4rem;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .for-whom .section-header {
        text-align: center;
    }

    .service-detail-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .page-hero .hero-content h1 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .service-card {
        padding: 2.5rem;
    }

    .wrb-form {
        padding: 2rem;
    }

    .contact-person {
        padding: 2rem;
    }

    .checkbox-group {
        flex-direction: column;
    }
}
