/* Modern AlpenLeads CSS - Harmonisches Alpine Design */

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

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* ===== HARMONISCHE ALPINE FARBPALETTE ===== */
:root {
    --navbar-height: 90px;
    /* Alpine Grüntöne - Hauptfarben */
    --alpine-forest: #1a4623;       /* Dunkler Bergwald */
    --alpine-moss: #2d5a31;         /* Alpenmoos */
    --alpine-meadow: #4a7c59;       /* Bergwiese */
    --alpine-mint: #6b9b74;         /* Frisches Alpengrün */
    --alpine-sage: #8fb499;         /* Salbeigrün */
    --alpine-mist: #b3ccb8;         /* Nebel über den Bergen */

    /* Neutrale Töne */
    --snow-white: #ffffff;          /* Alpenschnee */
    --glacier-ice: #f8fafb;         /* Gletschereis */
    --morning-mist: #f1f5f2;        /* Morgennebel */
    --stone-gray: #e8ede9;          /* Steingrau */
    --pebble-gray: #d2ddd4;         /* Kieselgrau */
    
    /* Text Farben */
    --text-primary: #1a2922;        /* Dunkles Tannengrün */
    --text-secondary: #4a5d4f;      /* Mittleres Grau-Grün */
    --text-muted: #6b7c71;          /* Gedämpftes Grün-Grau */
    --text-light: #8a9990;          /* Helles Grau-Grün */

    /* Funktionale Farben */
    --success: var(--alpine-meadow);
    --warning: #d4a574;             /* Warmes Berggelb */
    --danger: #c85a5a;              /* Gedämpftes Rot */
    --info: #5a9cc8;                /* Bergblau */
    
    /* Hintergründe */
    --background: var(--snow-white);
    --surface: var(--glacier-ice);
    --surface-elevated: var(--snow-white);
    
    /* Borders & Schatten */
    --border-light: var(--stone-gray);
    --border-medium: var(--pebble-gray);
    --shadow-color: rgba(26, 70, 35, 0.1);
    --shadow-color-strong: rgba(26, 70, 35, 0.15);
    
    /* Legacy Variablen für Kompatibilität */
    --primary: var(--alpine-moss);
    --primary-light: var(--alpine-meadow);
    --secondary: var(--alpine-mint);
    --accent: var(--morning-mist);
    --white: var(--snow-white);
    --border: var(--border-light);
    
    /* Spacing & Design */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --transition: 0.2s ease;
    --shadow: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -1px var(--shadow-color);
    --shadow-lg: 0 10px 15px -3px var(--shadow-color-strong), 0 4px 6px -2px var(--shadow-color);
    --logos-gap: 60px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-3xl);
}

.highlight {
    color: var(--alpine-moss);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    border-color: var(--alpine-moss);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--alpine-forest), var(--alpine-moss));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--alpine-moss);
    border-color: var(--alpine-moss);
}

.btn-secondary:hover {
    background: var(--alpine-moss);
    color: var(--snow-white);
    transform: translateY(-2px);
}

/* ===== WORLD-CLASS AGENCY NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 83px; /* mehr vertikaler Raum */
    padding: 4px 0; /* sichtbarer Innenabstand oben/unten */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 74px;
    padding: 3px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px var(--shadow-color);
    border-bottom: 1px solid var(--border-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 2;
    height: 100%;
}

.nav-logo .logo {
    max-height: calc(100% - 10px); /* 5px oben/unten */
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo .logo {
    max-height: calc(100% - 8px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--alpine-moss);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--alpine-moss), var(--alpine-meadow));
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: var(--alpine-moss);
}

/* ===== NAVIGATION CTA BUTTON ===== */
.nav-cta {
    margin-left: 1rem;
}

.mobile-cta {
    display: none;
}

.calc-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.promo-badge {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(29, 70, 35, 0.15);
    transition: all 0.2s ease;
    position: relative;
}

.promo-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(29, 70, 35, 0.2);
}

.promo-text {
    position: relative;
    z-index: 1;
}



.nav-calc-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 90, 49, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-calc-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-calc-button:hover::before {
    left: 100%;
}

.nav-calc-button:hover {
    background: linear-gradient(135deg, var(--alpine-forest), var(--alpine-moss));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 49, 0.3);
    color: var(--snow-white);
}

.calc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-text {
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow)) !important;
    color: var(--snow-white) !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    font-size: 0.95rem !important;
    letter-spacing: -0.01em !important;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--alpine-forest), var(--alpine-moss)) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px var(--shadow-color-strong) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--morning-mist);
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        var(--snow-white) 0%, 
        var(--glacier-ice) 50%,
        var(--morning-mist) 100%);
    position: relative;
    padding-top: calc(var(--navbar-height) + env(safe-area-inset-top) + 16px);
    padding-bottom: 80px;
    margin-top: 0;
    overflow: hidden;
}

/* Bessere Anker-Positionierung bei fixer Navbar */
section[id] {
    scroll-margin-top: var(--navbar-height);
}

