/* LOSY GmbH & EASY Business - Marketing Website */
/* Farben gemaess Konzept Abschnitt 6 */

:root {
    --losy-orange: #fe7109;
    --losy-orange-hover: #e5650a;
    --losy-orange-light: rgba(254, 113, 9, 0.1);
    --slate-800: #2D2D2D;
    --slate-900: #1A1A1A;
    --slate-700: #3D3D3D;
    --slate-600: #555555;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --amber-500: #F59E0B;
    --emerald-500: #10B981;
    --blue-500: #3B82F6;
    --white: #FFFFFF;
    --max-width: 1280px;
    --header-height: 72px;
    --section-padding: 80px;
}

/* ===== Animations ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(254,113,9,0.3); } 50% { box-shadow: 0 0 20px 4px rgba(254,113,9,0.15); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes countUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes safeFallback { to { opacity: 1; transform: none; } }

.fade-in-up, .fade-in, .slide-in-left, .slide-in-right, .scale-in { opacity: 0; animation: safeFallback 0.5s ease-out 1.5s forwards; }
.fade-in-up.visible { animation: fadeInUp 0.7s ease-out both; }
.fade-in.visible { animation: fadeIn 0.6s ease-out both; }
.slide-in-left.visible { animation: slideInLeft 0.7s ease-out both; }
.slide-in-right.visible { animation: slideInRight 0.7s ease-out both; }
.scale-in.visible { animation: scaleIn 0.5s ease-out both; }

/* Stagger delays for grids */
.stagger > *:nth-child(1) { animation-delay: 0s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.2s; }
.stagger > *:nth-child(4) { animation-delay: 0.3s; }
.stagger > *:nth-child(5) { animation-delay: 0.4s; }
.stagger > *:nth-child(6) { animation-delay: 0.5s; }
.stagger > *:nth-child(7) { animation-delay: 0.6s; }
.stagger > *:nth-child(8) { animation-delay: 0.7s; }
.stagger > *:nth-child(9) { animation-delay: 0.8s; }
.stagger > *:nth-child(10) { animation-delay: 0.9s; }
.stagger > *:nth-child(11) { animation-delay: 1.0s; }
.stagger > *:nth-child(12) { animation-delay: 1.1s; }
.stagger > *:nth-child(13) { animation-delay: 1.2s; }
.stagger > *:nth-child(14) { animation-delay: 1.3s; }
.stagger > *:nth-child(15) { animation-delay: 1.4s; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--slate-800); background: var(--white); line-height: 1.6; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; outline: none; }
h1:focus, h2:focus, h3:focus, h4:focus, p:focus, section:focus, div:focus, main:focus, article:focus { outline: none; }
[tabindex="-1"]:focus { outline: none; }
h1 { font-size: 3rem; } h2 { font-size: 2.25rem; } h3 { font-size: 1.5rem; } h4 { font-size: 1.25rem; }
a { color: var(--losy-orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--losy-orange-hover); }
img { max-width: 100%; height: auto; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding) 0; }
.section-dark { background: var(--slate-900); color: var(--white); }
.section-light { background: var(--slate-50); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { color: var(--slate-600); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--slate-200); height: var(--header-height); }
.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header-logo img { height: 40px; }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a { color: var(--slate-700); font-weight: 500; font-size: 0.9375rem; }
.header-nav a:hover { color: var(--losy-orange); }
.header-nav a.btn-primary { color: var(--white); }
.header-nav a.btn-primary:hover { color: var(--white); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.9375rem; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--losy-orange); color: var(--white); border-color: var(--losy-orange); }
.btn-primary:hover { background: var(--losy-orange-hover); border-color: var(--losy-orange-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(254,113,9,0.35); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(254,113,9,0.2); }
.btn-secondary { background: transparent; color: var(--slate-800); border-color: var(--slate-400); }
.btn-secondary:hover { border-color: var(--losy-orange); color: var(--losy-orange); }
.btn-white { background: var(--white); color: var(--losy-orange); border-color: var(--white); }
.btn-white:hover { background: var(--slate-50); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

/* Hero */
.hero { background-color: var(--slate-900); background-image: linear-gradient(135deg, var(--slate-900) 0%, #2a2a2a 100%); color: var(--white); padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(254,113,9,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: 3.25rem; margin-bottom: 20px; color: #FFFFFF; animation: fadeInUp 0.8s ease-out both; }
.hero h1 span { color: var(--losy-orange); }
.hero p.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.7; animation: fadeInUp 0.8s ease-out 0.15s both; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.45s both; }
.hero-badge { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.hero-badge::before { content: '\2713'; color: var(--emerald-500); font-weight: 700; }
.hero-badge i { color: var(--emerald-500); font-size: 0.75rem; }
.hero-visual { animation: slideInRight 0.9s ease-out 0.3s both; }
.hero-visual img { border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-visual img.eb-logo { border: 1px solid var(--losy-orange); }
.hero .section-badge { background: rgba(254,113,9,0.2); color: var(--losy-orange); }

/* Trust Bar */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--slate-200); padding: 24px 0; animation: fadeIn 0.6s ease-out 0.5s both; }
.trust-bar-inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.875rem; color: var(--slate-600); transition: color 0.2s; }
.trust-item:hover { color: var(--losy-orange); }
.trust-item i { color: var(--losy-orange); font-size: 1rem; width: 20px; text-align: center; }

/* Module Grid */
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.module-grid-3col, .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.module-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; padding: 28px; transition: all 0.2s; text-decoration: none; color: var(--slate-800); display: block; position: relative; overflow: visible; }
.module-card:hover { border-color: var(--losy-orange); box-shadow: 0 8px 30px rgba(254,113,9,0.12); color: var(--slate-800); z-index: 10; }
.module-card:hover .module-card-icon { background: var(--losy-orange); color: var(--white); transform: scale(1.1); box-shadow: 0 4px 16px rgba(254,113,9,0.25); }
.module-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.module-card-icon { width: 48px; height: 48px; min-width: 48px; background: var(--losy-orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; transform-origin: center center; color: var(--losy-orange); }
.module-card-icon i { color: inherit; }
.module-card h3 { font-size: 1.125rem; margin: 0; }
.module-card p { font-size: 0.875rem; color: var(--slate-600); margin-bottom: 16px; }
.module-card .card-link { font-size: 0.875rem; font-weight: 600; color: var(--losy-orange); }
.module-card-detail { position: absolute; top: -1px; left: -1px; right: -1px; background: var(--white); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; opacity: 0; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none; border: 1px solid var(--losy-orange); box-shadow: 0 8px 30px rgba(254,113,9,0.12); }
.module-card:hover .module-card-detail { opacity: 1; transform: translateY(0); pointer-events: auto; }
.module-card-detail-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--slate-200); }
.module-card-detail-header .module-card-icon { margin-bottom: 0; width: 36px; height: 36px; font-size: 1rem; background: var(--losy-orange); color: var(--white); }
.module-card-detail-header h4 { font-size: 1rem; margin: 0; }
.module-card-detail ul { list-style: none; padding: 0; margin: 0 0 auto 0; }
.module-card-detail ul li { font-size: 0.8125rem; color: var(--slate-700); padding: 3px 0; display: flex; align-items: baseline; gap: 6px; }
.module-card-detail ul li::before { content: '\2713'; color: var(--emerald-500); font-weight: 700; font-size: 0.75rem; flex-shrink: 0; }
.module-card-detail .card-link { font-size: 0.8125rem; font-weight: 600; color: var(--losy-orange); margin-top: 10px; }

