/* Goldene Momente – Startseite CSS */
/* Seitenbezogene Styles */


/* ===== VIDEO INTRO ===== */
.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.video-intro.is-fading video {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.video-intro.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.01s ease 0s;
}
.video-intro-inner {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: clamp(2rem, 3vh, 3rem) 2rem 2rem;
}
.video-intro-inner video {
    width: min(98vw, 860px);
    height: auto;
    max-height: calc(100dvh - 160px);
    object-fit: contain;
    display: block;
    background: #000;
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.video-intro-overlay {
    display: flex;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    animation: fadeInOverlay 0.8s ease 2s both;
}
@keyframes fadeInOverlay {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn-video-skip {
    background: transparent;
    color: rgba(237, 181, 27, 0.85);
    padding: 0 2rem;
    height: 46px;
    line-height: 46px;
    border: 1.5px solid rgba(237, 181, 27, 0.45);
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.btn-video-skip:hover {
    background: rgba(237, 181, 27, 0.1);
    border-color: rgba(237, 181, 27, 0.6);
    color: var(--gold);
    letter-spacing: 1.8px;
    transform: translateY(-3px);
}
.btn-intro-replay {
    background: transparent !important;
    color: rgba(255,255,255,0.5) !important;
    border-color: rgba(255,255,255,0.2) !important;
}
.btn-intro-replay:hover {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(237, 181, 27, 0.4) !important;
    color: rgba(237, 181, 27, 0.7) !important;
}

/* Black out page content during intro */
body.video-intro-active {
    background: #000;
}
body.video-intro-active .page-content {
    background: #000;
}
body.video-intro-active .page-content > *:not(.video-intro) {
    opacity: 0;
    pointer-events: none;
}

/* Hero visibility: starts invisible, fades in after black pause */
body.video-intro-active .hero-sticky-wrapper {
    opacity: 0;
    pointer-events: none;
}
body.video-intro-done .hero-sticky-wrapper {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile video */
@media (max-width: 768px) {
    .video-intro-inner {
        gap: 3.4rem;
        padding: 1.5rem;
    }
    .video-intro-inner video {
        width: min(98vw, 780px);
        max-height: calc(100dvh - 140px);
    }
    .video-intro-overlay {
        bottom: 2rem;
    }
    .btn-video-skip {
        width: auto;
        max-width: 280px;
        height: 44px;
        line-height: 44px;
        font-size: 0.78rem;
    }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .video-intro {
        display: none !important;
    }
    body.video-intro-active .hero-sticky-wrapper,
    body.video-intro-done .hero-sticky-wrapper {
        opacity: 1;
        pointer-events: auto;
        transition: none;
    }
    body.video-intro-active .page-content > *:not(.video-intro) {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ===== STARTSEITEN-HERO ===== */
        .hero-sticky-wrapper {
            position: relative;
            height: 100vh;
            z-index: 1;
            background: #0A0A0A;
        }
        .start-hero {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            min-height: 100vh;
            width: 100%;
            z-index: 1;
            background: #0A0A0A;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 7rem 6% 4rem;
            overflow: hidden;
        }
        .start-hero::before {
            content: '';
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90vw;
            height: 90vw;
            max-width: 1200px;
            max-height: 1200px;
            background: radial-gradient(ellipse at center, rgba(237, 181, 27, 0.028) 0%, transparent 55%);
            pointer-events: none;
            z-index: 0;
        }
        .start-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin-top: -8.5vh;
        }

        .start-hero-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.3rem;
            margin-bottom: 2.8rem;
        }
        .start-hero-logo-icon {
            width: 122px;
            height: auto;
            display: block;
            filter: drop-shadow(0 0 50px rgba(237, 181, 27, 0.16));
        }
        .start-hero-logo-text {
            width: 100%;
            max-width: 480px;
            height: auto;
            display: block;
            filter: drop-shadow(0 0 50px rgba(237, 181, 27, 0.16));
        }
        .start-hero-text {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.74);
            margin-bottom: 1rem;
            font-weight: 300;
            line-height: 1.85;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: 0.4px;
        }
        .start-hero-meta {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.55);
            margin-bottom: 2.2rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 400;
        }
        .start-hero-actions {
            display: flex;
            gap: 0.8rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1.4rem;
        }
        .btn-start-hero-primary {
            background: transparent;
            color: var(--gold);
            padding: 0 2.2rem;
            height: 46px;
            line-height: 46px;
            border: 1px solid rgba(237, 181, 27, 0.35);
            border-radius: 2px;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.82rem;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }
        .btn-start-hero-primary:hover {
            background: rgba(237, 181, 27, 0.06);
            border-color: rgba(237, 181, 27, 0.5);
            color: var(--gold);
            letter-spacing: 2px;
            transform: translateY(-1px);
        }
        .btn-start-hero-secondary {
            background: transparent;
            color: rgba(237, 181, 27, 0.85);
            padding: 0 2rem;
            height: 46px;
            line-height: 46px;
            border: 1.5px solid rgba(237, 181, 27, 0.45);
            border-radius: 2px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.82rem;
            letter-spacing: 1.2px;
            transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }
        .btn-start-hero-secondary:hover {
            background: rgba(237, 181, 27, 0.1);
            border-color: rgba(237, 181, 27, 0.6);
            color: var(--gold);
            letter-spacing: 1.8px;
            transform: translateY(-3px);
        }
/* RESPONSIVE */
                /* ===== REVEAL ANIMATION ===== */
        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.25, 1),
                        transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
        }
        /* Hero elements start hidden, JS triggers animation */
        .start-hero-logo.reveal,
        .start-hero-text.reveal,
        .start-hero-meta.reveal,
        .start-hero-actions.reveal {
            opacity: 0;
            transform: translateY(36px);
        }
        .start-hero-logo.reveal.hero-animate {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }
        .start-hero-text.reveal.hero-animate {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.45s;
        }
        .start-hero-meta.reveal.hero-animate {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.65s;
        }
        .start-hero-actions.reveal.hero-animate {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.85s;
        }
        @media (prefers-reduced-motion: reduce) {
            .reveal,
            .start-hero-logo.reveal,
            .start-hero-text.reveal,
            .start-hero-meta.reveal,
            .start-hero-actions.reveal {
                transition: none;
                opacity: 1;
                transform: none;
            }
        }

