/* ==========================================================================
   Lumina Via — Premium Style Sheet (Warm & Hopeful Theme)
   ========================================================================== */

/* --- Design Tokens / Variables --- */
:root {
    /* Color Palette - Warm, Cozy & Bright */
    --color-bg-body: #FAF6EE;          /* Warm Ivory / Parchment */
    --color-bg-section-alt: #F1E9DA;   /* Warm Champagne Sand */
    --color-bg-card: #FFFFFF;          /* Pure white for visual separation */
    
    --color-primary: #BFA15F;          /* Warm Champagner Gold */
    --color-primary-light: #D5C08D;
    --color-primary-dark: #A6884C;     /* Slightly deeper gold for text readability */
    
    --color-sage: #5A6D5E;             /* Soft Sage Green */
    --color-sage-light: #CBD4CD;
    --color-sage-bg: #EAECE6;          /* Warm Sage background */
    
    /* Text Colors - Warm Espresso / Dark Charcoal */
    --text-high: #2A241E;
    --text-mid: #544E45;
    --text-low: #8A8074;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #D5C08D 0%, #BFA15F 50%, #A6884C 100%);
    --light-gradient: linear-gradient(180deg, #FAF6EE 0%, #F1E9DA 100%);
    --glow-gradient: radial-gradient(circle, rgba(191, 161, 95, 0.08) 0%, rgba(250, 246, 238, 0) 70%);

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Shadows & Borders */
    --shadow-premium: 0 20px 45px rgba(42, 36, 30, 0.05); /* Warm soft shadow */
    --shadow-soft: 0 10px 30px rgba(42, 36, 30, 0.02);
    --border-glass: 1px solid rgba(42, 36, 30, 0.06);
    --border-glass-dark: 1px solid rgba(255, 255, 255, 0.1);
    --border-gold: 1px solid rgba(191, 161, 95, 0.22);
    
    /* Spacing & Utilities */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.3s ease;
    --border-radius: 4px; /* Editorial square-ish corners */
    --border-radius-lg: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg-body);
    color: var(--text-mid);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-high);
}

p {
    font-size: 1rem;
    font-weight: 400; /* Regular weight for crisp legibility */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

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

/* --- Global Layout Utilities --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.section-padding {
    padding: 8rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-center {
    text-align: center;
}

.accent-text {
    font-family: var(--font-heading);
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Headings */
.section-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-primary-dark);
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-high);
}

.section-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(191, 161, 95, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 161, 95, 0.4);
    opacity: 0.95;
}

.btn-secondary {
    background: transparent;
    color: var(--text-high);
    border: 1px solid rgba(42, 36, 30, 0.2);
}

.btn-secondary:hover {
    background: rgba(42, 36, 30, 0.02);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: transparent;
    color: var(--color-primary-dark);
    border: 1px solid var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: rgba(191, 161, 95, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 161, 95, 0.1);
}

.btn-whatsapp-icon {
    flex-shrink: 0;
}

.btn-text {
    background: transparent;
    color: var(--color-primary-dark);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.btn-text:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.btn-primary .btn-text {
    color: #FFFFFF;
    padding: 0;
    font-size: inherit;
    letter-spacing: inherit;
}

.btn-primary:hover .btn-text {
    color: #FFFFFF;
    text-decoration: none;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 246, 238, 0.98); /* Opaque ivory base to prevent background bleed-through */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-glass);
    transition: var(--transition-quick);
}

.header.scrolled {
    padding: 0.75rem 0;
    background: #FAF6EE; /* 100% solid on scroll for maximum contrast */
    box-shadow: 0 10px 30px rgba(42, 36, 30, 0.06); /* Slightly deeper shadow for separation */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-quick);
    max-width: 1350px;
    width: 94%;
}

.header.scrolled .header-container {
    height: 70px;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 42px;
    width: auto;
    transition: var(--transition-quick);
}

.header.scrolled .logo-icon {
    height: 34px;
}

.logo-area:hover .logo-icon {
    transform: rotate(-10deg) scale(1.08);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600; /* Increased weight for logo visibility */
    letter-spacing: 0.05em;
    color: var(--text-high);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.68rem; /* Slightly larger for easier reading */
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mid); /* Higher contrast color (#544E45) than gold */
    margin-top: 3px;
    font-weight: 600; /* Medium bold for crisp rendering */
}

