/* ===== MIND DESIGN BERLIN - CENTRALIZED DESIGN SYSTEM ===== */

/* CSS Custom Properties - Design Tokens */
:root {
    /* Brand Colors - Enhanced Warm Coaching Palette */
    --color-primary: #d4a574;
    --color-primary-dark: #c89660;
    --color-primary-darker: #b8864e;
    --color-primary-light: #e5d5c7;
    --color-primary-pale: rgba(212, 165, 116, 0.1);
    --color-accent: #8b7355;
    --color-accent-light: #a68968;
    --color-gold: #e5b572;
    
    /* Neutral Colors - Sophisticated Grays */
    --color-text-primary: #1f2937;
    --color-text-secondary: #374151;
    --color-text-muted: #4b5563;
    --color-text-light: #6b7280;
    --color-background: #faf9f7;
    --color-background-alt: #f7f5f3;
    --color-background-accent: #f9f7f5;
    --color-white: #ffffff;
    
    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Typography Scale */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-family-display: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 1.875rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
    --spacing-4xl: 4rem;
    --spacing-5xl: 5rem;
    --spacing-6xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 50%;
    --radius-pill: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 4px 16px rgba(212, 165, 116, 0.25);
    --shadow-primary-lg: 0 8px 24px rgba(212, 165, 116, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout Breakpoints */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1200px;
}

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

body {
    font-family: var(--font-family-primary);
    line-height: 1.7;
    color: var(--color-text-muted);
    background-color: var(--color-background);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout Containers */
.container {
    max-width: var(--breakpoint-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Section Spacing */
.section {
    padding: var(--spacing-5xl) 0;
}

.container-sm {
    max-width: var(--breakpoint-md);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Typography System - Coaching-Focused Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
    letter-spacing: -0.015em;
}

.heading-display {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-light);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--color-text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

h1, .heading-1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-light);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

h2, .heading-2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-light);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

h3, .heading-3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.01em;
    color: var(--color-text-secondary);
}

h4, .heading-4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
}

h5, .heading-5 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
}

h6, .heading-6 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Body Text Variants */
p, .body-text {
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-md);
    line-height: 1.75;
    color: var(--color-text-muted);
    font-weight: var(--font-weight-normal);
}

.body-large {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--color-text-muted);
}

.body-small {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--color-text-light);
}

.text-muted {
    color: var(--color-text-light);
}

.text-subtle {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
}

.lead-text {
    font-size: var(--font-size-lg);
    line-height: 1.65;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-normal);
}

/* Button System - Consistent CTA Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    text-align: center;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    letter-spacing: 0.005em;
    font-family: var(--font-family-primary);
    line-height: 1.2;
    white-space: nowrap;
    min-height: 48px;
}

/* Primary Button - Main CTA */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

/* Large Primary Button */
.btn-primary-large {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    min-height: 48px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-3xl);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: var(--font-size-base);
    letter-spacing: 0.005em;
    font-family: var(--font-family-primary);
    white-space: nowrap;
    box-shadow: var(--shadow-primary);
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-text-light);
    border: 1.5px solid #e5e7eb;
    min-height: 48px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: var(--font-size-base);
    letter-spacing: 0.005em;
    font-family: var(--font-family-primary);
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

/* Button Variants */
.btn-small {
    padding: var(--spacing-xs) var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-3xl);
    font-size: var(--font-size-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    background: var(--color-primary-pale);
    color: var(--color-primary-dark);
}

/* Navigation System */
.navbar {
    background-color: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    gap: 1rem;
    min-height: 80px;
}

.nav-logo h2 {
    color: #1f2937;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    letter-spacing: 0.005em;
}

.nav-link:hover,
.nav-link.active {
    color: #d4a574;
}

.language-toggle {
    display: flex;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 6px;
    padding: 4px;
    margin-left: 1rem;
    height: 36px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: #d4a574;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation CTA Button */
.nav-cta {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-cta .btn-primary {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-sm);
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    letter-spacing: 0.005em;
    font-family: var(--font-family-primary);
    white-space: nowrap;
}

/* Hero Section - Personal, transformational coaching design */
.section-hero {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(200, 150, 96, 0.1) 100%);
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.1875rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.65;
    font-weight: 400;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero trust styles are handled in design-system.css */

/* Trust items are now handled in design-system.css */
.trust-item {
    /* Styles moved to design-system.css for better organization */
}

/* Trust item styles moved to design-system.css */

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

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
    border-radius: 50%;
    opacity: 0.08;
    z-index: -1;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1.1;
    background: linear-gradient(135deg, #e5d5c7, #d4a574);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 16px 32px rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.hero-image-placeholder i {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.95;
}

/* Problem Section - Empathetic, understanding approach */
.problem-section {
    padding: 80px 0;
    background-color: #f7f5f3;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.3) 50%, transparent 100%);
}

.problem-section h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.4;
    font-size: 2.25rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.problem-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.03);
    text-align: left;
    transition: all 0.35s ease;
    border: 1px solid rgba(229, 231, 235, 0.3);
    position: relative;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d4a574, #c89660);
    border-radius: 16px 0 0 16px;
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.problem-item i {
    font-size: 2.25rem;
    color: #d4a574;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.problem-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.problem-item p {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.65;
    font-weight: 400;
}