/* ===== WARUM GOLDENE MOMENTE ===== */
        .why-gm {
            background: var(--off-white);
            position: relative;
            z-index: 2;
            margin-top: 100vh;
            padding: 8rem 6% 6rem;
        }
        #warum {
            scroll-margin-top: 90px;
        }
        .why-gm-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .why-gm-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }
        .why-gm-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            margin-bottom: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .why-gm-text {
            color: var(--gray);
            font-size: 1.15rem;
            line-height: 1.8;
            font-weight: 300;
        }
        .why-gm-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .why-gm-card {
            text-align: center;
            padding: 2rem;
        }
        .why-gm-card .icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            color: var(--gold);
        }
        .why-gm-card-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--black);
            font-weight: 600;
            line-height: 1.2;
        }
        .why-gm-card-text {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 300;
        }

/* ===== DIE 4 SÄULEN ===== */
        .pillars {
            background: var(--white);
            position: relative;
            z-index: 2;
            padding: 8rem 6%;
        }
        .pillars-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .pillars-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        .pillars-header h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            margin-bottom: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .pillars-header p {
            color: var(--gray);
            font-size: 1.15rem;
            line-height: 1.8;
            font-weight: 300;
        }
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        .pillar-card {
            background: var(--off-white);
            border-left: 3px solid var(--gold);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .pillar-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.04);
        }
        .pillar-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }
        .pillar-content {
            padding: 2rem 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .pillar-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .pillar-title .gm-logo {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            opacity: 0.8;
        }
        .pillar-title h3 {
            font-size: 1.4rem;
            margin: 0;
            font-weight: 500;
            line-height: 1.2;
        }
        .pillar-text {
            font-size: 1rem;
            color: var(--gold-dark);
            font-weight: 500;
            margin-bottom: 2rem;
            letter-spacing: 0.3px;
            line-height: 1.5;
        }
        .pillar-list {
            list-style: none;
            color: var(--gray);
            margin: 0 0 1.5rem;
            padding: 0;
        }
        .pillar-list li {
            padding: 0.35rem 0;
            padding-left: 1.2rem;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .pillar-list li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--gold);
            opacity: 0.6;
        }
        .pillar-link {
            background: transparent;
            color: var(--black);
            padding: 0 1.8rem;
            height: 40px;
            line-height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            border-radius: 2px;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.8rem;
            letter-spacing: 0.8px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            margin-top: auto;
            align-self: center;
        }
        .pillar-link:hover {
            border-color: rgba(237, 181, 27, 0.5);
            background: rgba(237, 181, 27, 0.06);
            color: var(--gold-dark);
            letter-spacing: 1.2px;
        }

