/* Modern Digital Presentation Styles */

:root {
    --primary-color: #1abc9c;
    --primary-glow: #2ecc71;
    --primary-dark: #16a085;
    --secondary-color: #3498db;
    --accent-color: #9b59b6;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --gradient-primary: linear-gradient(135deg, #1abc9c 0%, #3498db 100%);
    --gradient-glow: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    --shadow-glow: 0 0 40px rgba(26, 188, 156, 0.2);
    --shadow-elegant: 0 20px 60px -20px rgba(26, 188, 156, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: #ffffff;
}

body.cookies-settings-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

html.cookies-settings-open {
    overflow: hidden !important;
}

/* Modern Navbar */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(26, 188, 156, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Language Dropdown */
#langDropdown {
    transform: none !important;
}

#langDropdown:hover::after {
    width: 100%;
    background: var(--gradient-primary);
}

.dropdown-menu[aria-labelledby="langDropdown"] {
    transform: none !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 188, 156, 0.1);
    padding: 6px;
    min-width: auto;
    width: auto;
}

.dropdown-menu[aria-labelledby="langDropdown"] .dropdown-item {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1.5rem;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
}

.dropdown-menu[aria-labelledby="langDropdown"] .dropdown-item:hover {
    background: rgba(26, 188, 156, 0.1);
    transform: none !important;
}

/* Hero Section - Ultra Modern */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 50%, #e0f2fe 100%);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

