/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Warme, erdige Farbpalette - Braun, Creme & Stahlblau */
    --color-primary: #C8963E;       /* Warmes Gold - Akzent */
    --color-primary-light: #D4A853; /* Helles Gold */
    --color-primary-dark: #A67B2E;  /* Dunkles Gold */
    --color-accent: #7d6e5d;        /* Warmes Taupe/Braun */
    --color-golden: #C8963E;        /* Goldschimmer */
    --color-sage: #8a7d6e;          /* Helles Taupe */
    --color-sage-light: #9d9183;    /* Hellstes Taupe */
    --color-earth: #5a4f43;         /* Tiefes Braun */
    --color-deep: #3d5165;          /* Tiefes Stahlblau */
    --color-night: #3d5165;         /* Tiefes Stahlblau */
    --color-warm-white: #fdfbec;    /* Cremeweiß (dein Original) */
    --color-cream: #f5f0e0;         /* Warmes Creme */
    --color-sand: #e8e0d0;          /* Sand */
    --color-light-sage: #f2efe8;    /* Ganz helles Warm */
    --color-text: #2A2A2A;          /* Fast Schwarz */
    --color-text-light: #5A5A5A;    /* Mittelgrau */
    --color-text-muted: #8A8A8A;    /* Helles Grau */

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #C8963E 0%, #D4A853 100%);
    --gradient-golden: linear-gradient(135deg, #A67B2E 0%, #C8963E 50%, #D4A853 100%);
    --gradient-earth: linear-gradient(135deg, #7d6e5d 0%, #9d9183 100%);
    --gradient-deep: linear-gradient(135deg, #3d5165 0%, #506d82 100%);

    /* Typography - Modern headers */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vh, 160px);
    --container-width: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal {
    transition-delay: calc(var(--i, 0) * 0.12s);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-quart);
}

.nav.scrolled {
    background: rgba(253, 251, 236, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-night);
    letter-spacing: -0.02em;
}

.nav-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    border-radius: 1px;
    transition: width 0.3s var(--ease-out-quart);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-cta {
    padding: 10px 24px !important;
    background: #3d5165 !important;
    background-image: linear-gradient(135deg, #3d5165 0%, #506d82 100%) !important;
    color: white !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s ease !important;
    -webkit-appearance: none;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 81, 101, 0.4);
    color: white !important;
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-night);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f5f0e6;
}

/* Sanfter Übergang zum nächsten Abschnitt */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(253, 251, 236, 0.6) 50%,
        #fdfbec 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200, 150, 62, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 30% 70%, rgba(232, 224, 208, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(200, 150, 62, 0.06) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Vollflächiges Hintergrundbild */
.hero-portrait {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% 20%;
    top: 0;
    opacity: 0.65;
    filter: grayscale(20%) brightness(0.95);
}

.hero-img-mobile {
    display: none;
}

/* Particle canvas */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 120px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 100vh;
}

.hero-text {
    max-width: 480px;
    text-align: left;
    flex-shrink: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(200, 150, 62, 0.08);
    border: 1px solid rgba(200, 150, 62, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-golden);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-night);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    text-shadow: none;
}

.hero h1 .highlight {
    color: #C8963E;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(61, 81, 101, 0.85);
    max-width: 560px;
    margin: 0 0 44px;
    line-height: 1.8;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-warm);
    color: white;
    box-shadow: 0 8px 30px rgba(200, 150, 62, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 150, 62, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--color-night);
    border: 2px solid var(--color-sand);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-deep {
    background: #3d5165 !important;
    background-image: linear-gradient(135deg, #3d5165 0%, #506d82 100%) !important;
    color: white !important;
    box-shadow: 0 8px 30px rgba(61, 81, 101, 0.3);
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn-deep:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(61, 81, 101, 0.45);
}

.btn-deep::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-deep:hover::before {
    opacity: 1;
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-sand);
}

.btn-outline-dark:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--color-night);
    color: white;
    box-shadow: 0 8px 30px rgba(43, 58, 74, 0.3);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(43, 58, 74, 0.45);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========================================
   SECTION DIVIDERS
   ======================================== */