/* USPs */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.usp-item { text-align: left; padding: 24px; }
.usp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.usp-icon { width: 48px; height: 48px; min-width: 48px; background: var(--losy-orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--losy-orange); transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; transform-origin: center center; }
.usp-item:hover .usp-icon { background: var(--losy-orange); color: var(--white); transform: scale(1.1); box-shadow: 0 4px 16px rgba(254,113,9,0.25); }
.usp-item h3 { font-size: 1.125rem; margin: 0; }
.usp-item p { font-size: 0.9375rem; color: var(--slate-600); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step-item { padding: 24px; counter-increment: step; display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: start; }
.step-item::before { content: counter(step); display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; min-width: 40px; background: var(--losy-orange); color: var(--white); border-radius: 50%; font-weight: 700; grid-row: 1; grid-column: 1; align-self: center; }
.step-item h3 { font-size: 1.125rem; margin: 0; grid-row: 1; grid-column: 2; align-self: center; }
.step-item p { font-size: 0.9375rem; color: var(--slate-600); grid-row: 2; grid-column: 2; margin-top: 4px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; text-align: center; }
.stat-number { font-size: 2.25rem; font-weight: 800; color: var(--losy-orange); animation: countUp 0.8s ease-out both; }
.stat-label { font-size: 0.8125rem; color: var(--slate-400); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: 12px; padding: 28px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.value-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.value-card h3 { font-size: 1.125rem; margin-bottom: 8px; color: var(--losy-orange); }
.value-card p { font-size: 0.9375rem; color: var(--slate-600); }

/* Two Column Choice */
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.choice-card { background: var(--white); border: 2px solid var(--slate-200); border-radius: 16px; padding: 40px; transition: border-color 0.2s; }
.choice-card:hover { border-color: var(--losy-orange); }
.choice-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.choice-card p { color: var(--slate-600); margin-bottom: 24px; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--losy-orange) 0%, #e5650a 100%); color: var(--white); text-align: center; padding: 80px 0; position: relative; overflow: hidden; }

/* Comparison Table */
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -24px; padding: 0 24px; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 800px; }
.comparison-table thead th { position: sticky; top: 0; background: var(--slate-900); color: var(--white); padding: 12px 16px; text-align: center; font-weight: 600; font-size: 0.8125rem; white-space: nowrap; }
.comparison-table thead th:first-child { text-align: left; border-radius: 8px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 8px 0 0; }
.comparison-table tbody td { padding: 10px 16px; border-bottom: 1px solid var(--slate-200); text-align: center; vertical-align: middle; }
.comparison-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--slate-800); white-space: nowrap; }
.comparison-table tbody tr:hover { background: var(--slate-50); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table .ct-check { color: var(--losy-orange); font-size: 1.1rem; }
.comparison-table .ct-optional { color: var(--slate-400); font-size: 0.9rem; }
.comparison-table .ct-none { color: var(--slate-200); }
.comparison-table .ct-section-row td { background: var(--slate-50); font-weight: 700; color: var(--slate-700); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.03em; padding: 8px 16px; }
.comparison-table .ct-dep { font-size: 0.8125rem; color: var(--slate-500); }
.comparison-table .ct-dep i { margin-right: 4px; color: var(--losy-orange); }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%); animation: float 6s ease-in-out infinite; pointer-events: none; }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { font-size: 1.125rem; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; }