.hero-gradient {
    height: 200px;
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
    z-index: 2;
    pointer-events: none;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-section .text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Modern Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

.btn-outline-primary:hover::before {
    width: 100%;
}

/* Services Section - Enhanced */
#sluzby {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

#sluzby::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

/* Modern Service Cards */
.service-card-modern {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.03) 0%, rgba(52, 152, 219, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.5rem;
    z-index: 0;
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -20px rgba(26, 188, 156, 0.25);
    border-color: rgba(26, 188, 156, 0.2);
}

.service-card-modern > * {
    position: relative;
    z-index: 1;
}

/* Modern Icon Wrapper */
.icon-wrapper-modern {
    position: relative;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-bg-modern {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 1.25rem;
    transform: rotate(-5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.25);
}

.icon-bg-secondary {
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.25);
}

.icon-bg-accent {
    background: linear-gradient(135deg, #9b59b6 0%, #e74c3c 100%);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.25);
}

.icon-svg {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card-modern:hover .icon-wrapper-modern {
    transform: scale(1.1);
}

.service-card-modern:hover .icon-bg-modern {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(26, 188, 156, 0.35);
}

.service-card-modern:hover .icon-bg-secondary {
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.35);
}

.service-card-modern:hover .icon-bg-accent {
    box-shadow: 0 12px 35px rgba(155, 89, 182, 0.35);
}

.service-card-modern:hover .icon-svg {
    transform: scale(1.1);
}

.service-features {
    border-top: 1px solid rgba(26, 188, 156, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.feature-item {
    padding-left: 0.5rem;
    border-left: 3px solid rgba(26, 188, 156, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-left-color: var(--primary-color);
    padding-left: 0.75rem;
}

.feature-number {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Dokumentarna Section - Premium */
#dokumentarna {
    background: linear-gradient(135deg, #ffffff 0%, rgba(26, 188, 156, 0.02) 100%);
    position: relative;
}

.bg-gradient-primary {
    background: var(--gradient-glow);
    border: 1px solid rgba(26, 188, 156, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-check {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-check:nth-child(1) { animation-delay: 0.1s; }
.feature-check:nth-child(2) { animation-delay: 0.2s; }
.feature-check:nth-child(3) { animation-delay: 0.3s; }
.feature-check:nth-child(4) { animation-delay: 0.4s; }
.feature-check:nth-child(5) { animation-delay: 0.5s; }
.feature-check:nth-child(6) { animation-delay: 0.6s; }

.feature-check:hover {
    transform: translateX(8px);
}

.feature-check:hover .bg-primary {
    background: var(--gradient-primary) !important;
}

/* Contact Section - Modern */
#kontakt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    transition: left 0.4s ease;
    z-index: 0;
}

.contact-item:hover::before {
    left: 0;
}

.contact-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-elegant);
    border-color: rgba(26, 188, 156, 0.3);
}

.contact-item > * {
    position: relative;
    z-index: 1;
}

.contact-icon {
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary) !important;
}

.contact-item:hover .contact-icon svg {
    color: white !important;
}

/* Form Styling */
.form-control {
    border: 2px solid rgba(13, 148, 136, 0.1);
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Section Headings */
section h2 {
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Badge */
.badge {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Utility */
.max-w-2xl {
    max-width: 42rem;
}

.z-2 {
    z-index: 2;
}

/* Scroll Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        min-height: 90vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Section spacing */
section {
    scroll-margin-top: 100px;
}

.page-section {
    padding-top: 120px !important;
}

/* Stats in hero */
.hero-stats {
    border-top: 1px solid rgba(26, 188, 156, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

/* Ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Form enhancements */
.form-label {
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-control-lg {
    font-size: 1rem;
    padding: 1rem 1.25rem;
}

.form-control.has-value {
    border-color: var(--primary-color);
}

.focused .form-label {
    color: var(--primary-color);
}

/* Footer */
.hover-underline {
    position: relative;
    transition: color 0.3s ease;
}

.hover-underline:hover {
    color: var(--primary-color) !important;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* Additional utilities */
.blur-5 {
    filter: blur(80px);
}

.w-64 {
    width: 16rem;
}

.fs-2 {
    font-size: 1.5rem;
}

.fs-4 {
    font-size: 1.25rem;
}

.fs-5 {
    font-size: 1.125rem;
}

.display-1 {
    font-size: clamp(3rem, 10vw, 6rem);
}

.display-3 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}


.rounded-5 {
    border-radius: 1.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15) !important;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 1000px 100%;
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Section - Dokumentarna - New Modern Design */
.product-section-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0fdfa 100%);
    position: relative;
}

.product-bg-decoration {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26, 188, 156, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(52, 152, 219, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.product-content-modern {
    padding: 2rem 0;
}

.badge-modern-custom {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.product-title-modern {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.product-description-modern {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    max-width: 550px;
}

.product-link-modern {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(26, 188, 156, 0.2);
    transition: all 0.3s ease;
}

.product-link-modern:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-glow);
}

.product-highlights-modern {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(26, 188, 156, 0.1);
}

.highlight-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon-wrapper-modern {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.highlight-content-modern {
    flex: 1;
    color: #334155;
    line-height: 1.6;
    padding-top: 0.25rem;
}

.highlight-content-modern strong {
    color: #1e293b;
    font-weight: 700;
}

.btn-product-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-product-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
    color: white;
}

/* Showcase Card */
.product-showcase-modern {
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.showcase-card-modern {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.showcase-card-modern:hover {
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.15);
    border-color: rgba(26, 188, 156, 0.3);
}

.showcase-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.showcase-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.showcase-logo-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-circle-modern {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.logo-text-modern h3 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.status-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #10b981;
    color: white;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-dot-modern {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.showcase-stats-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.stat-item-showcase {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(26, 188, 156, 0.1);
}

.stat-number-showcase {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label-showcase {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex: 1;
    align-content: flex-start;
}

.feature-tag-modern {
    padding: 0.5rem 1rem;
    background: rgba(26, 188, 156, 0.08);
    border: 1px solid rgba(26, 188, 156, 0.15);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #334155;
    font-weight: 500;
    transition: all 0.2s ease;
}

.feature-tag-modern:hover {
    background: rgba(26, 188, 156, 0.12);
    border-color: rgba(26, 188, 156, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(26, 188, 156, 0.15);
}

/* Reference Section */
.reference-content-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reference-item-modern {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(26, 188, 156, 0.1);
    transition: all 0.3s ease;
}

.reference-item-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.15);
    border-color: rgba(26, 188, 156, 0.3);
}

.reference-image-modern {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.reference-card-modern:hover .reference-image-modern {
    transform: scale(1.05);
}

.reference-placeholder-modern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(26, 188, 156, 0.2);
}

.reference-link-modern {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.reference-link-modern:hover {
    color: var(--primary-glow);
    transform: translateX(4px);
}

.btn-reference-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reference-modern:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.reference-card-modern {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.reference-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.15);
    border-color: rgba(26, 188, 156, 0.3);
}

.reference-image-wrapper-modern {
    width: 100%;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.reference-badge-modern {
    margin-bottom: 0.5rem;
}

.product-header {
    max-width: 600px;
}

.features-grid {
    max-width: 600px;
}

.feature-card-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.15);
    border-color: rgba(26, 188, 156, 0.3);
}

.feature-icon-modern {
    width: 48px;
    height: 48px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.feature-card-modern:hover .feature-icon-modern svg {
    color: white !important;
}

/* Product Preview - Modern Design */
.product-preview {
    height: 100%;
}

.preview-card-modern {
    min-height: 600px;
    border: 1px solid rgba(26, 188, 156, 0.1) !important;
}

.preview-gradient-bg {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.02) 0%, rgba(52, 152, 219, 0.02) 100%);
    opacity: 0.5;
}

.preview-header-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.preview-status-modern .badge {
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #10b981 !important;
    color: white !important;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: white !important;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.stat-card-modern {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    border: 1px solid rgba(26, 188, 156, 0.1);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
    border-color: rgba(26, 188, 156, 0.2);
}

.preview-content-modern {
    background: rgba(255, 255, 255, 0.6);
}

.preview-section-modern {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    border: 1px solid rgba(26, 188, 156, 0.08);
    transition: all 0.3s ease;
}

.preview-section-modern:hover {
    border-color: rgba(26, 188, 156, 0.2);
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.1);
}

.section-header-modern {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.section-icon-modern {
    width: 32px;
    height: 32px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-list-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge-modern {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(26, 188, 156, 0.08);
    border: 1px solid rgba(26, 188, 156, 0.15);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: #334155;
    font-weight: 500;
    transition: all 0.2s ease;
}

.feature-badge-modern:hover {
    background: rgba(26, 188, 156, 0.12);
    border-color: rgba(26, 188, 156, 0.25);
    transform: translateY(-1px);
}

.stat-box {
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.1);
}

.feature-dot {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    transform: translateZ(0);
    will-change: transform;
}

.cookies-banner-basic {
    padding: 0;
}

.cookies-banner-settings {
    padding: 1rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

.cookie-setting-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-setting-item .form-check-input {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.cookie-setting-item .form-check-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookies-banner.hide {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.cookies-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookies-banner a:hover {
    color: #1abc9c;
}