.divider-wave {
    position: absolute;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.divider-wave svg {
    display: block;
    width: calc(100% + 2px);
    height: 80px;
}

/* ========================================
   COMMON SECTION STYLES
   ======================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gradient-warm);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--color-night);
}

.section-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 680px;
    line-height: 1.8;
}

.section-text em {
    font-style: italic;
    color: var(--color-text);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-warm-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.problem-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.problem-icon.gold {
    background: rgba(200, 150, 62, 0.1);
}

.problem-icon.sage {
    background: rgba(61, 81, 101, 0.12);
}

.problem-icon.earth {
    background: rgba(125, 110, 93, 0.12);
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--color-night);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-night);
    color: white;
    overflow: hidden;
}

.solution-section .section-label {
    color: var(--color-golden);
}

.solution-section .section-title {
    color: white;
}

.solution-section .section-text {
    color: rgba(255, 255, 255, 0.7);
}

.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-visual {
    position: relative;
}

.solution-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: solutionGlow 6s ease-in-out infinite alternate;
}

@keyframes solutionGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.solution-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(61, 81, 101, 0.15) 0%, rgba(200, 150, 62, 0.1) 100%);
}

.solution-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-emphasis {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--color-golden);
    margin: 28px 0;
    line-height: 1.5;
}

.solution-list {
    list-style: none;
    margin: 32px 0;
}

.solution-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

.solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 16px;
    height: 2px;
    background: var(--gradient-warm);
    border-radius: 1px;
}

/* ========================================
   VISION SECTION
   ======================================== */
.vision-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-cream) 100%);
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.vision-content .section-label {
    justify-content: center;
}

.vision-content .section-label::before {
    display: none;
}

.vision-blocks {
    display: grid;
    gap: 40px;
    margin-top: 56px;
    text-align: left;
}

.vision-block {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
}

.vision-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.vision-block p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.vision-block strong {
    color: var(--color-night);
}

/* ========================================
   METHODOLOGY SECTION
   ======================================== */
.method-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: white;
    overflow: hidden;
}

.method-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.method-visual {
    position: relative;
}

.method-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(200, 150, 62, 0.06) 0%, rgba(61, 81, 101, 0.06) 100%);
}

.method-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 260px;
}

.method-float-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
}

.method-float-card .tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-light-sage);
    color: var(--color-deep);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 10px;
}

.method-approaches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.method-tag {
    padding: 10px 20px;
    background: var(--color-cream);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    border: 1px solid rgba(200, 150, 62, 0.15);
    transition: all 0.3s ease;
}

.method-tag:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.method-result {
    margin-top: 32px;
    padding: 28px;
    background: var(--color-cream);
    border-radius: 20px;
    border-left: 4px solid var(--color-primary);
}

.method-result p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-warm-white) 100%);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header .section-label {
    justify-content: center;
}

.testimonials-header .section-label::before {
    display: none;
}

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-earth);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-night);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-deep);
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(61, 81, 101, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
}

.newsletter-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-section .section-title {
    color: white;
}

.newsletter-section .section-text {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 36px;
}

/* AC form wrapper — reset ActiveCampaign defaults */
.ac-form-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.ac-form-wrapper #_form_43_ {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    max-width: 100% !important;
    font-family: var(--font-body) !important;
}

.ac-form-wrapper ._form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ac-form-wrapper ._form_element {
    margin-bottom: 0 !important;
}

.ac-form-wrapper ._button-wrapper {
    width: 100%;
    margin: 0 !important;
}

.ac-form-wrapper ._form-thank-you {
    text-align: center;
    padding: 20px 0;
}

.ac-form-wrapper ._form-branding {
    display: none !important;
}

.newsletter-fields {
    display: flex;
    gap: 12px;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
    border-color: var(--color-golden);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--gradient-warm);
    color: white;
    border: none;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    transition: all 0.3s var(--ease-out-quart);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 150, 62, 0.4);
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-warm-white);
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-section .section-label {
    justify-content: center;
}