@media (max-width: 1150px) {
    .logo-tagline {
        display: none;
    }
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-high); /* Maximum contrast dark espresso (#2A241E) */
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* Thicker hover line for visibility */
    background-color: var(--color-primary-dark); /* Deeper gold accent */
    transition: var(--transition-quick);
}

.nav-link:hover {
    color: var(--color-primary-dark);
}

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

.btn-cta {
    background: transparent;
    color: var(--text-high) !important; /* Extremely high contrast (#2A241E) */
    border: 1.5px solid var(--color-primary-dark); /* Solid warm gold outline */
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-cta:hover {
    background: var(--text-high); /* Deep espresso solid fill on hover */
    color: var(--color-bg-body) !important; /* Ivory text on dark background */
    border-color: var(--text-high);
    transform: translateY(-1px);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-high);
    transition: var(--transition-quick);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-high);
    transition: var(--transition-quick);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

/* Hero Slider Background */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    transform: scale(1.05);
    transition-property: opacity, transform;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.8s ease-in-out, transform 8s ease-out;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #FFFFFF; /* High contrast white over dark hero images */
    max-width: 800px;
}

.hero-content .accent-text {
    background: linear-gradient(135deg, #FFF 0%, #DFBA73 60%, #C5A880 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-promise {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.promise-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.promise-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary-light);
}

.promise-butterfly {
    height: 20px;
    width: auto;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF; /* Pure white for higher contrast */
    font-weight: 400; /* Regular weight instead of thin 300 */
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 650px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6); /* Slightly stronger shadow */
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-actions .btn-secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

/* Slider Dots */
.hero-slider-nav {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-quick);
}

.slider-dot.active {
    background: #FFFFFF;
    transform: scale(1.4);
    box-shadow: 0 0 8px #FFFFFF;
}

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mouse {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background-color: var(--color-primary-light);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.8s infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* --- Philosophy Section ("Der Ansatz") --- */
.philosophy-section {
    background-color: var(--color-bg-body);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--glow-gradient);
    pointer-events: none;
    z-index: 1;
}

.philosophy-image-container {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: var(--border-glass);
    border-radius: var(--border-radius);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 6s ease-out;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.glowing-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(191, 161, 95, 0.1) 0%, rgba(0,0,0,0) 75%);
    z-index: -1;
}

.philosophy-content {
    position: relative;
    z-index: 2;
}

.philosophy-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-high);
    font-weight: 500; /* Increased to Medium for a crisp editorial feel */
}

.philosophy-text-blocks p {
    color: var(--text-mid);
    line-height: 1.8;
}

.quote-block {
    position: relative;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-primary-dark);
    margin: 1.5rem 0;
    line-height: 1.2;
}

.quote-mark {
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: rgba(191, 161, 95, 0.25);
    line-height: 1;
}

/* --- Manifest Section --- */
.manifest-section {
    background-color: var(--color-bg-section-alt);
    position: relative;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.manifest-card {
    padding: 4rem 3rem;
    border: var(--border-gold);
    background: #FFFFFF;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.manifest-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(191, 161, 95, 0.05) 0%, rgba(0,0,0,0) 70%);
}

.manifest-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-primary-dark);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.manifest-text {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-high);
}