/* Mobile Why-GM */
@media (max-width: 768px) {
    .why-gm-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        max-width: 420px;
        margin: 0 auto;
    }
    .why-gm-card {
        width: 100%;
        padding: 0 1.5rem;
        text-align: center;
    }
    .why-gm-card .icon {
        width: 58px;
        height: 58px;
        margin: 0 auto 1.8rem;
    }
            .why-gm {
                margin-top: 0 !important;
            }
}

/* Mobile Pillars */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}


/* ===== ERFAHRUNGEN ===== */
        .experiences {
            background: var(--black);
            position: relative;
            z-index: 2;
            padding: 8rem 6% 2.5rem;
            overflow: hidden;
        }
        .experiences::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(237, 181, 27, 0.015) 0%, transparent 70%);
            pointer-events: none;
        }
        .experiences-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .experiences-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .experiences-header h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--white);
            font-weight: 500;
            letter-spacing: -0.3px;
            line-height: 1.25;
        }
        .experiences-carousel-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }
        .experiences-carousel {
            display: flex;
            gap: 1.5rem;
            animation: scrollExperiences 120s linear infinite;
            width: max-content;
            will-change: transform;
        }
        .experiences-carousel:hover,
        .experiences-carousel-wrapper:focus-within .experiences-carousel {
            animation-play-state: paused;
        }

        @media (prefers-reduced-motion: reduce) {
            .experiences-carousel {
                animation: none;
            }
        }
        .experience-card {
            background: rgba(255,255,255,0.015);
            border: 1px solid rgba(255,255,255,0.10);
            padding: 1.6rem;
            transition: all 0.6s ease;
            position: relative;
            min-width: 280px;
            max-width: 280px;
            flex-shrink: 0;
            border-radius: 2px;
        }
        .experience-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            opacity: 0.5;
        }
        .experience-card:hover {
            border-color: rgba(237, 181, 27, 0.15);
            background: rgba(255,255,255,0.02);
            transform: translateY(-2px);
            transition: all 0.8s ease;
        }
        .experience-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold);
            opacity: 0.18;
            line-height: 1;
            margin-bottom: 0.6rem;
        }
        .experience-text {
            color: rgba(255,255,255,0.65);
            font-size: 0.9rem;
            line-height: 1.65;
            margin-bottom: 1rem;
            font-weight: 300;
        }
        .experience-author {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            padding-top: 0.8rem;
            border-top: 1px solid rgba(255,255,255,0.042);
        }
        .experience-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(237, 181, 27, 0.35), rgba(237, 181, 27, 0.25));
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            font-weight: 500;
            font-size: 0.75rem;
            flex-shrink: 0;
            letter-spacing: 0.5px;
        }
        .experience-name {
            color: rgba(255,255,255,0.8);
            display: block;
            font-size: 0.85rem;
            font-weight: 400;
        }
        .experience-meta {
            color: rgba(255,255,255,0.55);
            font-size: 0.75rem;
            font-weight: 300;
        }
        @keyframes scrollExperiences {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }


/* ===== PERSÖNLICHE BERATUNG ===== */
        .personal-advice {
            background: var(--black);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 2;
            padding: 2.5rem 6% 5rem;
        }
        .personal-advice-inner {
            max-width: 900px;
            margin: 0 auto;
        }
        .personal-advice-content {
            position: relative;
            z-index: 1;
        }
        .personal-advice-content h2 {
            color: var(--white);
            font-size: clamp(1.6rem, 2.8vw, 2.1rem);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.4;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .personal-advice-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .personal-advice-item {
            padding: 1rem;
        }
        .personal-advice-item .icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1rem;
            color: var(--gold);
            opacity: 0.9;
        }
        .personal-advice-item h3 {
            font-size: 1.25rem;
            margin-bottom: 0.3rem;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .personal-advice-item p {
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.5;
            font-weight: 300;
        }

        

/* ===== ÜBER MICH ===== */
        .about-section {
            background: var(--off-white);
            position: relative;
            z-index: 2;
            padding: 5.5rem 6%;
        }
        .about-inner {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .about-header {
            text-align: center;
            margin-bottom: 1.6rem;
        }
        .about-header h2 {
            font-size: clamp(2.2rem, 4vw, 3rem);
            margin-bottom: 2rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .about-image {
            margin-bottom: 1.8rem;
            text-align: center;
        }
        .about-profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--gold);
            display: block;
            margin: 0 auto;
            transition: transform 0.6s ease, box-shadow 0.6s ease;
        }
        .about-image:hover .about-profile-img {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(237, 181, 27, 0.15);
        }
        .about-name {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.3rem, 2vw, 1.55rem);
            color: #0F0F0F;
            font-weight: 500;
            margin-top: 1rem;
            margin-bottom: 2rem;
            letter-spacing: -0.2px;
            line-height: 1.35;
        }
        .about-content {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.75;
            margin-bottom: 1.2rem;
            font-weight: 300;
        }
        .about-values {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        .about-value {
            text-align: center;
        }
        .about-value .icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 0.75rem;
            color: var(--gold);
        }
        .about-value span {
            font-size: 0.95rem;
            color: var(--gray);
            font-weight: 500;
        }