/* Footer */
.site-footer { background: var(--slate-900); color: var(--slate-400); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 300px; }
.footer-col h4, .footer-col .footer-heading { color: var(--white); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--slate-400); font-size: 0.875rem; padding: 4px 0; }
.footer-col a:hover { color: var(--losy-orange); }
.footer-social a { transition: color 0.2s ease, transform 0.2s ease; }
.footer-social a:hover { color: var(--white) !important; transform: scale(1.2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; }
.footer-legal a { margin-left: 24px; }

/* Form */
.demo-form { background: var(--white); border: 1px solid var(--slate-200); border-radius: 16px; padding: 40px; max-width: 960px; margin: 0 auto; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; color: var(--slate-700); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--slate-200); border-radius: 8px; font-size: 0.9375rem; font-family: inherit; transition: border-color 0.2s; accent-color: var(--losy-orange); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--losy-orange); box-shadow: 0 0 0 3px var(--losy-orange-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Feature Grid (Module Detail) */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 16px; padding: 20px; border: 1px solid var(--slate-200); border-radius: 12px; }
.feature-item-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--losy-orange-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--losy-orange); transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; transform-origin: center center; font-size: 1rem; }
.feature-item:hover .feature-item-icon { background: var(--losy-orange); color: var(--white); transform: scale(1.1); }
.feature-item h4, .feature-item > div > strong { margin-bottom: 4px; display: block; }
.feature-item p { font-size: 0.875rem; color: var(--slate-600); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--white); border: 2px solid var(--slate-200); border-radius: 16px; overflow: hidden; transition: border-color 0.2s; display: flex; flex-direction: column; }
.pricing-card:hover { border-color: var(--losy-orange); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(254,113,9,0.1); }
.pricing-card-featured { border-color: var(--losy-orange); box-shadow: 0 8px 30px rgba(254,113,9,0.15); position: relative; }
.pricing-header { padding: 28px 28px 16px; position: relative; }
.pricing-header h3 { font-size: 1.375rem; margin-bottom: 4px; }
.pricing-target { color: var(--slate-600); font-size: 0.9375rem; }
.pricing-badge { position: absolute; top: 16px; right: 16px; background: var(--losy-orange); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.pricing-body { padding: 0 28px 28px; flex: 1; display: flex; flex-direction: column; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 24px; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--slate-100); font-size: 0.9375rem; color: var(--slate-700); }
.pricing-features li::before { content: '\2713'; color: var(--emerald-500); font-weight: 700; margin-right: 8px; }