/* Solution Section - Transformational approach */
.solution-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, rgba(200, 150, 96, 0.06) 100%);
    z-index: 0;
}

.solution-section h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.solution-item {
    text-align: center;
    padding: 2rem;
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #d4a574, #c89660);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.solution-icon i {
    font-size: 1.75rem;
    color: white;
}

.solution-item {
    position: relative;
    z-index: 1;
}

.solution-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.3125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.solution-item p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.65;
}

/* Process Section - Methodical transformation journey */
.process-section {
    padding: 80px 0;
    background-color: #f9f7f5;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.3) 50%, transparent 100%);
}

.process-section h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    font-weight: 300;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d4a574, #c89660);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 3px 10px rgba(212, 165, 116, 0.25);
}

.process-step h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.process-step ul {
    list-style: none;
    padding: 0;
}

.process-step li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
}

.process-step li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

/* Testimonial Section - Authentic transformation stories */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2f36 0%, #374151 50%, #475569 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 91, 115, 0.9), rgba(139, 125, 139, 0.85));
    backdrop-filter: blur(1px);
}

.testimonial-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-content blockquote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0 2rem;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: 0;
    color: #d4a574;
    line-height: 0;
}

.testimonial-content blockquote::after {
    content: '"';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
    bottom: -2rem;
    right: 0;
    color: #d4a574;
    line-height: 0;
}

.testimonial-content cite {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 500;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    min-width: 180px;
}

.metric-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #d4a574;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.metric:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(212, 165, 116, 0.3);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, rgba(200, 150, 96, 0.06) 100%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-text p {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.65;
}

.credentials {
    margin-bottom: 2.5rem;
    background: rgba(212, 165, 116, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #374151;
    font-size: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.credential i {
    color: #d4a574;
    width: 24px;
    font-size: 1.1rem;
}

.credential:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #8b7d8b, #9d8f9d);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 12px 24px rgba(139, 125, 139, 0.15);
}

.about-image-placeholder i {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.about-image-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: #f9f7f5;
}

.services-overview h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d4a574, #c89660);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 3px 10px rgba(212, 165, 116, 0.2);
}

.service-icon i {
    font-size: 1.375rem;
    color: white;
}

.service-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.65;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.service-link {
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.service-link:hover {
    color: #c89660;
}

/* Final CTA Section - Inviting transformation invitation */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2f36, #374151);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 30%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 2rem;
    font-weight: 400;
    color: #ffffff;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 1;
    color: #f8fafc;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit i {
    color: #e5d5c7;
    font-size: 1.25rem;
}

.benefit span {
    font-size: 1rem;
    font-weight: 400;
    color: #f1f5f9;
}

.cta-buttons {
    margin-top: 3rem;
}

.alternative-cta {
    margin-top: 3rem;
    opacity: 1;
    color: #e2e8f0;
}

.alternative-cta p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #e2e8f0;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: var(--font-weight-medium);
}

.footer-section p {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-normal);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #f8fafc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: var(--font-weight-normal);
}

.footer-section a:hover {
    color: var(--color-primary);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #d4a574;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #f8fafc;
    font-weight: var(--font-weight-normal);
}

.contact-info i {
    width: 20px;
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .footer-legal {
        gap: 1.5rem;
    }
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.footer-legal a:hover {
    color: #f1f5f9;
    border-bottom-color: rgba(212, 165, 116, 0.5);
}

.footer-copyright p {
    color: #f1f5f9;
    font-size: 0.9rem;
    font-weight: var(--font-weight-normal);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 15px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-cta .btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-cta {
        order: 2;
    }
    
    .language-toggle {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Hero trust responsive styles moved to design-system.css */
    
    .success-metrics {
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== GENERATED IMAGES STYLING ===== */

/* Hero Portrait - Enhanced for Trust Building */
.hero-portrait {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.25);
    transition: all 0.4s ease;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.about-portrait {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-portrait:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.35);
}

.about-portrait:hover {
    transform: translateY(-4px);
}

/* Journey Image */
.journey-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Blog Article Images */
.article-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.article-thumbnail:hover {
    transform: scale(1.05);
}

/* Featured Article Image */
.featured-article-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Image Container Styles */
.hero-image, .about-image, .story-image-container, .article-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image p, .about-image p, .story-image-container p, .article-image-container p {
    margin-top: 1rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-portrait {
        max-width: 300px;
    }
    
    .about-portrait {
        max-width: 220px;
    }
    
    .article-thumbnail {
        height: 160px;
    }
    
    .featured-article-image {
        max-height: 240px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    color: #e5e7eb;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}