.manifest-description {
    color: var(--text-mid);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.manifest-goals {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.goal-pill {
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    background: rgba(191, 161, 95, 0.05);
    border: var(--border-gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-high);
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-quick);
}

.goal-pill:hover {
    background: rgba(191, 161, 95, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(191, 161, 95, 0.08);
}

.manifest-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.manifest-butterfly {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(191, 161, 95, 0.15));
    animation: float-slow 4s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

/* --- Intro / Explanation Section --- */
.intro-section {
    background-color: var(--color-bg-body);
    position: relative;
    border-bottom: var(--border-glass);
}

.intro-headline {
    font-size: 2.8rem;
    line-height: 1.25;
    color: var(--text-high);
    font-family: var(--font-heading);
}

.intro-headline span.accent-text {
    display: inline-block;
    margin-top: 1.5rem;
    font-style: italic;
    font-size: 3.2rem;
    line-height: 1.15;
}

.intro-question {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 1rem;
}

.intro-question strong {
    color: var(--text-high);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    display: block;
    margin-top: 0.25rem;
}

.intro-answer {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.intro-answer em {
    font-style: italic;
    font-weight: 600;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.intro-divider {
    height: 1px;
    background: var(--border-gold);
    margin: 2rem 0;
    width: 60px;
}

.intro-list-title {
    font-weight: 600;
    color: var(--text-high);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.intro-list {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
}

.intro-list li {
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
    color: var(--text-high);
    font-size: 1.05rem;
}

.intro-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

.intro-moto {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 1rem 0 2.5rem 0;
    line-height: 1.2;
}

.intro-closing-box {
    border-left: 2px solid var(--color-primary);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.closing-item {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-mid);
    margin: 0;
}

.closing-item.highlight {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-high);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .intro-headline {
        font-size: 2rem;
    }
    .intro-headline span.accent-text {
        font-size: 2.2rem;
        margin-top: 1rem;
    }
    .intro-list {
        grid-template-columns: 1fr;
    }
    .intro-moto {
        font-size: 1.6rem;
    }
    .intro-closing-box .closing-item.highlight {
        font-size: 1.35rem;
    }
}

/* --- Ecosystem Section --- */
.ecosystem-section {
    background: var(--color-bg-body);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

/* Card Visual System */
.ecosystem-card {
    background-color: var(--color-bg-card);
    border: var(--border-glass);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
    border-radius: var(--border-radius);
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(191, 161, 95, 0.3);
    box-shadow: var(--shadow-premium);
}

/* Card layout sizing */
.card-reisen,
.card-coaching,
.card-retreats,
.card-community,
.card-lifestyle,
.card-unternehmen {
    grid-column: span 2;
}

/* Card list styling */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.card-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-mid);
    font-weight: 300;
}

.card-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 0.8rem;
}

.card-image-holder {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.card-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecosystem-card:hover .card-image-holder img {
    transform: scale(1.08);
}

.card-overlay {
    /* Blend slide images into warm white card content */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 1) 100%);
}

.card-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #FFFFFF;
}

.card-num {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: rgba(191, 161, 95, 0.08);
    line-height: 1;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.ecosystem-card:hover .card-num {
    color: rgba(191, 161, 95, 0.18);
    transform: scale(1.1);
}

.card-headline {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-high);
}

.card-tagline {
    font-size: 0.85rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.card-desc {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-weight: 300;
}

.card-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-high);
    border-bottom: 1px solid rgba(42, 36, 30, 0.15);
    padding-bottom: 4px;
    align-self: flex-start;
}

.card-action-link .arrow {
    transition: transform 0.3s ease;
}

.card-action-link:hover {
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.card-action-link:hover .arrow {
    transform: translateX(5px);
}

/* Highlight style when navigated to from Quiz */
.ecosystem-card.quiz-highlight {
    animation: card-glow-pulse 2s ease-in-out 3;
    border-color: var(--color-primary);
}

@keyframes card-glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(191, 161, 95, 0.3); }
    50% { box-shadow: 0 0 30px 10px rgba(191, 161, 95, 0.15); border-color: var(--color-primary); }
    100% { box-shadow: 0 0 0 0 rgba(191, 161, 95, 0.3); }
}

/* --- Pathfinder Quiz Section --- */
.pathfinder-section {
    background-color: var(--color-bg-section-alt);
    position: relative;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.pathfinder-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 109, 94, 0.04) 0%, rgba(250, 246, 238, 0) 70%);
    pointer-events: none;
}

.pathfinder-wrapper {
    background: #FFFFFF;
    border: var(--border-glass);
    padding: 4.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    border-radius: var(--border-radius-lg);
}

.pathfinder-intro-text {
    color: var(--text-mid);
    font-size: 1.05rem;
    margin: 1rem auto 3rem;
    max-width: 600px;
}

.quiz-container {
    position: relative;
    margin-top: 3rem;
    min-height: 380px;
}