/* Subtle AlpenLeads logo as background watermark */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("logos/Alpenleads.svg");
    background-repeat: no-repeat;
    background-position: 82% 45%;
    background-size: clamp(360px, 44vw, 860px);
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Hero Left Side */
.hero-left {
    animation: fadeInUp 1s ease-out;
}

/* Hero Badges Container */
.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideDown 0.8s ease-out;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid var(--alpine-mint);
    box-shadow: var(--shadow);
    align-self: flex-start;
}

.badge-flag {
    font-size: 1.2rem;
}

/* Hero Promo Badge */
.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(29, 70, 35, 0.15);
    align-self: flex-start;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-promo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 70, 35, 0.2);
}

.promo-icon {
    font-size: 1.2rem;
}

.promo-main {
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.promo-sub {
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}



.badge-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--alpine-moss);
    letter-spacing: -0.01em;
}

/* Hero Title */
.hero-title {
    margin-bottom: 2rem;
}

.title-line-1 {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-secondary);
    letter-spacing: -0.03em;
}

.highlight-word {
    background: linear-gradient(135deg, var(--alpine-moss) 0%, var(--alpine-mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 520px;
}

/* Hero Features */
.hero-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--snow-white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-check svg {
    width: 20px;
    height: 20px;
    stroke: var(--snow-white);
    stroke-width: 2.5;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--alpine-moss) 0%, var(--alpine-mint) 100%);
    color: var(--snow-white);
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px var(--shadow-color-strong);
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--alpine-forest), var(--alpine-moss));
    box-shadow: 0 12px 40px var(--shadow-color-strong);
}

.cta-text {
    letter-spacing: -0.01em;
}

.cta-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

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

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 3rem;
}

.trust-item {
    text-align: left;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Right Side */
.hero-right {
    animation: fadeInRight 1.2s ease-out;
}

.hero-visual-stack {
    position: relative;
    height: 520px;
    width: 100%;
    max-width: 450px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px var(--shadow-color-strong);
}

/* Website Card */
.card-website {
    width: 340px;
    height: 250px;
    top: 0;
    left: 0;
    z-index: 2;
    animation: slideInCard1 1.5s ease-out;
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pebble-gray);
}

.browser-dots span:first-child {
    background: var(--danger);
}

.browser-dots span:nth-child(2) {
    background: var(--warning);
}

.browser-dots span:nth-child(3) {
    background: var(--success);
}

.url-bar {
    flex: 1;
    background: var(--morning-mist);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-content {
    padding: 20px;
}

.content-block {
    background: linear-gradient(135deg, 
        rgba(74, 124, 89, 0.08), 
        rgba(107, 155, 116, 0.08));
    border-radius: 8px;
    margin-bottom: 12px;
}

.content-block.main {
    height: 45px;
    margin-bottom: 16px;
}

.content-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.content-block.small {
    height: 32px;
    flex: 1;
}

.content-block.medium {
    height: 28px;
    width: 65%;
}

/* Analytics Card */
.card-analytics {
    width: 300px;
    height: 270px;
    top: 160px;
    right: -30px;
    z-index: 3;
    animation: slideInCard2 1.8s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Analytics Icon Styling */
.analytics-icon {
    color: var(--alpine-moss);
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--alpine-moss);
}

.analytics-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.analytics-content {
    padding: 16px;
    height: calc(100% - 60px);
    overflow: hidden;
    box-sizing: border-box;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, 
        rgba(74, 124, 89, 0.06), 
        rgba(107, 155, 116, 0.06));
    border-radius: 10px;
    border: 1px solid rgba(74, 124, 89, 0.1);
    box-sizing: border-box;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.analytics-chart {
    margin-top: 12px;
    padding: 10px;
    background: linear-gradient(135deg, 
        rgba(74, 124, 89, 0.04), 
        rgba(107, 155, 116, 0.04));
    border-radius: 10px;
    border: 1px solid rgba(74, 124, 89, 0.05);
    overflow: hidden;
    box-sizing: border-box;
    height: 70px;
}

.analytics-chart svg {
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInCard1 {
    from {
        opacity: 0;
        transform: translateY(-40px) rotate(-3deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes slideInCard2 {
    from {
        opacity: 0;
        transform: translateY(40px) rotate(3deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* ===== CUSTOMER-FOCUSED SECTIONS ===== */

/* ===== SECTION SEPARATORS ===== */
.section-separator,
.section-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0;
    opacity: 0.5;
}

/* ===== CLIENTS / REFERENCES ===== */
.clients {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--glacier-ice) 0%, var(--morning-mist) 100%);
}

.clients-header {
    text-align: center;
    margin-bottom: 2rem;
}

.clients-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.clients-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

/* subtle pill background behind the track */
.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}
.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--morning-mist), transparent);
}
.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--morning-mist), transparent);
}

.logo-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: var(--snow-white);
    box-shadow: var(--shadow);
}