/* FAQ */
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--slate-200); }
.faq-item:first-child { border-top: 1px solid var(--slate-200); }
.faq-item h3 { font-size: 1.125rem; margin-bottom: 8px; color: var(--slate-800); }
.faq-item p { font-size: 0.9375rem; color: var(--slate-600); line-height: 1.7; }

/* Section Badge */
.section-badge { display: inline-block; background: var(--losy-orange-light); color: var(--losy-orange); font-weight: 700; font-size: 0.8125rem; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.02em; position: relative; overflow: hidden; }
.section-badge::after { content: ''; position: absolute; top: 0; left: -200%; width: 200%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(254,113,9,0.08) 50%, transparent 100%); animation: shimmer 4s ease-in-out infinite; }

/* Problem Grid */
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.problem-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; padding: 28px; transition: all 0.2s; }
.problem-card:hover { border-color: #ef4444; box-shadow: 0 4px 16px rgba(239,68,68,0.08); }
.problem-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.problem-icon { width: 48px; height: 48px; min-width: 48px; background: #fef2f2; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #ef4444; font-size: 1.25rem; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; transform-origin: center center; }
.problem-card:hover .problem-icon { background: #ef4444; color: var(--white); transform: scale(1.1); }
.problem-card h3 { font-size: 1.125rem; margin: 0; }
.problem-card p { font-size: 0.875rem; color: var(--slate-600); line-height: 1.6; }

/* Solution Section */
.solution-banner { background: linear-gradient(135deg, var(--slate-900) 0%, #2a2a2a 100%); color: var(--white); border-radius: 16px; padding: 48px; text-align: center; }
.solution-banner h2 { margin-bottom: 12px; }
.solution-banner p { color: var(--slate-400); font-size: 1.125rem; max-width: 640px; margin: 0 auto 32px; }
.solution-banner strong { color: var(--white); display: block; }
.solution-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.solution-stat { text-align: center; }
.solution-stat-value { display: block; font-size: 2rem; font-weight: 800; color: var(--losy-orange); }
.solution-stat-label { font-size: 0.8125rem; color: var(--slate-400); }

/* Feature Cards (rich) */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; padding: 28px; transition: all 0.2s; position: relative; }
.feature-card:hover { border-color: var(--losy-orange); box-shadow: 0 4px 20px rgba(254,113,9,0.08); }
.feature-card-highlight { border-color: var(--losy-orange); background: linear-gradient(135deg, rgba(254,113,9,0.02) 0%, rgba(254,113,9,0.06) 100%); }
.feature-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.feature-card .feature-icon { width: 48px; height: 48px; min-width: 48px; background: var(--losy-orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--losy-orange); font-size: 1.25rem; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; transform-origin: center center; }
.feature-card:hover .feature-icon { background: var(--losy-orange); color: var(--white); transform: scale(1.1); box-shadow: 0 4px 16px rgba(254,113,9,0.2); }
.feature-card h3 { font-size: 1.125rem; margin: 0; }
.feature-card p { font-size: 0.875rem; color: var(--slate-600); line-height: 1.6; }
.feature-badge { position: absolute; top: 16px; right: 16px; background: var(--losy-orange); color: var(--white); font-size: 0.6875rem; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Workflow Section */
.workflow-section { background: var(--slate-50); border-radius: 16px; padding: 48px; }
.workflow-steps { display: flex; align-items: flex-start; gap: 0; justify-content: center; flex-wrap: wrap; }
.workflow-step { text-align: center; flex: 1; min-width: 140px; max-width: 200px; padding: 0 12px; position: relative; }
.workflow-step-icon { width: 56px; height: 56px; background: var(--losy-orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.1rem; font-weight: 700; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(254,113,9,0.25); }
.workflow-step:hover .workflow-step-icon { transform: scale(1.15); box-shadow: 0 6px 20px rgba(254,113,9,0.35); }
.workflow-step h4, .workflow-step > strong { font-size: 0.9375rem; margin-bottom: 4px; display: block; }
.workflow-step p { font-size: 0.8125rem; color: var(--slate-600); }
.workflow-arrow { display: flex; align-items: center; padding-top: 20px; color: var(--slate-400); font-size: 1.25rem; }

/* Benefit Items */
.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 800px; margin: 0 auto; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border-radius: 12px; transition: background 0.2s; }
.benefit-item:hover { background: var(--slate-50); }
.benefit-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--losy-orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--losy-orange); font-size: 1.1rem; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; transform-origin: center center; }
.benefit-item:hover .benefit-icon { background: var(--losy-orange); color: var(--white); transform: scale(1.1); }
.benefit-item h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.benefit-item p { font-size: 0.875rem; color: var(--slate-600); }

/* Integration Logos */
.integration-bar { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; padding: 24px; }
.integration-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--slate-600); font-size: 0.8125rem; font-weight: 600; }
.integration-icon { width: 48px; height: 48px; background: var(--slate-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }

/* Dashboard Mockup - EASY Business Style */
.mockup-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.06); max-width: 600px; margin: 0 auto; animation: float 4s ease-in-out infinite, scaleIn 0.7s ease-out 0.5s both; }
.mockup-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--slate-200); }
.mockup-header-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--losy-orange) 0%, var(--losy-orange-hover) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; flex-shrink: 0; box-shadow: 0 2px 8px rgba(254,113,9,0.3); }
.mockup-header-text { display: flex; flex-direction: column; }
.mockup-header-title { font-size: 0.9375rem; color: var(--slate-800); font-weight: 700; line-height: 1.2; }
.mockup-header-subtitle { font-size: 0.75rem; color: var(--slate-500); font-weight: 400; }
.mockup-body { padding: 20px; }
.mockup-stats { display: flex; gap: 12px; }
.mockup-stat { flex: 1; text-align: center; padding: 14px 8px; background: var(--slate-50); border-radius: 8px; border: 1px solid var(--slate-200); }
.mockup-stat-value { display: block; font-size: 1.25rem; font-weight: 800; color: var(--slate-800); }
.mockup-stat-label { font-size: 0.6875rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }
.mockup-stat-success .mockup-stat-value { color: var(--emerald-500); }
.mockup-stat-warning .mockup-stat-value { color: var(--losy-orange); }
.mockup-stat-orange .mockup-stat-value { color: var(--losy-orange); }
.mockup-footer { padding: 12px 20px; border-top: 1px solid var(--slate-200); display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--slate-400); }
.mockup-footer i { font-size: 0.625rem; }