.quiz-progress-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(42, 36, 30, 0.05);
    margin-bottom: 3.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.quiz-progress {
    height: 100%;
    background: var(--gold-gradient);
    width: 0;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Quiz Steps */
.quiz-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.quiz-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.quiz-question {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-high);
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.quiz-option {
    background: #FAF6EE;
    border: var(--border-glass);
    padding: 1.25rem 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: var(--transition-quick);
    border-radius: var(--border-radius);
    color: var(--text-mid);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
}

.option-letter {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    border: var(--border-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 161, 95, 0.04);
    transition: var(--transition-quick);
    flex-shrink: 0;
}

.option-text {
    flex-grow: 1;
    color: var(--text-high);
}

.quiz-option:hover {
    background: rgba(191, 161, 95, 0.03);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.quiz-option:hover .option-letter {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: transparent;
}

/* Quiz Result Step */
.quiz-result-step {
    text-align: center;
}

.result-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon {
    font-size: 2.5rem;
    z-index: 2;
}

.pulse-gold {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(191, 161, 95, 0.12);
    animation: radial-pulse 2s infinite;
    z-index: 1;
}

@keyframes radial-pulse {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.result-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.result-title {
    font-size: 3rem;
    color: var(--text-high);
    margin-bottom: 1.5rem;
}

.result-description {
    color: var(--text-mid);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* --- About Me Section --- */
.about-section {
    background-color: var(--color-bg-section-alt);
    color: var(--text-mid);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.about-content {
    padding-right: 2rem;
}

.about-content .section-title {
    color: var(--text-high);
}

.about-content .lead-text {
    color: var(--text-high);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.signature-block {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: flex-start;
}

.signature-butterfly {
    position: absolute;
    left: 210px;
    bottom: -10px;
    height: 48px;
    width: auto;
    opacity: 0.12;
    transform: rotate(15deg);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.signature-block:hover .signature-butterfly {
    opacity: 0.35;
    transform: rotate(25deg) scale(1.1);
}

.signature-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-primary-dark);
    line-height: 1;
}

.signature-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-low);
    margin-top: 5px;
    font-weight: 600;
}

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

.about-image-container .image-wrapper {
    position: relative;
    border: none;
    box-shadow: 0 30px 60px rgba(42, 36, 30, 0.08);
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.frame-deco {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 1px solid rgba(191, 161, 95, 0.3);
    pointer-events: none;
    border-radius: var(--border-radius);
    z-index: -1;
    transition: var(--transition-smooth);
}

.about-image-container .image-wrapper:hover .frame-deco {
    transform: scale(0.96);
    border-color: var(--color-primary-dark);
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--color-bg-body);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(191, 161, 95, 0.06) 0%, rgba(250, 246, 238, 0) 70%);
    pointer-events: none;
}

.contact-info {
    padding-right: 3rem;
}

.contact-desc {
    color: var(--text-mid);
    font-size: 1.15rem;
    margin-bottom: 3.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 4rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.detail-icon {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    background: #FFFFFF;
    border: var(--border-glass);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.detail-text strong {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-high);
    display: block;
    margin-bottom: 0.25rem;
}

.detail-text span {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 300;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    background: var(--color-sage-bg);
    border: 1px solid rgba(90, 109, 94, 0.15);
    max-width: 440px;
}

.badge-icon {
    font-size: 1.8rem;
    color: var(--color-sage);
}

.badge-text strong {
    display: block;
    color: var(--color-sage);
    font-size: 0.95rem;
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--color-sage);
    opacity: 0.8;
}

/* Contact Form Container */
.contact-form-container {
    background: #FFFFFF;
    border: var(--border-glass);
    padding: 3.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    border-radius: var(--border-radius-lg);
}

.form-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-high);
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-mid);
    margin-bottom: 0.6rem;
}

.form-input {
    width: 100%;
    background-color: #FAF6EE; /* Matches warm canvas */
    border: var(--border-glass);
    border-radius: var(--border-radius);
    padding: 1.1rem 1.25rem;
    color: var(--text-high);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(191, 161, 95, 0.08);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BFA15F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.2rem;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
}

/* Checkbox Style */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 2rem;
}

.form-checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox-label {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.4;
    cursor: pointer;
}

/* Error states */
.form-input.invalid {
    border-color: #E05C5C;
}

.error-message {
    font-size: 0.75rem;
    color: #E05C5C;
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    display: none;
}

.form-checkbox.invalid .form-checkbox-label {
    color: #E05C5C;
}

/* Loading spinner inside button */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-low);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(42, 36, 30, 0.08);
}