.logo-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    width: 200%;
    flex-wrap: nowrap;
    min-height: 80px;
    animation: logoScroll 20s linear infinite;
}

.logo-track.no-scroll {
    animation: none;
}

.logo-item { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex: 1;
    min-width: 0;
}

.logo-img {
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%) contrast(0.9);
    opacity: 0.8;
    transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
    object-fit: contain;
    display: block;
}

.logo-item:hover .logo-img {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
    transform: scale(1.03);
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .clients {
        padding: 60px 0;
    }
    .logo-track { 
        gap: 35px; 
        animation-duration: 30s; 
        justify-content: flex-start;
        width: 200%;
    }
    .logo-img { 
        max-height: 50px; 
        max-width: 140px; 
    }
    .logo-mark { width: 84px; height: 28px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .logo-carousel {
        padding: 20px 10px;
    }
    .logo-track {
        gap: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 200%;
        animation-duration: 25s;
    }
    .logo-img {
        max-height: 40px;
        max-width: 100px;
    }
}

/* ===== PROBLEM SECTION - MINIMAL & MODERN ===== */
.problem {
    padding: 120px 0 140px 0;
    background: var(--snow-white);
    position: relative;
}

.problem-content {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.problem-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.problem-item:hover {
    background: linear-gradient(90deg, transparent, var(--morning-mist), transparent);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.problem-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
    min-width: 80px;
    opacity: 0.7;
}

.problem-content-text {
    flex: 1;
}

.problem-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.problem-item p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.problem-visual {
    min-width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--morning-mist), var(--stone-gray));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.problem-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(239, 68, 68, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.problem-visual svg {
    width: 48px;
    height: 48px;
    stroke: var(--danger);
    stroke-width: 1.5;
    z-index: 2;
    position: relative;
}

.problem-cta {
    background: var(--alpine-moss);
    color: var(--snow-white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.problem-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    z-index: 1;
}

.problem-cta p {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    color: var(--snow-white);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ===== RESULTS SECTION ===== */
.results {
    padding: 100px 0;
    background: var(--snow-white);
}

.results-header {
    text-align: center;
    margin-bottom: 4rem;
}

.results-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.results-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    background: linear-gradient(145deg, 
        var(--snow-white) 0%, 
        var(--glacier-ice) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--alpine-moss), var(--alpine-meadow), var(--alpine-mint));
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.result-company {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-stat {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--alpine-moss);
    line-height: 1;
    margin-bottom: 1rem;
}

.result-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.result-detail {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* ===== TRUST SECTION ===== */
.trust {
    padding: 140px 0;
    background: linear-gradient(135deg, 
        var(--glacier-ice) 0%, 
        var(--morning-mist) 50%,
        var(--snow-white) 100%);
    position: relative;
}

.trust-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

/* Reason Icons */
.reason-icon {
    color: var(--alpine-moss);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--alpine-moss);
}

.reason-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.reason-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.trust-proof {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--snow-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

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

/* Testimonial Avatar */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--snow-white);
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 24px;
    height: 24px;
    stroke: var(--snow-white);
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Trust Numbers - Verbesserte Lesbarkeit */
.trust-numbers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-numbers .trust-number {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    border-radius: 16px;
    color: #ffffff !important;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

.trust-numbers .trust-number:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-numbers .trust-number .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

.trust-numbers .trust-number .label {
    font-size: 1rem;
    color: #ffffff !important;
    opacity: 1;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 140px 0;
    background: linear-gradient(135deg, 
        var(--snow-white) 0%, 
        var(--glacier-ice) 100%);
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.process-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card {
    background: var(--snow-white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(26, 70, 35, 0.08);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 70, 35, 0.15);
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--snow-white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--alpine-meadow), var(--alpine-mint));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover .step-icon::before {
    opacity: 1;
}

.step-icon svg {
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: var(--morning-mist);
    color: var(--alpine-moss);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.step-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--alpine-mist);
    color: var(--alpine-forest);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.step-duration::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12,6 12,12 16,14"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.5rem;
}

/* Modern Process Flow Connectors */
.step-connector {
    width: 120px;
    height: 4rem;
    margin: 1.5rem auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--alpine-mint) 0px,
        var(--alpine-mint) 6px,
        transparent 6px,
        transparent 12px
    );
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.step-connector::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 0 4px rgba(107, 155, 116, 0.2),
        0 0 0 8px rgba(107, 155, 116, 0.1);
    animation: pulse-gentle 2.5s ease-in-out infinite;
}

.step-connector:hover::after {
    animation-duration: 1s;
}

@keyframes pulse-gentle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 0 4px rgba(107, 155, 116, 0.2),
            0 0 0 8px rgba(107, 155, 116, 0.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 0 6px rgba(107, 155, 116, 0.15),
            0 0 0 12px rgba(107, 155, 116, 0.05);
    }
}