/* CTA Section enhanced */
.cta-address { margin-top: 20px; font-size: 0.875rem; opacity: 0.8; }

/* Cross Links */
.cross-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cross-link-card { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--slate-200); border-radius: 12px; text-decoration: none; color: var(--slate-800); transition: all 0.2s; }
.cross-link-card:hover { border-color: var(--losy-orange); color: var(--losy-orange); transform: translateX(4px); }
.cross-link-icon { font-size: 1.25rem; color: var(--losy-orange); width: 36px; height: 36px; background: var(--losy-orange-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.cross-link-card:hover .cross-link-icon { background: var(--losy-orange); color: var(--white); }

/* Mobile Menu */
.mobile-menu-checkbox { display: none; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--slate-800); transition: all 0.3s; border-radius: 2px; }

/* Module Sidebar */
.module-sidebar { display: none; }
@media (min-width: 1025px) {
    .module-sidebar { display: block; position: fixed; left: 0; top: var(--header-height); bottom: 0; width: 72px; background: var(--white); border-right: 1px solid var(--slate-200); z-index: 90; overflow-y: auto; overflow-x: hidden; scrollbar-width: none; }
    .module-sidebar::-webkit-scrollbar { display: none; }
    .module-sidebar-inner { display: flex; flex-direction: column; align-items: center; padding: 12px 0 16px; height: 100%; }
    .module-sidebar-title { font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400); margin-bottom: 8px; }
    .module-sidebar-nav { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
    .module-sidebar-link { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; width: 64px; border-radius: 8px; text-decoration: none; color: var(--slate-500); font-size: 0.5625rem; font-weight: 500; text-align: center; transition: all 0.2s; line-height: 1.2; }
    .module-sidebar-link i { font-size: 1rem; transition: transform 0.2s; }
    .module-sidebar-link:hover { background: var(--losy-orange-light); color: var(--losy-orange); }
    .module-sidebar-link:hover i { transform: scale(1.15); }
    .module-sidebar-link.active { background: var(--losy-orange); color: var(--white); box-shadow: 0 2px 8px rgba(254,113,9,0.3); }
    .module-sidebar-link.active:hover { background: var(--losy-orange-hover); color: var(--white); }
    .module-sidebar-all { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; width: 64px; border-radius: 8px; text-decoration: none; color: var(--slate-400); font-size: 0.5625rem; font-weight: 600; text-align: center; transition: all 0.2s; margin-top: auto; border-top: 1px solid var(--slate-200); padding-top: 12px; }
    .module-sidebar-all i { font-size: 0.875rem; }
    .module-sidebar-all:hover { color: var(--losy-orange); }
    main.has-module-sidebar { margin-left: 72px; }
    main.has-module-sidebar .hero { margin-left: -72px; padding-left: 72px; }
}

/* Responsive */
/* Module Checkbox Grid (forms) */
.module-check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.module-check { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 2px solid var(--slate-200); border-radius: 10px; cursor: pointer; transition: all 0.2s ease; background: var(--white); user-select: none; font-size: 0.8125rem; }
.module-check:hover { border-color: var(--losy-orange); }
.module-check input[type="checkbox"] { display: none; }
.module-check-box { width: 20px; height: 20px; border: 2px solid var(--slate-300); border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s ease; }
.module-check-box::after { content: ''; display: none; }
.module-check input:checked ~ .module-check-box { background: var(--losy-orange); border-color: var(--losy-orange); }
.module-check input:checked ~ .module-check-box::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.65rem; color: white; display: block; }
.module-check input:checked ~ span:last-child { font-weight: 600; color: var(--slate-900); }
.module-check input:checked + .module-check-box + span { font-weight: 600; }