.form-divider:not(:empty)::before {
    margin-right: .75em;
}

.form-divider:not(:empty)::after {
    margin-left: .75em;
}

/* Form Success View */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 0;
    animation: fade-in 0.6s ease;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: var(--color-sage-bg);
    border: 1px solid var(--color-sage);
    color: var(--color-sage);
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.form-success h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-high);
}

.form-success p {
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 440px;
}

@keyframes fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Footer --- */
.footer {
    background-color: var(--color-bg-section-alt);
    color: var(--text-mid);
    padding: 6rem 0 3rem;
    border-top: var(--border-glass);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-high);
    display: block;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
    font-weight: 300;
}

.footer-heading {
    font-size: 1.25rem;
    color: var(--text-high);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--text-high);
    padding-left: 5px;
}

.footer-bottom {
    border-top: var(--border-glass);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-low);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.core-promises-footer {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    font-weight: 600;
}

/* --- Entrance Animations (Reveal on scroll) --- */
.reveal, .reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    transform: scale(0.97);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-up.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Transition delays for list elements */
.reveal-up.active:nth-child(1) { transition-delay: 0.1s; }
.reveal-up.active:nth-child(2) { transition-delay: 0.2s; }
.reveal-up.active:nth-child(3) { transition-delay: 0.3s; }
.reveal-up.active:nth-child(4) { transition-delay: 0.4s; }
.reveal-up.active:nth-child(5) { transition-delay: 0.5s; }
.reveal-up.active:nth-child(6) { transition-delay: 0.6s; }

/* --- Products Section --- */
.products-section {
    background-color: var(--color-bg-section-alt);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    position: relative;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.product-link-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #FFFFFF;
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    color: inherit;
    text-decoration: none;
}

.product-link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(191, 161, 95, 0.3);
    box-shadow: var(--shadow-premium);
}

.product-card-icon {
    height: 48px;
    width: auto;
    transition: var(--transition-quick);
}

.product-link-card:hover .product-card-icon {
    transform: rotate(-12deg) scale(1.1);
}

.product-card-info {
    flex-grow: 1;
}

.product-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--text-high);
    font-family: var(--font-heading);
    font-weight: 500;
}

.product-card-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 300;
}

.product-card-desc strong {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.product-card-arrow {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    transition: transform 0.3s ease;
}

.product-link-card:hover .product-card-arrow {
    transform: translateX(8px);
}

/* --- Visitor Counter --- */
.footer-bottom-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-low);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.visitor-counter .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.visitor-counter .pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 50%;
    animation: dot-pulse-live 2s infinite;
}

@keyframes dot-pulse-live {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.visitor-counter .live-count {
    color: #4CAF50;
    font-weight: 600;
}

/* --- Responsive Adaptations (Mobile & Tablet) --- */
@media (max-width: 1024px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .ecosystem-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .card-reisen,
    .card-coaching,
    .card-retreats,
    .card-community,
    .card-lifestyle,
    .card-unternehmen {
        grid-column: span 3;
    }
    
    .about-img {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    /* Header toggle / Mobile Menu activated at 1024px */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #FAF6EE; /* Warm Ivory background */
        border-left: var(--border-glass);
        z-index: 1050;
        padding: 100px 2.5rem 2.5rem;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        display: inline-flex;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem;
    }
    
    /* Hamburger Transform to X when open */
    .nav-toggle[aria-expanded="true"] .hamburger {
        background: transparent;
    }
    
    .nav-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

@media (max-width: 768px) {
    /* Hero adjusts */
    .hero-section {
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Ecosystem cards */
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-reisen,
    .card-coaching,
    .card-retreats,
    .card-community,
    .card-lifestyle,
    .card-unternehmen {
        grid-column: span 1;
    }
    
    /* Pathfinder adjustments */
    .pathfinder-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .quiz-question {
        font-size: 1.6rem;
    }
    
    .quiz-option {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .result-title {
        font-size: 2.2rem;
    }
    
    .result-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-actions .btn {
        width: 100%;
    }
    
    /* Contact Form Adjust */
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom-info {
        align-items: center;
    }
    
    /* Products Section Mobile Adjusts */
    .product-link-card {
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
    }
    
    .product-card-title {
        font-size: 1.15rem;
    }
    
    .product-card-icon {
        height: 38px;
    }
}