/* ===== BERATUNG ANFRAGEN ===== */
        .contact-section {
            background: var(--black);
            color: var(--white);
            position: relative;
            z-index: 2;
            padding: 8rem 6%;
        }
        .contact-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 5rem;
            max-width: 1000px;
            margin: 0 auto;
            align-items: start;
        }
        .contact-info h2 {
            color: var(--white);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            margin-bottom: 1.2rem;
            font-weight: 400;
            letter-spacing: -0.3px;
        }
        .contact-lead {
            color: rgba(255,255,255,0.7);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            font-weight: 300;
        }
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .contact-row {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            color: inherit;
            transition: opacity 0.3s ease;
        }
        .contact-row:hover {
            opacity: 0.85;
        }
        .contact-row:hover .contact-row-text {
            color: var(--gold);
        }
        .contact-row .icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .contact-row .icon svg {
            width: 18px;
            height: 18px;
            stroke: rgba(237, 181, 27, 0.5);
            transition: stroke 0.3s ease;
        }
        .contact-row:hover .icon svg {
            stroke: rgba(237, 181, 27, 0.7);
        }
        .contact-row-text {
            color: rgba(255,255,255,0.7);
            font-size: 1.05rem;
            font-weight: 300;
            letter-spacing: 0.2px;
            transition: color 0.3s ease;
        }
        .contact-row-static {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: default;
        }
        .contact-row-static .icon svg {
            stroke: rgba(237, 181, 27, 0.35);
        }
        .contact-row-static .contact-row-text {
            color: rgba(255,255,255,0.45);
        }
        .contact-socials {
            display: flex;
            gap: 1.6rem;
            margin-top: 1.5rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255,255,255,0.042);
        }
        .contact-socials a {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            opacity: 0.65;
        }
        .contact-socials a .icon {
            width: 22px;
            height: 22px;
        }
        .contact-socials a .icon svg {
            width: 100%;
            height: 100%;
        }
        .contact-socials a:hover {
            transform: scale(1.08);
            opacity: 1;
        }
        .contact-form {
            padding: 0;
            background: transparent;
            border: none;
        }
        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.22);
            color: var(--white);
            padding: 0.6rem 0;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            outline: none;
            transition: all 0.4s ease;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.55);
            font-weight: 300;
        }
        .form-group input:hover,
        .form-group textarea:hover,
        .form-group select:hover {
            border-bottom-color: rgba(255,255,255,0.18);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-bottom-color: rgba(237, 181, 27, 0.4);
        }
        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            color: rgba(255,255,255,0.4);
        }
        .form-group select option {
            background: var(--black);
            color: var(--white);
        }
        .form-group select option:not([value=""]) {
            color: var(--white);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 50px;
            line-height: 1.6;
        }
        .form-consent {
            margin-bottom: 0.5rem;
        }
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.82rem;
            font-weight: 300;
            line-height: 1.55;
            color: rgba(255,255,255,0.5);
        }
        .checkbox-label input[type="checkbox"] {
            width: 16px;
            height: 16px;
            min-width: 16px;
            min-height: 16px;
            margin-top: 0.1rem;
            accent-color: var(--gold);
            cursor: pointer;
            flex-shrink: 0;
        }
        .checkbox-label a {
            color: var(--gold);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }
        .checkbox-label a:hover {
            border-bottom-color: var(--gold);
        }
        .btn-contact {
            background: transparent;
            color: var(--gold);
            padding: 0 2rem;
            height: 40px;
            line-height: 40px;
            border: 1px solid rgba(237, 181, 27, 0.3);
            border-radius: 2px;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.78rem;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            margin-top: 1.5rem;
        }
        .btn-contact:hover {
            background: rgba(237, 181, 27, 0.06);
            border-color: rgba(237, 181, 27, 0.5);
            color: var(--gold);
            letter-spacing: 2.2px;
        }


        .btn-about-link {
            background: transparent;
            color: var(--black);
            padding: 0 1.8rem;
            height: 40px;
            line-height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            border-radius: 2px;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.8rem;
            letter-spacing: 0.8px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            margin-top: 1.5rem;
        }
        .btn-about-link:hover {
            border-color: rgba(237, 181, 27, 0.5);
            background: rgba(237, 181, 27, 0.06);
            color: var(--gold-dark);
            letter-spacing: 1.2px;
        }