/* Remove connector from last step */
.process-step:last-child .step-connector {
    display: none;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 140px 0;
    background: linear-gradient(135deg, 
        var(--glacier-ice) 0%, 
        var(--morning-mist) 100%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Enhanced Service Cards */
.service-card {
    background: var(--snow-white);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(26, 70, 35, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(26, 70, 35, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Visual Area */
.service-visual {
    padding: 3rem 2.5rem 2rem;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, var(--glacier-ice), var(--morning-mist));
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--snow-white);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(26, 70, 35, 0.25);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 20px 48px rgba(26, 70, 35, 0.35);
}

/* Service Decorations */
.service-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.decoration-circle {
    width: 160px;
    height: 160px;
    border: 2px solid var(--alpine-mist);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.decoration-dots {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    gap: 8px;
}

.decoration-dots span {
    width: 8px;
    height: 8px;
    background: var(--alpine-meadow);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

.decoration-dots span:nth-child(2) { animation-delay: 0.5s; }
.decoration-dots span:nth-child(3) { animation-delay: 1s; }

.decoration-grid {
    position: absolute;
    top: -30px;
    left: -30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.decoration-grid span {
    width: 12px;
    height: 12px;
    background: var(--alpine-meadow);
    border-radius: 4px;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.decoration-grid span:nth-child(even) { animation-delay: 0.5s; }

.decoration-bars {
    position: absolute;
    bottom: -25px;
    right: -25px;
    display: flex;
    gap: 4px;
    align-items: end;
}

.decoration-bars span {
    width: 4px;
    background: var(--alpine-meadow);
    border-radius: 2px;
    opacity: 0.4;
    animation: grow 2s ease-in-out infinite;
}

.decoration-bars span:nth-child(1) { height: 20px; animation-delay: 0s; }
.decoration-bars span:nth-child(2) { height: 35px; animation-delay: 0.3s; }
.decoration-bars span:nth-child(3) { height: 25px; animation-delay: 0.6s; }

/* Service Content */
.service-content {
    padding: 2rem 2.5rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex: 1;
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Service Highlights */
.service-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--morning-mist);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--alpine-mist);
    transform: translateY(-2px);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alpine-moss);
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Service Features */
.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--text-primary);
    background: var(--glacier-ice);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features .feature-check {
    color: var(--alpine-meadow);
    font-weight: 600;
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
    border-radius: 0;
}

.service-features .feature-check svg {
    width: 16px;
    height: 16px;
    stroke: var(--alpine-moss);
    stroke-width: 2.5;
    fill: none;
}

/* Highlight Icons in Services */
.highlight-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--alpine-meadow);
    stroke-width: 2;
    fill: none;
}

/* Service Icons */
.service-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--snow-white);
    stroke-width: 1.5;
    fill: none;
}

/* Service CTA Button */
.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--snow-white);
    color: var(--alpine-moss);
    border: 2px solid var(--alpine-moss);
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    transition: left 0.5s ease;
    z-index: -1;
}

.service-cta:hover::before {
    left: 0;
}

.service-cta:hover {
    color: var(--snow-white);
    border-color: var(--alpine-meadow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 70, 35, 0.25);
}

.service-cta.primary {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    border-color: var(--alpine-meadow);
}

.service-cta.primary::before {
    background: linear-gradient(135deg, var(--alpine-forest), var(--alpine-moss));
}

/* Featured Card Styling */
.service-card.featured {
    border: 2px solid var(--alpine-meadow);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(26, 70, 35, 0.12);
}

.service-card.featured::before {
    transform: scaleX(1);
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(26, 70, 35, 0.3);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Animations */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes grow {
    0%, 100% { transform: scaleY(0.7); }
    50% { transform: scaleY(1); }
}

.services-cta {
    text-align: center;
    background: var(--snow-white);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
}

.services-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.services-cta .btn {
    gap: 0.75rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 140px 0;
    background: linear-gradient(135deg, 
        var(--snow-white) 0%, 
        var(--glacier-ice) 50%,
        var(--morning-mist) 100%);
    position: relative;
}

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

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.value-icon {
    background: var(--morning-mist);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--alpine-moss);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.value-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.value-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-stat {
    text-align: center;
    padding: 2rem;
    background: var(--morning-mist);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(26, 70, 35, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--alpine-moss);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 140px 0;
    background: linear-gradient(135deg, 
        var(--glacier-ice) 0%, 
        var(--morning-mist) 50%,
        var(--snow-white) 100%);
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 600px;
    width: 100%;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--snow-white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(26, 70, 35, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--snow-white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--alpine-moss);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--alpine-meadow);
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Contact form styles removed - no longer in use */

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--alpine-moss) 0%, var(--alpine-forest) 100%);
    color: var(--snow-white);
    text-align: center;
    position: relative;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--snow-white);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--snow-white);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-benefit {
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.9;
    color: var(--snow-white);
}

.cta-main-button {
    background: var(--snow-white);
    color: var(--alpine-moss);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: var(--glacier-ice);
}

