/* Sound Visualization Animation */ .sound-visualization { display: flex; align-items: center; justify-content: center; gap: 8px; height: 80px; margin-top: 80px; margin-bottom: 20px; opacity: 1; transition: opacity 0.3s ease; } .sound-visualization.active { opacity: 1; } .sound-bar { width: 8px; background: linear-gradient(to top, var(--accent-orange), var(--accent-teal)); border-radius: 4px; animation: soundWave 1.2s ease-in-out infinite; transform-origin: bottom; } .sound-bar:nth-child(1) { animation-delay: 0s; height: 20px; } .sound-bar:nth-child(2) { animation-delay: 0.1s; height: 32px; } .sound-bar:nth-child(3) { animation-delay: 0.2s; height: 26px; } .sound-bar:nth-child(4) { animation-delay: 0.3s; height: 40px; } .sound-bar:nth-child(5) { animation-delay: 0.4s; height: 32px; } .sound-bar:nth-child(6) { animation-delay: 0.5s; height: 24px; } .sound-bar:nth-child(7) { animation-delay: 0.6s; height: 36px; } .sound-bar:nth-child(8) { animation-delay: 0.7s; height: 28px; } @keyframes soundWave { 0%, 100% { transform: scaleY(0.3); opacity: 0.7; } 50% { transform: scaleY(1); opacity: 1; } } :root { --primary-dark: #5a5252; --primary-light: #EBEBDE; --primary-mid: #8a8a7a; --accent-orange: #d4864a; --accent-teal: #5a9e96; --accent-green: #7fb882; --widget-bg: rgba(255, 255, 255, 0.9); --widget-border: #d4864a; --widget-shadow: 0 4px 20px rgba(90, 82, 82, 0.1); } /* Cookiebot Banner - Force to bottom of screen */ #CybotCookiebotDialog, #CybotCookiebotDialog.CybotEdge, div#CybotCookiebotDialog { top: auto !important; bottom: 0 !important; position: fixed !important; transform: none !important; } #CybotCookiebotDialogBody { max-height: 40vh !important; overflow-y: auto !important; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background-color: var(--primary-light); color: var(--primary-dark); min-height: 100vh; position: relative; overflow-x: hidden; } /* Hexagonal Canvas Background */ #hexCanvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none; } /* Top Banner - Ultra Smooth Performance */ .top-banner { background-color: rgba(235, 235, 222, 0.85); color: var(--primary-dark); padding: 5px 40px; height: 90px; display: flex; align-items: center; justify-content: space-between; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; border-bottom: 3px solid var(--accent-orange); overflow: visible; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); /* Ultra-smooth transitions with hardware acceleration */ transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Performance optimizations */ transform: translateZ(0); -webkit-font-smoothing: antialiased; /* Prevent sub-pixel rendering issues */ box-shadow: 0 0 0 rgba(0,0,0,0); } /* Scrolled state with smooth transitions */ .top-banner.scrolled { height: 70px; padding: 5px 30px; background-color: rgba(235, 235, 222, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(79, 71, 71, 0.1); } /* Fast scroll state for velocity-based transitions */ .top-banner.fast-scroll { transition-duration: 0.2s; } .top-banner-left { display: flex; align-items: center; flex: 1; position: relative; z-index: 2; } .top-banner-center { display: flex; justify-content: center; flex: 2; position: relative; z-index: 2; } .top-banner-right { display: flex; justify-content: flex-end; flex: 1; position: relative; z-index: 2; } .banner-left { display: flex; align-items: center; gap: 15px; } .banner-left #cursorToggle { margin-right: 15px; } .logo-link { text-decoration: none; display: flex; align-items: center; gap: 0; margin-left: 0; margin-right: 15px; } .logo { height: 50px; width: auto; transition: height 0.3s ease-out; } .top-banner.scrolled .logo { height: 40px; } .opening-hours { font-size: 14px; color: var(--primary-mid); background: rgba(79, 71, 71, 0.08); padding: 10px 20px; border-radius: 25px; transition: font-size 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .top-banner.scrolled .opening-hours { font-size: 12px; padding: 8px 15px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 25px; padding: 8px 8px 8px 15px; transition: all 0.3s ease; order: 1; width: 250px; } .search-container:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.3); } .search-container form { display: flex; align-items: center; width: 100%; } .search-field { background: transparent; border: none; color: white; font-size: 14px; width: 100%; outline: none; padding: 0; margin-right: 8px; } .search-field::placeholder { color: rgba(255, 255, 255, 0.7); } .search-field:focus::placeholder { color: rgba(255, 255, 255, 0.5); } .search-btn { background: rgba(255, 255, 255, 0.2); border: none; color: white; cursor: pointer; padding: 6px; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; border-radius: 50%; flex-shrink: 0; } .search-btn:hover { background: rgba(255, 255, 255, 0.3); } .search-container { display: flex; align-items: center; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 25px; padding: 8px 8px 8px 15px; transition: all 0.3s ease; order: 1; width: 250px; } .search-container:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.3); } .search-container form { display: flex; align-items: center; width: 100%; } .search-field { background: transparent; border: none; color: white; font-size: 14px; width: 100%; outline: none; padding: 0; margin-right: 8px; } .search-field::placeholder { color: rgba(255, 255, 255, 0.7); } .search-field:focus::placeholder { color: rgba(255, 255, 255, 0.5); } .search-btn { background: rgba(255, 255, 255, 0.2); border: none; color: white; cursor: pointer; padding: 6px; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; border-radius: 50%; flex-shrink: 0; } .search-btn:hover { background: rgba(255, 255, 255, 0.3); } .main-nav { display: flex; align-items: center; gap: 25px; } .nav-link { text-decoration: none; color: white; font-weight: 500; font-size: 18px; padding: 8px 12px; border-radius: 8px; transition: color 0.3s ease, transform 0.2s ease, background 0.3s ease; position: relative; } .nav-link:hover { color: white; transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); } .nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent-teal); transition: width 0.3s ease; } .nav-link:hover::after { width: 100%; } .nav-link.active { color: white; background: rgba(255, 255, 255, 0.15); } .nav-link.active::after { width: 100%; } /* Nav Dropdown */ .nav-dropdown { position: relative; } .nav-dropdown .nav-link { display: flex; align-items: center; gap: 5px; } .nav-dropdown .nav-link .dropdown-arrow { display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; transition: transform 0.3s ease; margin-top: 2px; } .nav-dropdown:hover .nav-link .dropdown-arrow { transform: rotate(180deg); } .dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--primary-dark); border: 1px solid rgba(235, 235, 222, 0.15); border-radius: 12px; padding: 8px 0; min-width: 180px; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease; transform: translateX(-50%) translateY(8px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); z-index: 1002; } .dropdown-menu::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid var(--primary-dark); } .dropdown-menu::after { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; } .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); } .dropdown-menu .dropdown-item { display: block; padding: 10px 20px; color: var(--primary-light); text-decoration: none; font-size: 15px; font-weight: 500; transition: background 0.2s ease, color 0.2s ease; white-space: nowrap; } .dropdown-menu .dropdown-item:hover { background: rgba(235, 235, 222, 0.1); color: var(--accent-orange); } .logo-link { text-decoration: none; display: flex; align-items: center; gap: 0; margin-left: 0; margin-right: 15px; } .logo { height: 50px; width: auto; transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1); will-change: height; } .top-banner.scrolled .logo { height: 35px; } .opening-hours { font-size: 14px; color: var(--primary-mid); background: rgba(79, 71, 71, 0.08); padding: 10px 20px; border-radius: 25px; transition: font-size 0.25s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s cubic-bezier(0.4, 0, 0.2, 1); } #cursorToggle { background: transparent; border: 2px solid var(--primary-dark); color: var(--primary-dark); width: 60px; height: 60px; border-radius: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), height 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, border-color 0.3s ease; } .cursor-icon { width: 56px; height: 56px; object-fit: contain; transition: opacity 0.3s ease; opacity: 1 !important; filter: none !important; } #cursorToggle:hover { background: var(--primary-dark); } #cursorToggle:hover .cursor-icon { filter: brightness(0) invert(1) !important; opacity: 1 !important; } /* Main Content */ .main-content { max-width: 700px; margin: 50px auto; padding: 110px 20px 20px 20px; transition: padding-top 0.2s ease-out; } .form-container { background: white; padding: 45px; border-radius: 24px; box-shadow: 0 15px 50px rgba(79, 71, 71, 0.1); } .form-title { color: var(--primary-dark); font-size: 28px; margin-bottom: 35px; text-align: center; font-weight: 600; } .form-group { margin-bottom: 24px; } .form-group label { display: block; margin-bottom: 8px; color: var(--primary-mid); font-weight: 500; font-size: 14px; } .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 2px solid rgba(119, 119, 100, 0.2); border-radius: 14px; font-size: 16px; transition: all 0.3s ease; background: var(--primary-light); color: var(--primary-dark); } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent-teal); background: white; box-shadow: 0 0 0 4px rgba(38, 166, 154, 0.15); } .form-group textarea { min-height: 120px; resize: vertical; } .form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234F4747' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; } .submit-btn { width: 100%; padding: 16px; background: var(--accent-teal); color: white; border: none; border-radius: 25px; font-size: 17px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(38, 166, 154, 0.35); background: #1e8e82; } .submit-btn:active { transform: translateY(0); } /* Login Button Styles */ .login-btn { background: transparent; border: 2px solid white; color: white; padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; position: relative; z-index: 10; pointer-events: auto; } .login-btn:hover { background: white; color: var(--primary-dark); transform: translateY(-2px); } .register-btn { background: transparent; border: 2px solid var(--primary-dark); color: var(--primary-dark); padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; } .register-btn:hover { background: var(--primary-dark); color: white; transform: translateY(-2px); } /* Top Banner Right Layout */ .top-banner-right { display: flex; justify-content: flex-end; align-items: center; gap: 15px; flex: 1; position: relative; z-index: 10; } /* Service Details Buttons */ .service-details { display: flex; gap: 15px; margin-top: 15px; flex-wrap: wrap; justify-content: center; } .service-btn { padding: 12px 24px; background: var(--accent-teal); color: white; text-decoration: none; border-radius: 25px; font-size: 14px; font-weight: 500; transition: all 0.3s ease; display: inline-block; } .service-btn:hover { background: white; color: var(--accent-teal); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(38, 166, 154, 0.3); } /* Success Message */ .success-message { display: none; text-align: center; padding: 30px; color: var(--accent-teal); } .success-message.show { display: block; } .success-message h3 { font-size: 24px; margin-bottom: 10px; } /* Overlay */ .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(79, 71, 71, 0.3); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 999; } .overlay.active { opacity: 1; visibility: visible; } @media (max-width: 600px) { .top-banner { flex-direction: column; gap: 15px; text-align: center; padding: 15px 20px; } .banner-left { width: 100%; justify-content: center; } .form-container { padding: 25px; } .logo { height: 40px; width: auto; } } /* ADDITIONS FOR HOME PAGE & DARK HEADER */ /* 1. Dark Header Theme */ .top-banner.dark-theme { background-color: var(--primary-dark); color: var(--primary-light); border-bottom: 3px solid var(--accent-orange); } .top-banner.dark-theme .company-name { color: var(--primary-light); } .top-banner.dark-theme .opening-hours { background: rgba(235, 235, 222, 0.1); color: var(--primary-light); } /* 2. Home Page Layout */ .home-content { max-width: 1200px; margin: 0 auto; padding: 110px 20px 20px 20px; transition: padding-top 0.2s ease-out; } /* Green Highlight Box */ .green-highlight-box { display: inline-block; background: rgba(34, 197, 94, 0.5); /* 50% transparent green */ padding: 8px 16px 8px 16px; border-radius: 8px; color: var(--primary-dark); font-weight: 500; backdrop-filter: blur(2px); border: 1px solid rgba(34, 197, 94, 0.3); box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2); margin-right: 0px; /* Move even further to the left */ position: relative; } /* Hero Section */ .hero-section { display: flex; align-items: center; justify-content: space-between; padding: 80px 20px; gap: 40px; min-height: 80vh; } .hero-text { flex: 1; max-width: 600px; } .hero-text h1 { font-size: 48px; line-height: 1.2; margin-bottom: 24px; color: var(--primary-dark); font-weight: 700; } .hero-text p { font-size: 18px; line-height: 1.6; margin-bottom: 35px; color: var(--primary-mid); } .hero-buttons { display: flex; gap: 15px; } .cta-btn { padding: 15px 30px; border-radius: 30px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; } .cta-btn.primary { background-color: var(--accent-teal); color: white; border: 2px solid var(--accent-teal); } .cta-btn.primary:hover { background-color: #1e8e82; border-color: #1e8e82; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(38, 166, 154, 0.2); } .cta-btn.secondary { background-color: transparent; color: var(--primary-dark); border: 2px solid var(--primary-dark); } .cta-btn.secondary:hover { background-color: var(--primary-dark); color: var(--primary-light); } .hero-image-placeholder { flex: 1; height: 400px; background-color: rgba(119, 119, 100, 0.1); border-radius: 24px; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--primary-mid); color: var(--primary-mid); } /* Services Section */ .services-section { padding: 60px 20px; margin-bottom: 60px; } .section-title { text-align: center; font-size: 32px; color: var(--primary-dark); margin-bottom: 50px; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; padding: 40px; border-radius: 24px; box-shadow: 0 15px 50px rgba(79, 71, 71, 0.05); transition: transform 0.3s ease; text-align: center; } .service-card:hover { transform: translateY(-10px); } .service-icon { font-size: 48px; margin-bottom: 20px; color: var(--accent-teal); } .service-card h3 { font-size: 22px; color: var(--primary-dark); margin-bottom: 15px; } .service-card p { color: var(--primary-mid); line-height: 1.6; } /* Info Section */ .info-section { background-color: white; padding: 80px 40px; border-radius: 24px; margin-bottom: 80px; box-shadow: 0 15px 50px rgba(79, 71, 71, 0.05); } .info-container { display: flex; align-items: center; gap: 50px; } .info-content { flex: 1; } .info-content h2 { font-size: 32px; color: var(--primary-dark); margin-bottom: 20px; } .info-content p { color: var(--primary-mid); font-size: 17px; line-height: 1.6; margin-bottom: 30px; } .info-list { list-style: none; } .info-list li { margin-bottom: 15px; padding-left: 30px; position: relative; color: var(--primary-dark); font-weight: 500; } .info-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-green); font-weight: bold; } .info-image-placeholder { flex: 1; height: 300px; background-color: var(--primary-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--primary-mid); color: var(--primary-mid); } /* Enterprise Section */ .enterprise-section { padding: 80px 20px; background: white; text-align: center; } .enterprise-content { max-width: 800px; margin: 0 auto; } .enterprise-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; } .feature-item { background: var(--primary-light); padding: 30px; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .feature-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(79, 71, 71, 0.1); } .feature-item h3 { color: var(--accent-teal); margin-bottom: 15px; font-size: 20px; } .feature-item p { color: var(--primary-mid); line-height: 1.6; } /* Pricing Section */ .pricing-section { padding: 80px 20px; background: var(--primary-light); text-align: center; } .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1000px; margin: 50px auto 0; } .pricing-card { background: white; padding: 40px 30px; border-radius: 16px; box-shadow: 0 5px 20px rgba(79, 71, 71, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; } .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(79, 71, 71, 0.15); } .pricing-card.featured { border: 2px solid var(--accent-teal); transform: scale(1.05); } .pricing-card h3 { color: var(--primary-dark); font-size: 24px; margin-bottom: 20px; } .price { font-size: 36px; font-weight: bold; color: var(--accent-teal); margin-bottom: 15px; } .pricing-card p { color: var(--primary-mid); margin-bottom: 25px; } .pricing-card ul { list-style: none; } .pricing-card li { padding: 8px 0; border-bottom: 1px solid rgba(119, 119, 100, 0.1); color: var(--primary-dark); } .pricing-card li:before { content: "✓ "; color: var(--accent-teal); font-weight: bold; margin-right: 8px; } /* Responsive Home */ @media (max-width: 900px) { .hero-section { flex-direction: column; text-align: center; padding-top: 40px; } .hero-text h1 { font-size: 36px; } .hero-buttons { justify-content: center; } .info-container { flex-direction: column-reverse; } .hero-image-placeholder, .info-image-placeholder { width: 100%; } } /* Navigation responsive */ @media (max-width: 768px) { .main-nav { display: none; } .top-banner { justify-content: space-between; height: 70px; padding: 5px 15px; } .top-banner.scrolled { height: 60px; padding: 5px 12px; } .banner-left { flex: 1; gap: 10px; } .logo { height: 40px; } .top-banner.scrolled .logo { height: 32px; } .top-banner.scrolled #cursorToggle { width: 32px; height: 32px; } .cursor-icon { width: 32px; height: 32px; } .opening-hours { display: none; } } @media (max-width: 480px) { .top-banner { height: 60px; padding: 5px 10px; } .top-banner.scrolled { height: 55px; } .logo { height: 35px; } .top-banner.scrolled .logo { height: 28px; } #cursorToggle { width: 34px; height: 34px; } .cursor-icon { width: 26px; height: 26px; } } /* Footer Banner Styles */ .footer-banner { background: rgba(42, 42, 42, 0.85) !important; color: var(--primary-light) !important; padding: 60px 0 30px; margin: 80px 0 0 0; border-top: 3px solid var(--accent-orange); width: 100%; position: relative; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; } .footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; width: 100%; margin-bottom: 40px; align-items: start; } .footer-section { display: flex; flex-direction: column; gap: 20px; } .footer-logo { margin-bottom: 15px; } .footer-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; } .footer-description p { line-height: 1.6; opacity: 0.8; font-size: 14px; margin: 0; } .footer-title { color: var(--accent-orange); font-size: 16px; margin: 0 0 15px 0; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; } .footer-nav { display: flex; flex-direction: column; gap: 12px; } .footer-link { color: var(--primary-light); text-decoration: none; font-size: 14px; opacity: 0.7; transition: all 0.3s ease; position: relative; padding-left: 0; } .footer-link:hover { opacity: 1; color: var(--accent-orange); transform: translateX(5px); } .footer-link::before { content: '▸'; position: absolute; left: -15px; opacity: 0; transition: opacity 0.3s ease; color: var(--accent-orange); } .footer-link:hover::before { opacity: 1; } .footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; } .contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; opacity: 0.8; margin-left: -8px; } .contact-item a { color: inherit; text-decoration: none; opacity: inherit; font-size: inherit; font-family: inherit; } .contact-item a:hover { opacity: 1; color: var(--accent-orange); } .contact-icon { font-size: 16px; width: 20px; text-align: center; } .social-media { margin-top: -10px; } .social-icons { display: flex; gap: 15px; } .social-link { display: flex; align-items: center; justify-content: center; color: var(--primary-light); text-decoration: none; width: 40px; height: 40px; border-radius: 8px; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); } .social-link:hover { background: var(--accent-orange); transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3); } .social-link:hover svg { filter: brightness(0) invert(1); } .social-link.instagram:hover { background: linear-gradient(45deg, #E4405F, #C13584, #833AB4); border-color: transparent; } .social-link.linkedin:hover { background: #0077B5; border-color: transparent; } .social-link img { width: 40px; height: 40px; border-radius: 8px; transition: transform 0.3s ease; } .social-link svg { width: 16px; height: 16px; transition: transform 0.3s ease; } .social-link.facebook:hover svg { filter: brightness(0) invert(1); } .social-link.instagram:hover svg { filter: brightness(0) invert(1); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px; margin-top: 20px; } .footer-bottom-content { display: flex; justify-content: space-between; align-items: center; } .footer-bottom p { opacity: 0.6; font-size: 13px; margin: 0; } .footer-bottom-links { display: flex; align-items: center; gap: 15px; } .footer-bottom-links .footer-link { font-size: 13px; opacity: 0.6; } .footer-bottom-links .footer-link:hover { opacity: 1; } .separator { opacity: 0.4; font-size: 12px; } /* Footer Responsive Design */ @media (max-width: 1024px) { .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; } } @media (max-width: 768px) { .footer-content { grid-template-columns: 1fr; gap: 30px; } .footer-container { padding: 0 20px; } .footer-banner { padding: 40px 0 25px; } .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; } .social-icons { justify-content: center; } } @media (max-width: 480px) { .footer-banner { padding: 30px 0 20px; margin-top: 60px; } .footer-content { gap: 25px; } .footer-title { font-size: 15px; } .footer-logo-img { height: 35px; } .social-link { width: 35px; height: 35px; } .social-link svg { width: 14px; height: 14px; } } /* Chat Send Button Styles */ .chat-send { background: var(--accent-teal); color: white; border: none; border-radius: 50%; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0; padding: 0; margin-left: 10px; box-shadow: 0 2px 8px rgba(38, 166, 154, 0.3); } .chat-send:hover { background: #1e8e82; transform: scale(1.05); box-shadow: 0 4px 12px rgba(38, 166, 154, 0.4); } .chat-send:active { transform: scale(0.95); } .chat-send img { width: 64px; height: 64px; filter: brightness(0) invert(1); object-fit: contain; } /* KI Widgets Section */ .ki-widgets-section { padding: 80px 0; background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.5) 100%); } .widgets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; } .ki-widget { background: var(--widget-bg); border: 2px solid var(--widget-border); border-radius: 20px; padding: 30px; box-shadow: var(--widget-shadow); transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; } .ki-widget::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal)); transform: scaleX(0); transition: transform 0.3s ease; } .ki-widget:hover::before { transform: scaleX(1); } .ki-widget:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(90, 82, 82, 0.15); } .widget-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; } .widget-icon { font-size: 2.5rem; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal)); border-radius: 15px; box-shadow: 0 4px 15px rgba(212, 134, 74, 0.3); } .widget-header h3 { color: var(--primary-dark); font-size: 1.5rem; font-weight: 600; margin: 0; } .widget-content p { color: var(--primary-mid); font-size: 1rem; line-height: 1.6; margin-bottom: 20px; } .widget-features { list-style: none; padding: 0; margin: 0 0 25px 0; } .widget-features li { color: var(--primary-dark); font-size: 0.95rem; padding: 8px 0; padding-left: 25px; position: relative; } .widget-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-green); font-weight: bold; } .widget-btn { background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal)); color: white; border: none; padding: 12px 30px; border-radius: 25px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(212, 134, 74, 0.3); width: 100%; } .widget-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 134, 74, 0.4); } .widget-btn:active { transform: translateY(0); } /* Responsive Design */ @media (max-width: 768px) { .ki-widgets-section { padding: 60px 20px; } .widgets-grid { grid-template-columns: 1fr; gap: 30px; } .ki-widget { padding: 25px; } .widget-icon { width: 50px; height: 50px; font-size: 2rem; } .widget-header h3 { font-size: 1.3rem; } } /* KI Demo Widgets Section */ .ki-demo-section { padding: 40px 0 80px 0; margin-top: -40px; position: relative; z-index: 10; } .demo-section-title { text-align: center; font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 10px; font-weight: 700; } .demo-section-subtitle { text-align: center; color: var(--primary-mid); font-size: 1.1rem; margin-bottom: 50px; } .demo-widgets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; } .demo-widget { background: rgba(255, 255, 255, 0.95); border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(90, 82, 82, 0.1); text-align: center; min-height: 600px; display: flex; flex-direction: column; } .demo-widget h3 { color: var(--primary-dark); font-size: 1.5rem; margin-bottom: 10px; } .demo-widget p { color: var(--primary-mid); font-size: 0.95rem; margin-bottom: 20px; } .demo-icon-circle { width: 80px; height: 80px; background: rgba(127, 184, 130, 0.3); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; box-shadow: 0 4px 15px rgba(127, 184, 130, 0.3); } .demo-btn { background: var(--accent-teal); color: white; border: none; padding: 12px 30px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .demo-btn:hover { background: #4a8e86; transform: translateY(-2px); } .chat-preview { background: #f5f5f5; border-radius: 12px; overflow: hidden; text-align: left; } .chat-header { background: linear-gradient(135deg, var(--accent-teal), var(--accent-green)); color: white; padding: 12px 20px; font-weight: 600; } .chat-bubble { background: var(--accent-teal); color: white; margin: 15px; padding: 12px 16px; border-radius: 12px 12px 12px 4px; display: inline-block; max-width: 80%; } .chat-bubble span { display: block; } .chat-time { font-size: 0.75rem; opacity: 0.7; margin-top: 5px; } .chat-messages { min-height: 120px; padding: 10px 0; } .chat-input-area { display: flex; padding: 12px; background: white; border-top: 1px solid #e0e0e0; gap: 10px; } .chat-input-field { flex: 1; border: 1px solid #ddd; border-radius: 20px; padding: 10px 16px; font-size: 0.9rem; outline: none; transition: border-color 0.3s ease; } .chat-input-field:focus { border-color: var(--accent-teal); } .chat-send-btn { background: var(--accent-teal); color: white; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; justify-content: center; } .chat-send-btn:hover { background: #4a8e86; transform: scale(1.05); } @media (max-width: 768px) { .demo-widgets-grid { grid-template-columns: 1fr; gap: 30px; padding: 0 15px; } .demo-widget { padding: 25px; min-height: auto; } .demo-section-title { font-size: 1.8rem; } .demo-section-subtitle { font-size: 0.95rem; margin-bottom: 30px; padding: 0 10px; } .ki-demo-section { padding: 20px 0 40px 0; margin-top: -20px; } .demo-icon-circle { width: 60px; height: 60px; } .demo-icon-circle img { width: 36px !important; height: 36px !important; } .sound-visualization { margin-top: 40px; height: 60px; } } @media (max-width: 480px) { .demo-widgets-grid { padding: 0 10px; gap: 20px; } .demo-widget { padding: 20px; } .demo-section-title { font-size: 1.5rem; } .pricing-box { padding: 30px 20px; } .pricing-value { font-size: 2.2rem; } } .demo-note { display: block; margin-top: 15px; color: var(--primary-mid); font-size: 0.85rem; } .online-dot { display: inline-block; width: 8px; height: 8px; background: #4ade80; border-radius: 50%; margin-right: 8px; } .chat-icon { background: rgba(167, 139, 250, 0.3); } .chat-preview .chat-bubble { background: #f0f0f0; color: var(--primary-dark); border-radius: 12px; margin: 15px; padding: 15px; text-align: left; max-width: 85%; display: block; } .chat-preview .chat-bubble.user-bubble { background: var(--accent-teal); color: white; margin-left: auto; margin-right: 15px; border-radius: 12px 12px 4px 12px; } /* Problems Section */ .problems-section { padding: 80px 0; background: transparent; } .section-label { display: block; color: var(--accent-teal); font-size: 0.85rem; font-weight: 500; margin-bottom: 15px; } .ki-demo-section .section-label { text-align: center; } .process-section .section-label { text-align: center; } .results-section .section-label { text-align: center; } .problems-headline { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 50px; font-weight: 700; } .problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; } .problem-card { background: white; border-radius: 16px; padding: 30px; border: 1px solid #e0e0e0; } .problem-number { display: block; color: var(--primary-mid); font-size: 0.85rem; margin-bottom: 15px; } .problem-card h3 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 15px; font-weight: 600; } .problem-card p { color: var(--primary-mid); font-size: 0.95rem; line-height: 1.6; } .solution-card { background: white; border-radius: 16px; padding: 30px; border: 1px solid #e0e0e0; } .solution-label { display: block; color: var(--accent-teal); font-size: 0.85rem; font-weight: 500; margin-bottom: 10px; } .solution-card h3 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 15px; font-weight: 600; } .solution-card p { color: var(--primary-mid); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; } .solution-badge { display: inline-block; background: rgba(127, 184, 130, 0.15); color: var(--accent-teal); padding: 10px 20px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; } @media (max-width: 768px) { .problems-grid { grid-template-columns: 1fr; } .problems-headline { font-size: 1.8rem; } } /* Fit Section */ .fit-section { padding: 80px 0; background: transparent; } .fit-headline { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 50px; font-weight: 700; } .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; } .fit-card { border-radius: 16px; padding: 30px; border: 1px solid #e0e0e0; } .fit-card.negative { background: rgba(220, 100, 100, 0.3); } .fit-card.positive { background: rgba(100, 180, 100, 0.3); border-left-color: var(--accent-teal); } .fit-card-title { font-size: 1.1rem; margin-bottom: 25px; font-weight: 600; color: var(--primary-dark); opacity: 1; text-shadow: none; } .negative-title { color: var(--primary-dark); } .positive-title { color: var(--primary-dark); } .fit-list { list-style: none; padding: 0; margin: 0; } .fit-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; font-size: 0.95rem; color: var(--primary-dark); font-weight: 500; opacity: 1; text-shadow: none; } .fit-icon { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: 0.8rem; font-weight: bold; } .negative-icon { background: rgba(220, 120, 120, 0.1); color: #d87777; font-weight: bold; } .positive-icon { background: rgba(120, 180, 120, 0.15); color: #6fa86f; font-weight: bold; } @media (max-width: 768px) { .fit-grid { grid-template-columns: 1fr; } .fit-headline { font-size: 1.8rem; } } /* Pricing Section */ .pricing-section { padding: 80px 0; background: transparent; } .pricing-headline { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 20px; font-weight: 700; } .pricing-headline::after { display: none; } .pricing-box { background: white; border-radius: 16px; padding: 50px 60px; border: none; border-top: 3px solid var(--accent-orange); text-align: center; margin-top: 30px; } .pricing-cards { display: flex; justify-content: center; gap: 80px; margin-bottom: 30px; flex-wrap: wrap; } .pricing-section .pricing-card { text-align: center; background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; min-width: 200px; } .pricing-section .pricing-card:hover { transform: none; box-shadow: none !important; } .pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 5px; margin-bottom: 10px; } .pricing-prefix { font-size: 1rem; color: var(--primary-mid); } .pricing-value { font-size: 3rem; font-weight: 300; color: var(--primary-dark); } .pricing-suffix { font-size: 1rem; color: var(--primary-mid); } .pricing-label { font-size: 1rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 5px; } .pricing-detail { font-size: 0.85rem; color: var(--primary-mid); } .pricing-note { text-align: center; color: var(--primary-mid); font-size: 0.95rem; max-width: 600px; margin: 0 auto 30px; line-height: 1.6; } .pricing-cta { text-align: center; margin-bottom: 30px; } .pricing-btn { display: inline-block; background: var(--accent-teal); color: white; padding: 18px 50px; border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; } .pricing-btn:hover { background: #4a8e86; transform: translateY(-2px); } .pricing-benefits { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; } .pricing-benefit { color: var(--primary-mid); font-size: 0.9rem; } .pricing-benefit::before { content: none; } .benefit-check { color: var(--accent-teal); margin-right: 6px; } @media (max-width: 768px) { .pricing-cards { flex-direction: column; gap: 40px; align-items: center; } .pricing-headline { font-size: 1.8rem; } .pricing-benefits { flex-direction: column; align-items: center; gap: 15px; } } /* Cookiebot Banner Override - Force to bottom of screen */ #CybotCookiebotDialog, #CybotCookiebotDialog.CybotEdge { position: fixed !important; bottom: 0 !important; top: auto !important; left: 0 !important; right: 0 !important; width: 100% !important; z-index: 99999 !important; transform: none !important; margin: 0 !important; }