@media (max-width: 1250px) {
            nav { gap: 1.6rem; }
            nav a, .dropdown-toggle { font-size: 0.88rem; }

            .logo-container .logo-icon,
            .logo-container .logo-text {
                height: 40px;
            }

            .btn-nav-elegant {
                padding: 0.62rem 1.15rem;
                font-size: 0.72rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 1024px) {
            .footer-logo-icon,
            .footer-logo-text {
                height: 40px;
            }
            .start-hero-logo-icon {
                width: 100px;
            }
            .start-hero-logo-text {
                max-width: 400px;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin: 0 auto;
            }
            .personal-advice-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
        }

        @media (max-width: 880px) {
            header {
                justify-content: center;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                min-height: 82px;
                align-items: center;
                overflow: visible;
            }

            .logo-container {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0.3rem;
                width: auto;
                margin: 0 auto;
                transform: none;
            }

            .logo-container .logo-icon {
                height: 36px;
                margin: 0 auto;
                display: block;
            }

            .logo-container .logo-text {
                height: 26px;
                margin: 0 auto;
                display: block;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                z-index: 1100;
            }

            nav { display: none; }

            nav.mobile-open {
                display: flex;
                position: fixed;
                top: 82px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 1.2rem 1rem;
                gap: 0.7rem;
                border-top: 1px solid rgba(237, 181, 27, 0.2);
                z-index: 999;
            }

            nav.mobile-open a,
            nav.mobile-open .dropdown-toggle { padding: 0.55rem 0; }
            nav.mobile-open a::after,
            nav.mobile-open .dropdown-toggle::after { bottom: 0; }

            nav.mobile-open .btn-nav-elegant {
                padding-left: 1.8rem;
                padding-right: 1.8rem;
            }

            .dropdown {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .dropdown-toggle {
                display: inline-flex;
                width: auto;
                justify-content: center;
            }

            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                background: transparent;
                border: none;
                padding: 0.5rem 0;
                min-width: auto;
                width: 100%;
                display: none;
                text-align: center;
                align-items: center;
            }

            .dropdown-menu::before { display: none; }

            .dropdown-menu a {
                padding: 0.42rem 0;
                font-size: 0.9rem;
                color: rgba(255,255,255,0.7);
                text-align: center;
                line-height: 1.35;
            }

            .dropdown.active .dropdown-menu {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .dropdown-toggle svg { transition: transform 0.3s ease; }
            .dropdown.active .dropdown-toggle svg { transform: rotate(180deg); }

            .start-page-content {
                padding-top: 82px;
                min-height: 90px;
            }
        }

        @media (max-width: 768px) {
            .hero-sticky-wrapper {
                height: auto;
            }
                        .start-hero {
                position: relative;
                min-height: 85vh;
                padding: 4.5rem 6% 3rem;
            }
            .why-gm {
                margin-top: 0 !important;
            }
            .start-hero-inner {
                margin-top: -5vh;
            }
            .start-hero-logo {
                flex-direction: column;
                align-items: center;
                gap: 0.7rem;
                margin-bottom: 1.8rem;
            }
            .start-hero-logo-icon {
                width: 76px;
            }
            .start-hero-logo-text {
                max-width: 266px;
            }
            .start-hero-meta {
                font-size: 0.68rem;
                letter-spacing: 3px;
                margin-bottom: 1.6rem;
            }
            .start-hero-text {
                font-size: 1rem;
                line-height: 1.75;
                margin-bottom: 0.8rem;
            }
            .start-hero-actions {
                gap: 0.7rem;
                margin-top: 1.2rem;
            }
            .btn-start-hero-primary,
            .btn-start-hero-secondary {
                width: 100%;
                max-width: 280px;
                height: 44px;
                line-height: 44px;
                font-size: 0.78rem;
            }
.footer-logo-container {
                flex-direction: column;
                align-items: center;
                gap: 0.3rem;
                margin-bottom: 0.8rem;
                transform: translateY(-3px);
            }

            .footer-logo-icon { height: 36px; }
            .footer-logo-text { height: 28px; }

            .footer-brand {
                text-align: center;
                transform: translateY(-4px);
            }

            .footer-brand p {
                text-align: center;
                margin-top: 0.3rem;
                font-size: 0.8rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding-left: 0;
                margin-bottom: 1.2rem;
            }

            .footer-links {
                margin-left: 0 !important;
                padding-left: 0;
            }

            .footer-links h4 {
                margin-bottom: 0.7rem;
                font-size: 0.7rem;
            }

            .footer-links a {
                padding-left: 0.45rem;
                font-size: 0.78rem;
                margin-bottom: 0.25rem;
            }

            .footer-closing {
                padding: 0.6rem 0 0.5rem;
            }

            .footer-closing p {
                font-size: 0.6rem;
                letter-spacing: 2.5px;
                color: rgba(255,255,255,0.5);
            }

            .footer-bottom {
                padding-top: 0.7rem;
                font-size: 0.7rem;
            }

            footer { padding: 2.4rem 6% 1rem; }
        }

    
        /* Mobile Why-GM override */
        @media (max-width: 768px) {
            .why-gm-grid {
                grid-template-columns: 1fr !important;
                gap: 4.5rem !important;
                max-width: 420px !important;
                margin: 0 auto !important;
            }
            .why-gm-card {
                width: 100% !important;
                padding: 0 1.5rem !important;
                text-align: center !important;
            }
            .why-gm-card .icon {
                width: 58px !important;
                height: 58px !important;
                margin: 0 auto 1.8rem !important;
            }
        }



        /* Mobile Contact final override */
        @media (max-width: 768px) {
            .contact-section {
                padding: 4.5rem 6% 3rem !important;
            }
            .contact-inner {
                display: flex !important;
                flex-direction: column !important;
                gap: 2.5rem !important;
                max-width: 420px !important;
                margin: 0 auto !important;
            }
            .contact-info,
            .contact-form {
                width: 100% !important;
            }
            .contact-info {
                text-align: left !important;
            }
            .contact-details {
                align-items: flex-start !important;
            }
            .contact-row {
                width: 100%;
                align-items: flex-start;
            }
            .contact-row-text {
                word-break: break-word;
                line-height: 1.5;
            }
            .form-group input,
            .form-group textarea,
            .form-group select {
                width: 100% !important;
                min-width: 0 !important;
                font-size: 1rem;
                border-bottom-color: rgba(255,255,255,0.18) !important;
            }
            .form-group input::placeholder,
            .form-group textarea::placeholder {
                color: rgba(255,255,255,0.55) !important;
            }
            .checkbox-label {
                font-size: 0.78rem !important;
                line-height: 1.5 !important;
            }
            .checkbox-label input[type="checkbox"] {
                width: 15px !important;
                height: 15px !important;
                min-width: 15px !important;
                min-height: 15px !important;
                margin-top: 0.05rem !important;
            }
            .btn-contact {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                width: 100% !important;
                max-width: 260px !important;
                margin: 1.8rem auto 0 !important;
                white-space: nowrap !important;
                height: 46px !important;
                line-height: 46px !important;
                letter-spacing: 1.4px !important;
                font-size: 0.78rem !important;
            }
            .contact-socials {
                justify-content: flex-start !important;
            }
        }

        

        /* Mobile Footer final override */
        @media (max-width: 768px) {
            .footer-content {
                max-width: 360px !important;
                margin: 0 auto 1.4rem !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 1.7rem !important;
                padding-left: 0 !important;
            }
            .footer-brand {
                max-width: 360px !important;
                margin: 0 auto !important;
                text-align: center !important;
            }
            .footer-brand p {
                max-width: 320px !important;
                margin: 0.3rem auto 0 !important;
                text-align: center !important;
            }
            .footer-links {
                width: 100% !important;
                max-width: 220px !important;
                margin-left: auto !important;
                margin-right: auto !important;
                text-align: center !important;
                padding-left: 0 !important;
            }
            .footer-links h4 {
                text-align: center !important;
                padding-left: 0 !important;
            }
            .footer-links a {
                text-align: center !important;
                padding-left: 0 !important;
                color: rgba(255,255,255,0.55);
                white-space: nowrap !important;
            }
            .footer-closing p {
                font-size: 0.58rem !important;
                letter-spacing: 2px !important;
                color: rgba(255,255,255,0.5) !important;
                max-width: 300px !important;
                margin: 0 auto !important;
                line-height: 1.6 !important;
            }
        }


/* ===== AI-First Wide Card ===== */
@media (min-width: 1025px) {
  .pillar-card.pillar-card-wide {
    grid-column: 1 / -1;
  }

  .pillar-card-wide .pillar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 2.1rem 2.5rem;
  }

  .pillar-card-wide .pillar-title {
    margin-bottom: 0;
  }

  .pillar-card-wide .pillar-text {
    margin-bottom: 0;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .pillar-card-wide .pillar-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .pillar-card-wide .pillar-list li {
    padding: 0.25rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
  }

  .pillar-card-wide .pillar-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.6;
  }

  .pillar-card-wide .pillar-list li:not(:last-child)::after {
    content: none;
  }

  .pillar-card-wide .pillar-link {
    align-self: center;
    margin-top: 0.4rem;
  }
}

@media (max-width: 1024px) {
  .pillar-card-wide .pillar-image {
    width: 100%;
    height: auto;
    display: block;
  }
}