.cta-arrow {
    font-size: 1.5rem;
}

.cta-alternative {
    font-size: 1.05rem;
    opacity: 0.8;
    color: var(--snow-white);
}

.cta-alternative a {
    color: var(--snow-white);
    text-decoration: underline;
    font-weight: 600;
}

.cta-alternative a:hover {
    opacity: 0.8;
}

/* CTA Phone Icon */
.cta-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26, 70, 35, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 25px rgba(26, 70, 35, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

/* ===== WORLD-CLASS FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, #0f1a14 100%);
    color: var(--snow-white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--alpine-moss), 
        var(--alpine-meadow), 
        var(--alpine-mint), 
        transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    padding-right: 2rem;
    text-align: center;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.06);
    margin: 0 auto 1.5rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: none;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
}

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

.footer-column {
    padding-left: 1rem;
}

.footer-column h4 {
    color: var(--snow-white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--alpine-moss), var(--alpine-meadow));
    border-radius: 1px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-column a:hover {
    color: var(--snow-white);
    transform: translateX(4px);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== MOBILE-FIRST RESPONSIVE DESIGN ===== */

/* Critical Mobile Base Fixes */
* {
    /* Prevent text size adjustment on iOS */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    
    /* Better box model */
    box-sizing: border-box;
}

/* Prevent horizontal overflow on all devices */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Better touch scrolling */
body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Prevent bounce on iOS */
    overscroll-behavior-y: none;
}

/* Touch target minimum 44px (Apple HIG) */
a, button, .nav-link, .nav-toggle, .cta-primary, .service-cta, input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

/* Prevent zoom on input focus (iOS Safari) */
input, textarea, select {
    font-size: 16px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    /* Better keyboard handling */
    -webkit-user-select: text;
    user-select: text;
}

/* Safe area handling for notched devices */
.navbar {
    padding-left: max(env(safe-area-inset-left), 1rem);
    padding-right: max(env(safe-area-inset-right), 1rem);
}