/* Module Configurator */
.configurator { margin: 0 auto; }
.configurator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.configurator-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 2px solid var(--slate-200); border-radius: 12px; cursor: pointer; transition: all 0.2s ease; background: var(--white); user-select: none; min-width: 0; overflow: hidden; }
.configurator-item:hover { border-color: var(--losy-orange); box-shadow: 0 2px 8px rgba(254,113,9,0.1); }
.configurator-item-selected { border-color: var(--losy-orange); background: rgba(254,113,9,0.04); }
.configurator-item-included { border-color: var(--slate-200); background: var(--slate-50); cursor: default; opacity: 0.7; }
.configurator-item-included:hover { border-color: var(--slate-200); box-shadow: none; }
.configurator-check { width: 24px; height: 24px; border-radius: 6px; border: 2px solid var(--slate-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s ease; }
.configurator-item-selected .configurator-check { background: var(--losy-orange); border-color: var(--losy-orange); }
.configurator-item-included .configurator-check { background: var(--slate-100); border-color: var(--slate-300); }
.configurator-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--losy-orange-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--losy-orange); font-size: 0.9rem; }
.configurator-item-selected .configurator-icon { background: var(--losy-orange); color: var(--white); }
.configurator-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; overflow: hidden; }
.configurator-text strong { font-size: 0.8125rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.configurator-text span { font-size: 0.6875rem; color: var(--slate-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.configurator-summary { margin-top: 32px; position: sticky; bottom: 0; z-index: 10; }
.configurator-summary-inner { background: var(--white); border: 2px solid var(--losy-orange); border-radius: 16px; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: 0 -4px 24px rgba(0,0,0,0.08); }
.configurator-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.configurator-tag { font-size: 0.6875rem; padding: 3px 10px; border-radius: 20px; background: var(--losy-orange-light); color: var(--losy-orange); font-weight: 600; }
.btn-disabled { pointer-events: none; opacity: 0.4; }

@media (max-width: 1024px) {
    .module-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .usp-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .configurator-grid { grid-template-columns: repeat(2, 1fr); }
    .module-check-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-cards { grid-template-columns: repeat(2, 1fr) !important; }
    .cross-link-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    :root { --section-padding: 48px; }
    .mobile-toggle { display: flex; }
    .header-nav { display: none; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; padding: 16px 24px; border-bottom: 1px solid var(--slate-200); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .mobile-menu-checkbox:checked ~ .header-nav { display: flex; }
    .header-nav a { padding: 12px 0; border-bottom: 1px solid var(--slate-100); }
    .header-nav a:last-child { border-bottom: none; margin-top: 8px; }
    .module-grid, .usp-grid, .steps-grid, .values-grid { grid-template-columns: 1fr !important; }
    .two-cols { grid-template-columns: 1fr !important; }
    .hero-ctas, .cta-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid, .form-row { grid-template-columns: 1fr !important; }
    .feature-cards, .problem-grid { grid-template-columns: 1fr !important; }
    .configurator-grid { grid-template-columns: 1fr !important; }
    .module-check-grid { grid-template-columns: 1fr !important; }
    .configurator-summary-inner { flex-direction: column; text-align: center; }
    .workflow-steps { flex-direction: column; align-items: center; }
    .workflow-arrow { transform: rotate(90deg); padding: 8px 0; }
    .solution-stats { gap: 24px; }
    .mockup-stats { flex-direction: column; }
    h1 { font-size: 2rem; } h2 { font-size: 1.75rem; }
    .demo-form { padding: 20px 16px; }
    .configurator-item { padding: 12px; gap: 10px; }
    .configurator-text strong { white-space: normal; }
    .configurator-text span { white-space: normal; }
}

/* ===== LOSY Chat-Bot Widget ===== */
#losy-chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9998; font-family: Inter, Arial, sans-serif; }
#losy-chat-btn {
    width: 56px; height: 56px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, #fe7109, #e5630a); color: #fff; font-size: 1.5rem;
    cursor: pointer; box-shadow: 0 4px 16px rgba(254,113,9,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; align-items: center; justify-content: center;
}
#losy-chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(254,113,9,0.5); }

#losy-chat-window {
    position: absolute; bottom: 72px; right: 0;
    width: 380px; max-width: calc(100vw - 32px); height: 520px; max-height: calc(100vh - 120px);
    background: #fff; border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    display: flex; flex-direction: column; overflow: hidden;
    animation: chatSlideUp 0.25s ease-out;
}
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

#losy-chat-header {
    background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
    padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0;
}
#losy-chat-body {
    flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 8px;
    background: #f8fafc;
}
#losy-chat-body::-webkit-scrollbar { width: 4px; }
#losy-chat-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.chat-msg { display: flex; max-width: 85%; animation: chatFadeIn 0.2s ease-out; }
.chat-bot { align-self: flex-start; }
.chat-user { align-self: flex-end; }
@keyframes chatFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.chat-bubble {
    padding: 10px 14px; border-radius: 12px; font-size: 0.875rem; line-height: 1.5;
    word-break: break-word;
}
.chat-bot .chat-bubble { background: #fff; color: #334155; border: 1px solid #e2e8f0; border-bottom-left-radius: 4px; }
.chat-user .chat-bubble { background: #fe7109; color: #fff; border-bottom-right-radius: 4px; }
.chat-bubble a { color: inherit; text-decoration: underline; }

.chat-bubble.typing { display: flex; gap: 4px; align-items: center; padding: 14px 18px; }
.chat-bubble.typing span {
    width: 8px; height: 8px; background: #94a3b8; border-radius: 50%;
    animation: typingDot 1.2s infinite;
}
.chat-bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; animation: chatFadeIn 0.2s ease-out; }
.chat-qr-btn {
    padding: 6px 14px; border-radius: 20px; border: 1px solid #e2e8f0;
    background: #fff; color: #334155; font-size: 0.8125rem; cursor: pointer;
    transition: all 0.15s; font-family: inherit;
}
.chat-qr-btn:hover { background: #fe7109; color: #fff; border-color: #fe7109; }

#losy-chat-input-area {
    display: flex; gap: 8px; padding: 12px 16px;
    border-top: 1px solid #e2e8f0; background: #fff; flex-shrink: 0;
}
#losy-chat-input {
    flex: 1; border: 1px solid #e2e8f0; border-radius: 24px;
    padding: 10px 16px; font-size: 0.875rem; font-family: inherit;
    outline: none; transition: border-color 0.15s;
}
#losy-chat-input:focus { border-color: #fe7109; }
#losy-chat-input:disabled { background: #f1f5f9; color: #94a3b8; }
#losy-chat-send {
    width: 40px; height: 40px; border-radius: 50%; border: none;
    background: #fe7109; color: #fff; font-size: 0.875rem;
    cursor: pointer; transition: background 0.15s;
    display: flex; align-items: center; justify-content: center;
}
#losy-chat-send:hover { background: #e5630a; }

@media (max-width: 480px) {
    #losy-chat-widget { bottom: 16px; right: 16px; }
    #losy-chat-window { width: calc(100vw - 32px); height: calc(100vh - 100px); bottom: 68px; }
    #losy-chat-btn { width: 50px; height: 50px; font-size: 1.25rem; }
}