.cta-section .section-label::before {
    display: none;
}

.cta-section .section-text {
    margin: 0 auto 40px;
}

.cta-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-night);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.footer-brand-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}

.footer-social svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: white;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social a:hover svg {
    fill: none;
    stroke: white;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* ========================================
   CURSOR GLOW
   ======================================== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    display: none;
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-warm);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}

/* ========================================
   PAGE LOADER
   ======================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-night);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    opacity: 0;
    animation: loaderReveal 1.2s var(--ease-out-expo) forwards;
}

.loader-text .highlight {
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes loaderReveal {
    0% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* ========================================
   SUBPAGE HERO
   ======================================== */
.subpage-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--color-night);
    overflow: hidden;
}

.subpage-hero .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 60%, rgba(200, 150, 62, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 70% 30%, rgba(61, 81, 101, 0.1) 0%, transparent 60%);
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.subpage-hero .section-label {
    color: var(--color-golden);
}

.subpage-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.subpage-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 560px;
}

/* ========================================
   CONTENT SECTIONS (for subpages)
   ======================================== */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section.alt-bg {
    background: var(--color-cream);
}

.content-section.white-bg {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-image.portrait {
    aspect-ratio: 3/4;
}

/* Service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-night);
    margin-bottom: 14px;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(200, 150, 62, 0.1);
}

/* Podcast cards */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.podcast-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s ease;
}

.podcast-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.podcast-card-image {
    aspect-ratio: 16/9;
    background: var(--gradient-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-card-body {
    padding: 28px;
}

.podcast-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-night);
    margin-bottom: 10px;
}

.podcast-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.podcast-card-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 14px;
}

/* Event block content (vision-block layout) */
#event-container.vision-blocks {
    max-width: 800px;
}

.event-block-content {
    display: flex;
    flex-direction: column;
}

.event-block-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-night);
    margin-bottom: 12px;
}

.event-block-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-block-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.event-block-content .btn {
    align-self: flex-start;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 2px solid var(--color-sand);
    background: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.3s ease;
}

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

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

.contact-info-card {
    background: var(--color-cream);
    border-radius: 24px;
    padding: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-sand);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 150, 62, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-night);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .solution-layout,
    .method-layout,
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .solution-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .method-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .problem-grid,
    .testimonials-grid,
    .podcast-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 64px auto 0;
    }

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

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-warm-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.4s var(--ease-out-quart);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--color-text);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-img-desktop {
        display: none;
    }

    .hero-img-mobile {
        display: block !important;
        object-position: 40% 25%;
        opacity: 0.4;
        top: 0 !important;
    }

    .hero-portrait::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to bottom,
            rgba(245, 240, 230, 0.1) 0%,
            rgba(245, 240, 230, 0.4) 45%,
            rgba(245, 240, 230, 0.7) 70%,
            rgba(245, 240, 230, 0.85) 100%
        );
    }

    .hero-content {
        padding: 220px 20px 40px;
        min-height: 100vh;
        align-items: flex-start;
    }

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

    .hero p {
        margin: 0 auto 28px;
        padding: 0 32px;
    }

    .hero h1 {
        font-size: 3.2rem;
        font-weight: 800;
        letter-spacing: -0.04em;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
        max-width: 280px;
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .newsletter-fields {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .vision-block {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .subpage-hero {
        padding: 140px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        letter-spacing: -0.04em;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .problem-card,
    .testimonial-card,
    .service-card {
        padding: 28px 24px;
    }
}

/* ========================================
   PHOTO BREAK
   ======================================== */
.photo-break {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    position: relative;
}

.photo-break img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

@media (max-width: 768px) {
    .photo-break img {
        height: 320px;
        object-position: center 20%;
    }
}

/* ========================================
   MISC
   ======================================== */
section[id] {
    scroll-margin-top: 80px;
}

::selection {
    background: rgba(200, 150, 62, 0.2);
    color: var(--color-night);
}