.hero {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.footer {
    padding-bottom: max(40px, env(safe-area-inset-bottom));
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Prevent layout shifts on orientation change */
@media screen and (orientation: landscape) {
    body {
        height: 100vh;
        height: 100dvh;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 4rem;
    }
    
    .hero-container {
        gap: 6rem;
    }
    
    .hero-visual-stack {
        height: 400px;
    }
    
    .card-website {
        width: 280px;
        height: 200px;
    }
    
    .card-analytics {
        width: 250px;
        height: 220px;
        top: 120px;
    }
    
    /* Customer Sections Tablet */
    .problem,
    .results,
    .trust,
    .process,
    .final-cta {
        padding: 80px 0;
    }
    
    .problem-title,
    .results-title,
    .trust-title,
    .process-title,
    .cta-title {
        font-size: 2.25rem;
    }
    
    .problem-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3.5rem;
    }
    
    .problems-list {
        margin-bottom: 4rem;
    }
    
    .problem-item {
        gap: 2rem;
        padding: 2.5rem 0;
    }
    
    .problem-number {
        font-size: 3rem;
        min-width: 60px;
    }
    
    .problem-visual {
        min-width: 100px;
        height: 100px;
    }
    
    .problem-visual svg {
        width: 40px;
        height: 40px;
    }
    
    .problems-grid,
    .results-grid,
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .trust-numbers {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .process-timeline {
        gap: 2.5rem;
    }
    
    .step-card {
        padding: 2.5rem 2rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        padding-left: 0;
        text-align: center;
    }
}

/* Tablet-Optimierung (iPad Hoch-/Querformat) */
@media (max-width: 992px) {
    :root {
        --navbar-height: 78px;
    }
    
    .navbar { height: 78px; }
    .navbar.scrolled { height: 72px; }
    
    .nav-container { padding: 0 1.5rem; }
    
    /* Früher auf Burger-Menü wechseln, damit nichts umbrecht */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        padding: 1.25rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
        gap: 0.5rem;
        z-index: 999;
        margin-top: 0.75rem;
        text-align: center;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu.active { display: flex; animation: slideIn 0.3s ease; }
    .nav-toggle { display: flex; }
    .nav-cta:not(.mobile-cta) { display: none; }
    .mobile-cta { display: block; width: 100%; margin-top: 0.75rem; }
    .nav-link { padding: 0.9rem; font-size: 1rem; border-radius: 8px; }
    .nav-link:hover { background: var(--morning-mist); }

    /* Hero anpassen */
    .hero { padding-top: calc(var(--navbar-height) + env(safe-area-inset-top) + 14px); }
    .title-line-1, .title-line-2 { font-size: 3.5rem; }
    .hero-container { gap: 5rem; }
    .hero-visual-stack { height: 380px; max-width: 420px; margin: 0 auto; }
    .card-website { width: 300px; height: 200px; left: 0; transform: none; }
    .card-analytics { width: 240px; height: 200px; top: 120px; right: 0; transform: none; }

    /* Services/Grids */
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 2.75rem; }
    .footer-brand { text-align: center; padding-right: 0; }
}

@media (max-width: 768px) {
    :root { 
        --navbar-height: 70px;
        /* Tighter spacing for mobile */
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    
    /* Prevent horizontal scroll on mobile */
    .container {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .navbar {
        height: 70px;
    }
    
    .navbar.scrolled {
        height: 65px;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-logo {
        height: 100%;
    }
    
    .nav-logo .logo {
        max-height: calc(100% - 10px);
    }
    
    .navbar.scrolled .nav-logo .logo {
        max-height: calc(100% - 8px);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
        gap: 0.5rem;
        z-index: 999;
        margin-top: 1rem;
        text-align: center;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideIn 0.3s ease;
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        font-size: 1rem;
        display: block;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--morning-mist);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta:not(.mobile-cta) {
        display: none;
    }
    
    .mobile-cta {
        display: block;
        margin-left: 0;
        width: 100%;
        margin-top: 1rem;
    }
    
    .calc-wrapper {
        width: 100%;
        gap: 8px;
    }
    
    .promo-badge {
        align-self: center;
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .nav-calc-button {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .cta-button {
        margin-top: 0.5rem;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        /* Platz für fixe Navbar + Safe-Area schaffen, Badge sichtbar halten */
        padding: calc(var(--navbar-height) + env(safe-area-inset-top) + 16px) 0 var(--spacing-xl);
        margin-top: 0;
    }
    
    .hero::before {
        background-position: center 20%;
        background-size: clamp(260px, 72vw, 640px);
        opacity: 0.12;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: clamp(2.2rem, 8vw, 3rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem);
        max-width: 100%;
        line-height: 1.5;
        margin-bottom: 2rem;
        word-wrap: break-word;
    }
    
    .hero-cta {
        align-items: center;
    }
    
         .hero-badges {
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        margin-top: 1.5rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-badge {
        align-self: center;
        justify-self: center;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-promo-badge {
        padding: 10px 16px;
        text-align: center;
    }
    
    .promo-main {
        font-size: 0.85rem;
    }
    
    .promo-sub {
        font-size: 0.75rem;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-visual-stack {
        height: 350px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .card-website {
        width: 280px;
        height: 180px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .card-analytics {
        width: 240px;
        height: 200px;
        top: 120px;
        right: 50%;
        transform: translateX(50%);
    }
    
    /* Customer Sections Mobile */
    .problem,
    .results,
    .trust,
    .process,
    .final-cta {
        padding: 60px 0;
    }
    
    .problem-title,
    .results-title,
    .trust-title,
    .process-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .problem-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .problems-list {
        margin-bottom: 3rem;
    }
    
    .problem-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        align-items: center;
        text-align: center;
    }
    
    .problem-item:hover {
        background: none;
    }
    
    .problem-number {
        font-size: 2.5rem !important;
        min-width: auto !important;
        text-align: center !important;
        align-self: center !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        flex-direction: column !important;
    }
    
    .problem-visual {
        min-width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .problem-visual svg {
        width: 32px;
        height: 32px;
    }
    
    .problem-content-text {
        text-align: center;
    }
    
    .problem-cta {
        padding: 2.5rem 2rem;
    }
    
    .problem-cta p {
        font-size: 1.25rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .problems-grid,
    .results-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-item,
    .result-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-content {
        gap: 2.5rem;
    }
    
    .trust-title {
        text-align: center;
    }
    
    .reason {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .reason-icon {
        align-self: center;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .trust-numbers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-timeline {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .step-number {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .step-duration {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .step-connector {
        width: 80px;
        height: 3rem;
        margin: 1rem auto;
    }
    
    .step-connector::after {
        width: 10px;
        height: 10px;
        box-shadow: 
            0 0 0 3px rgba(107, 155, 116, 0.2),
            0 0 0 6px rgba(107, 155, 116, 0.1);
    }
    
    /* Services Mobile */
    .services {
        padding: clamp(60px, 12vw, 80px) 0;
    }
    
    .services-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .services-description {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        margin-bottom: 2rem;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        border-radius: 20px;
        margin-bottom: 1rem;
        width: 100%;
        max-width: none;
        /* Prevent card overflow */
        min-width: 0;
        overflow: hidden;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-visual {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }
    
    .service-content {
        padding: 1.5rem 1.5rem 2rem;
    }
    
    .service-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin: 0 0 0.75rem 0;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .service-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .service-features li {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }
    
    .service-cta {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        min-height: 50px;
        /* Better touch target */
        touch-action: manipulation;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    /* Decoration adjustments for mobile */
    .decoration-circle {
        width: 120px;
        height: 120px;
    }
    
    .decoration-dots,
    .decoration-grid,
    .decoration-bars {
        display: none;
    }
    
    /* About Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .about-stat {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .contact-description {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        margin-bottom: 2.5rem;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-method {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Touch-optimized form elements */
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        border: 2px solid var(--border-light);
        font-size: 16px !important;
        box-sizing: border-box;
        transition: border-color 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--alpine-moss);
        outline: none;
        /* Prevent zoom on iOS */
        font-size: 16px !important;
    }
    
    .form-submit {
        width: 100%;
        padding: 1.25rem;
        font-size: 1.1rem;
        min-height: 56px;
        touch-action: manipulation;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-main-button {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: clamp(50px, 10vw, 60px) 0 max(30px, env(safe-area-inset-bottom));
        text-align: center;
    }
    
    .footer-logo-wrap {
        padding: clamp(16px, 4vw, 20px) clamp(20px, 5vw, 28px);
        border-radius: 12px;
        max-width: 90vw;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    
    .footer-logo {
        height: clamp(60px, 12vw, 80px);
        width: auto;
    }
    
    .footer-content {
        gap: 2.5rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Ultra-small device optimization (iPhone SE, small Android) */
@media (max-width: 480px) {
    .container {
        padding: 0 clamp(12px, 3vw, 16px);
        max-width: 100vw;
    }
    
    /* Prevent text overflow */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 3rem;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1.15;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4.5vw, 1rem);
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-item {
        text-align: center;
    }
    
    .hero-visual-stack {
        height: 280px;
        max-width: 280px;
    }
    
    .card-website {
        width: 240px;
        height: 150px;
    }
    
    .card-analytics {
        width: 200px;
        height: 160px;
        top: 100px;
    }
    
    .service-card,
    .team-card,
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .stat {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Section indicators removed */

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--stone-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-mint));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--alpine-forest), var(--alpine-moss));
}

/* ===== PROMOTIONAL BANNER (removed) ===== */

/* ===== FORMULAR NACHRICHTEN & LOADING STYLES ===== */

/* Alert Nachrichten */
.form-message {
    margin: 1rem 0;
}

.alert {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    line-height: 1.5;
    border: 1px solid;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.alert.animate-in {
    animation: slideInScale 0.5s ease-out forwards;
}

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

.alert.fade-out {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.5s ease-in;
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Success Alert Styles */
.alert-success {
    background: linear-gradient(145deg, #ffffff 0%, #f8fdf8 30%, #e8f5e8 100%);
    color: #2F6631;
    border: 2px solid #2F6631;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(47, 102, 49, 0.15);
}

.alert-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2F6631, #7CB26B, #2F6631);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.success-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.success-icon {
    flex-shrink: 0;
    animation: bounceIn 0.8s ease-out 0.3s both;
    filter: drop-shadow(0 2px 4px rgba(47, 102, 49, 0.2));
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    70% {
        transform: scale(0.95) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.success-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2F6631;
    font-family: 'Poppins', sans-serif;
}

.success-text {
    margin: 0 0 1.25rem 0;
    font-size: 1rem;
    color: #2F6631;
    line-height: 1.5;
    font-weight: 500;
}

.success-next-steps {
    background: linear-gradient(135deg, rgba(47, 102, 49, 0.05) 0%, rgba(124, 178, 107, 0.08) 100%);
    padding: 1.25rem;
    border-radius: 12px;
    margin: 1.25rem 0;
    border-left: 4px solid #2F6631;
    box-shadow: 0 2px 8px rgba(47, 102, 49, 0.1);
}

.success-timeline,
.success-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
    font-size: 0.95rem;
    color: #2F6631;
    font-weight: 500;
}

.timeline-icon,
.contact-icon {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.success-contact a {
    color: #2F6631;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.success-contact a:hover {
    background: rgba(47, 102, 49, 0.1);
    border-bottom-color: #2F6631;
    transform: translateY(-1px);
}

.success-progress {
    margin-top: 1.25rem;
    height: 4px;
    background: rgba(47, 102, 49, 0.15);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(47, 102, 49, 0.2);
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #2F6631 0%, #7CB26B 50%, #2F6631 100%);
    background-size: 200% 100%;
    border-radius: 2px;
    transition: width 8s linear;
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Error Alert Styles */
.alert-error {
    background: linear-gradient(145deg, #ffffff 0%, #fdf8f8 30%, #fce8e8 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    box-shadow: 0 8px 32px rgba(220, 53, 69, 0.15);
}

.error-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.error-icon {
    flex-shrink: 0;
    animation: shake 0.6s ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(220, 53, 69, 0.2));
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px) rotate(-1deg); }
    20%, 40%, 60%, 80% { transform: translateX(3px) rotate(1deg); }
}

.error-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #721c24;
    font-family: 'Poppins', sans-serif;
}

.error-text {
    margin: 0;
    font-size: 1rem;
    color: #721c24;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .alert {
        padding: 1.25rem;
        margin: 1rem 0;
    }
    
    .success-header,
    .error-header {
        gap: 0.5rem;
    }
    
    .success-title,
    .error-title {
        font-size: 1rem;
    }
    
    .success-next-steps {
        padding: 0.75rem;
    }
    
    .success-timeline,
    .success-contact {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* ===== SIMPLE FORM CHECKBOX STYLES ===== */

.form-checkbox-group {
    margin-bottom: 2rem !important;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 20px;
    background: var(--morning-mist);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    background: var(--glacier-ice);
    border-color: var(--alpine-mint);
}

/* Einfache sichtbare Checkbox */
.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--alpine-moss);
    flex-shrink: 0;
}

.checkbox-text {
    color: var(--text-primary);
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.privacy-link {
    color: var(--alpine-moss);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: var(--alpine-meadow);
}

/* Error State */
.checkbox-container.error {
    background: rgba(220, 53, 69, 0.05);
    border-color: var(--danger);
}

.checkbox-container.error .checkbox-text {
    color: var(--danger);
}

/* Success State */
.checkbox-container.success {
    background: rgba(74, 124, 89, 0.05);
    border-color: var(--alpine-moss);
}

/* Responsive */
@media (max-width: 768px) {
    .checkbox-container {
        padding: 16px;
        gap: 10px;
    }
    
    .checkbox-text {
        font-size: 0.9rem;
    }
    
    .checkbox-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

/* Remove the custom checkmark span since we're not using it */
.checkbox-checkmark {
    display: none;
}

/* ===== COOKIE BANNER ===== */

/* Cookie Banner Overlay */
.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 70, 35, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none; /* Overlay blockiert Scrollen nicht */
}

.cookie-banner-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Main Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 420px;
    width: calc(100% - 4rem);
    background: var(--snow-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 70, 35, 0.15);
    border: 1px solid var(--border-light);
    z-index: 9999;
    transform: translateY(100px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cookie-banner.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.cookie-banner.hidden {
    transform: translateY(100px) scale(0.9);
    opacity: 0;
    visibility: hidden;
}

.cookie-banner-container {
    padding: 2rem;
}

/* Cookie Banner Header */
.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-banner-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--snow-white);
    flex-shrink: 0;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.cookie-banner-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Cookie Categories */
.cookie-toggle-group {
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--morning-mist);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.cookie-category:hover {
    background: var(--glacier-ice);
    border-color: var(--alpine-mint);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-category-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-category-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Toggle Switches */
.cookie-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 24px;
    cursor: pointer;
}

.cookie-toggle.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pebble-gray);
    border-radius: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--snow-white);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Active toggle state */
.cookie-toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Required toggle (always on) */
.toggle-slider.required {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow)) !important;
    cursor: not-allowed;
}

.toggle-slider.required:before {
    transform: translateX(24px);
}

/* Cookie Banner Buttons */
.cookie-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cookie-btn:hover::before {
    left: 100%;
}

/* Primary Button */
.cookie-btn-primary {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    border-color: var(--alpine-moss);
}

.cookie-btn-primary:hover {
    background: linear-gradient(135deg, var(--alpine-forest), var(--alpine-moss));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(45, 90, 49, 0.3);
}

/* Secondary Button */
.cookie-btn-secondary {
    background: transparent;
    color: var(--alpine-moss);
    border-color: var(--alpine-moss);
}

.cookie-btn-secondary:hover {
    background: var(--morning-mist);
    border-color: var(--alpine-meadow);
    transform: translateY(-1px);
}

/* Accept All Button */
.cookie-btn-all {
    background: linear-gradient(135deg, var(--alpine-meadow), var(--alpine-mint));
    color: var(--snow-white);
    border-color: var(--alpine-meadow);
}

.cookie-btn-all:hover {
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

/* Cookie Banner Footer */
.cookie-banner-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    text-align: center;
}

.cookie-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--alpine-moss);
    transform: translateY(-1px);
}

.cookie-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        width: calc(100% - 2rem);
    }
    
    .cookie-banner-container {
        padding: 1.5rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-banner-icon {
        align-self: center;
    }
    
    .cookie-category {
        padding: 0.75rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cookie-toggle {
        align-self: flex-end;
    }
    
    .cookie-banner-buttons {
        gap: 0.5rem;
    }
    
    .cookie-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .cookie-banner-container {
        padding: 1.25rem;
    }
    
    .cookie-banner-content {
        margin-bottom: 1rem;
    }
    
    .cookie-banner-title {
        font-size: 1.1rem;
    }
    
    .cookie-banner-description {
        font-size: 0.9rem;
    }
}

/* Animation for cookie banner appearance */
@keyframes cookieBannerSlideIn {
    from {
        transform: translateY(100%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-banner.animate-in {
    animation: cookieBannerSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Cookie settings button (optional - for reopening banner) */
.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--alpine-moss), var(--alpine-meadow));
    color: var(--snow-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(45, 90, 49, 0.3);
    display: none;
}

.cookie-settings-btn.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(45, 90, 49, 0.4);
}

.cookie-settings-btn svg {
    width: 20px;
    height: 20px;
}