/**
 * Sendvičovač.sk - Sections Styles
 * PRESNÉ CSS štýly podľa template-parts tried
 *
 * @package sendvicovac-sk
 * @version 2.0.0
 */

/* ============================================
   GLOBÁLNE NASTAVENIA - PRESNÉ HODNOTY
   ============================================ */

/* Section padding - 4rem (64px) mobile, 6rem (96px) desktop */
.section-padding {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

/* Container - max-width 1200px, padding 1rem/1.5rem/2rem */
.container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Background gradients */
.bg-gradient-light {
    background: linear-gradient(to bottom, hsl(0, 0%, 100%) 0%, hsla(25, 95%, 53%, 0.03) 100%) !important;
}

.bg-gradient-warm {
    background: linear-gradient(180deg, hsl(45, 50%, 98%), hsl(45, 30%, 95%)) !important;
}

/* ============================================
   SECTION HEADERS - PRESNÉ HODNOTY
   ============================================ */

/* Section header - text-center, mb-16 */
.section-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

/* Section title - text-3xl md:text-4xl, font-bold, mb-6 */
.section-title {
    font-size: 1.875rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    color: hsl(25, 15%, 15%) !important;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem !important;
    }
}

/* Section description - text-xl, text-muted, max-w-3xl, mx-auto */
.section-description {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
    color: hsl(25, 8%, 45%) !important;
    max-width: 48rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================
   BADGES - PRESNÉ HODNOTY
   ============================================ */

/* Badge base - inline-flex, items-center, gap-2, px-3, py-1, rounded-full */
.badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 9999px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    margin-bottom: 1rem !important;
}

/* Badge primary - bg-white, text-primary, border-primary/30, shadow */
.badge-primary {
    background: hsl(0, 0%, 100%) !important;
    color: hsl(25, 95%, 53%) !important;
    border: 1px solid hsla(25, 95%, 53%, 0.3) !important;
    box-shadow: 0 4px 20px hsla(25, 20%, 15%, 0.08) !important;
}

/* ============================================
   GRADIENT TEXT - PRESNÉ HODNOTY
   ============================================ */

.gradient-text {
    background: linear-gradient(135deg, hsl(25, 95%, 53%) 0%, hsl(35, 100%, 65%) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ============================================
   KARTY - PRESNÉ HODNOTY
   ============================================ */

/* Card base - border-2, p-6, rounded-xl, bg-white */
.card {
    background: hsl(0, 0%, 100%) !important;
    border: 2px solid hsl(45, 15%, 88%) !important;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.card:hover {
    border-color: hsla(25, 95%, 53%, 0.2) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15) !important;
}

/* Feature card */
.feature-card {
    background: hsl(0, 0%, 100%) !important;
    border: 2px solid hsl(45, 15%, 88%) !important;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.feature-card:hover {
    border-color: hsla(25, 95%, 53%, 0.2) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15) !important;
}

/* Card header - flex, items-start, gap-4, mb-4 */
.card-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
}

/* Feature icon - p-3, bg-primary/10, rounded-lg */
.feature-icon {
    padding: 0.75rem !important;
    background: hsla(25, 95%, 53%, 0.1) !important;
    border-radius: 0.5rem !important;
    display: inline-flex !important;
    flex-shrink: 0 !important;
    color: hsl(25, 95%, 53%) !important;
}

/* Feature title - text-lg, font-semibold, mb-2 */
.feature-title {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    color: hsl(25, 15%, 15%) !important;
}

/* Feature description - text-muted-foreground, mb-4 */
.feature-description {
    color: hsl(25, 8%, 45%) !important;
    margin-bottom: 1rem !important;
}

/* ============================================
   GRID LAYOUTS - PRESNÉ HODNOTY
   ============================================ */

/* Grid 2 columns - gap-8, md:grid-cols-2 */
.grid-2 {
    display: grid !important;
    gap: 2rem !important;
    grid-template-columns: 1fr !important;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Grid 3 columns - gap-8, md:grid-cols-3 */
.grid-3 {
    display: grid !important;
    gap: 2rem !important;
    grid-template-columns: 1fr !important;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Grid 4 columns - gap-8, sm:grid-cols-2, lg:grid-cols-4 */
.grid-4 {
    display: grid !important;
    gap: 2rem !important;
    grid-template-columns: 1fr !important;
}

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Features grid */
.features-grid {
    display: grid !important;
    gap: 2rem !important;
    grid-template-columns: 1fr !important;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ============================================
   FEATURED IMAGE - PRESNÉ HODNOTY
   ============================================ */

/* Featured image wrapper - mb-16 */
.featured-image {
    margin-bottom: 4rem !important;
}

/* Image wrapper - relative, rounded-xl, overflow-hidden, shadow-2xl */
.image-wrapper {
    position: relative !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Featured img - w-full, h-64 md:h-96, object-cover */
.featured-img {
    width: 100% !important;
    height: 16rem !important;
    object-fit: cover !important;
}

@media (min-width: 768px) {
    .featured-img {
        height: 24rem !important;
    }
}

/* Image overlay - absolute, inset-0, gradient background filter - VŽDY VIDITEĽNÝ */
.image-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg,
        hsla(25, 95%, 53%, 0.75) 0%,
        hsla(35, 100%, 65%, 0.65) 50%,
        hsla(45, 80%, 70%, 0.55) 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Overlay content - text-center, text-white */
.overlay-content {
    text-align: center !important;
    color: hsl(0, 0%, 100%) !important;
}

.overlay-content h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

.overlay-content p {
    font-size: 1.125rem !important;
}

/* ============================================
   FEATURE DETAILS - PRESNÉ HODNOTY
   ============================================ */

/* Feature details - mt-4 */
.feature-details {
    margin-top: 1rem !important;
}

/* Button toggle - flex, items-center, justify-between, w-full, px-4, py-2, text-sm, font-medium */
.btn-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    background: hsla(25, 95%, 53%, 0.05) !important;
    border: 1px solid hsla(25, 95%, 53%, 0.2) !important;
    border-radius: 0.5rem !important;
    color: hsl(25, 95%, 53%) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-toggle:hover {
    background: hsla(25, 95%, 53%, 0.1) !important;
}

/* Details content - mt-4, p-4, bg-muted/50, rounded-lg */
.details-content {
    margin-top: 1rem !important;
    padding: 1rem !important;
    background: hsla(45, 20%, 96%, 0.5) !important;
    border-radius: 0.5rem !important;
}

/* Check list - space-y-2 */
.check-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.check-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    color: hsl(25, 15%, 15%) !important;
}

.check-list li svg {
    flex-shrink: 0 !important;
    color: hsl(25, 95%, 53%) !important;
    margin-top: 0.25rem !important;
}

/* Business models - space-y-4 */
.business-models {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.business-models .model {
    padding: 1rem !important;
    background: hsl(0, 0%, 100%) !important;
    border-radius: 0.5rem !important;
    border: 1px solid hsl(45, 15%, 88%) !important;
}

.business-models .model h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    color: hsl(25, 15%, 15%) !important;
}

.business-models .model p {
    font-size: 0.875rem !important;
    color: hsl(25, 8%, 45%) !important;
    margin: 0 !important;
}

/* Partnership list */
.partnership-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.partnership-list li {
    margin-bottom: 1rem !important;
    color: hsl(25, 15%, 15%) !important;
}

.partnership-list li strong {
    color: hsl(25, 95%, 53%) !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

/* ============================================
   CTA BOXES - PRESNÉ HODNOTY
   ============================================ */

/* CTA box - gradient background, border, p-8, rounded-xl, text-center, mt-16 */
.cta-box {
    background: linear-gradient(to right, hsla(25, 95%, 53%, 0.1) 0%, hsla(35, 100%, 65%, 0.1) 50%, hsla(45, 80%, 70%, 0.1) 100%) !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    border: 1px solid hsla(25, 95%, 53%, 0.2) !important;
    text-align: center !important;
    margin-top: 4rem !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-box::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05) 0%, transparent 100%) !important;
}

/* CTA content - relative, z-10 */
.cta-content {
    position: relative !important;
    z-index: 1 !important;
}

.cta-content h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: hsl(25, 15%, 15%) !important;
}

.cta-content p {
    max-width: 42rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.5rem !important;
    color: hsl(25, 8%, 45%) !important;
}

/* ============================================
   BUTTONS - PRESNÉ HODNOTY
   ============================================ */

/* Button primary - gradient background, text-white, px-8, py-3, rounded-lg */
.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 2rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    background: linear-gradient(to right, hsl(25, 95%, 53%) 0%, hsl(35, 100%, 65%) 100%) !important;
    color: hsl(0, 0%, 100%) !important;
    box-shadow: 0 4px 20px hsla(25, 20%, 15%, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.btn-primary:hover {
    box-shadow: 0 8px 30px hsla(25, 20%, 15%, 0.12) !important;
    transform: translateY(-2px) !important;
}

/* Button large - px-10, py-4, text-lg */
.btn-large {
    padding: 1rem 2.5rem !important;
    font-size: 1.125rem !important;
}

/* Button secondary */
.btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 2rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    background: hsl(0, 0%, 100%) !important;
    color: hsl(25, 95%, 53%) !important;
    border: 2px solid hsl(25, 95%, 53%) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.btn-secondary:hover {
    background: hsl(25, 95%, 53%) !important;
    color: hsl(0, 0%, 100%) !important;
}

/* ============================================
   DEMO CONTROLS - INTERAKTÍVNA UKÁŽKA
   ============================================ */

/* Demo step - hidden by default */
.demo-step {
    opacity: 1 !important;
    transition: opacity 0.5s ease-in-out !important;
}

.demo-step.hidden {
    display: none !important;
}

/* Demo device buttons */
.demo-device-btn {
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.demo-device-btn:hover {
    transform: translateY(-2px) !important;
}

/* Demo play button */
#demo-play-btn {
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#demo-play-btn:hover {
    transform: scale(1.05) !important;
}

/* Demo cursor animation */
#demo-cursor {
    pointer-events: none !important;
    z-index: 10 !important;
    animation: cursor-bounce 1s ease-in-out infinite !important;
}

@keyframes cursor-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards !important;
}

/* Float animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite !important;
}

/* Float slow animation */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.animate-float-slow {
    animation: float-slow 6s ease-in-out infinite !important;
}

/* Drift animation */
@keyframes drift {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    50% {
        transform: translateX(20px) translateY(-20px);
    }
}

.animate-drift {
    animation: drift 8s ease-in-out infinite !important;
}

/* Bounce animation */
.animate-bounce {
    animation: bounce 2s ease-in-out infinite !important;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
}

/* Pulse animation */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hover scale effect */
.hover\:scale-105:hover {
    transform: scale(1.05) !important;
}

/* Transition utilities */
.transition-all {
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.duration-300 {
    transition-duration: 300ms !important;
}

/* Glow effect */
.glow {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3) !important;
}

.glow:hover {
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.5) !important;
}

/* Demo navigation buttons */
.demo-nav-btn {
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.demo-nav-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* Step number badge */
#step-number-badge {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Progress bar animation */
#progress-bar {
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Mobile frame */
#mobile-frame {
    max-width: 375px !important;
}

/* Desktop/Mobile content transition */
#desktop-content,
#mobile-content {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Demo reset button */
#demo-reset-btn {
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#demo-reset-btn:hover {
    transform: scale(1.05) !important;
}

/* ============================================
   TAILWIND UTILITY CLASSES - PRESNÉ HODNOTY
   ============================================ */

/* Text alignment */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Margin utilities */
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-16 { margin-bottom: 4rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-16 { margin-top: 4rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mr-2 { margin-right: 0.5rem !important; }

/* Padding utilities */
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }

/* Display utilities */
.inline-flex { display: inline-flex !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }
.hidden { display: none !important; }
.block { display: block !important; }

/* Flex utilities */
.flex-col { flex-direction: column !important; }
.flex-1 { flex: 1 1 0% !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.flex-wrap { flex-wrap: wrap !important; }

/* Space utilities */
.space-y-2 > * + * { margin-top: 0.5rem !important; }
.space-y-4 > * + * { margin-top: 1rem !important; }
.space-y-6 > * + * { margin-top: 1.5rem !important; }

/* Gap utilities */
.gap-2 { gap: 0.5rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }

/* Width utilities */
.w-3 { width: 0.75rem !important; }
.w-4 { width: 1rem !important; }
.w-32 { width: 8rem !important; }
.w-fit { width: fit-content !important; }
.w-full { width: 100% !important; }

/* Height utilities */
.h-2 { height: 0.5rem !important; }
.h-3 { height: 0.75rem !important; }
.h-4 { height: 1rem !important; }
.h-32 { height: 8rem !important; }
.h-64 { height: 16rem !important; }

/* Min-height utilities */
.min-h-\[400px\] { min-height: 400px !important; }

/* Max-width utilities */
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-6xl { max-width: 72rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Border utilities */
.border { border-width: 1px !important; }
.border-2 { border-width: 2px !important; }
.border-border { border-color: hsl(45, 15%, 88%) !important; }
.border-primary\/20 { border-color: hsla(25, 95%, 53%, 0.2) !important; }

/* Border radius utilities */
.rounded { border-radius: 0.25rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-full { border-radius: 9999px !important; }
.rounded-t-lg { border-top-left-radius: 0.5rem !important; border-top-right-radius: 0.5rem !important; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden !important; }

/* Background utilities */
.bg-card { background-color: hsl(0, 0%, 100%) !important; }
.bg-background { background-color: hsl(0, 0%, 100%) !important; }
.bg-primary { background-color: hsl(25, 95%, 53%) !important; }
.bg-primary\/10 { background-color: hsla(25, 95%, 53%, 0.1) !important; }
.bg-primary\/5 { background-color: hsla(25, 95%, 53%, 0.05) !important; }
.bg-green-100 { background-color: hsl(142, 76%, 90%) !important; }
.bg-green-500 { background-color: hsl(142, 76%, 45%) !important; }
.bg-red-500 { background-color: hsl(0, 84%, 60%) !important; }
.bg-blue-50 { background-color: hsl(214, 95%, 97%) !important; }
.bg-blue-100 { background-color: hsl(214, 95%, 93%) !important; }
.bg-green-50 { background-color: hsl(142, 76%, 97%) !important; }
.bg-yellow-50 { background-color: hsl(45, 93%, 97%) !important; }
.bg-purple-100 { background-color: hsl(270, 95%, 95%) !important; }
.bg-gray-100 { background-color: hsl(0, 0%, 96%) !important; }
.bg-gray-200 { background-color: hsl(0, 0%, 90%) !important; }
.bg-white { background-color: hsl(0, 0%, 100%) !important; }

/* Gradient background utilities */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; }
.from-primary\/5 { --tw-gradient-from: hsla(25, 95%, 53%, 0.05) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important; }
.to-primary-glow\/5 { --tw-gradient-to: hsla(35, 100%, 65%, 0.05) !important; }
.from-muted\/30 { --tw-gradient-from: hsla(25, 8%, 45%, 0.3) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important; }
.to-background { --tw-gradient-to: hsl(0, 0%, 100%) !important; }

/* Text color utilities */
.text-foreground { color: hsl(25, 15%, 15%) !important; }
.text-muted-foreground { color: hsl(25, 8%, 45%) !important; }
.text-primary { color: hsl(25, 95%, 53%) !important; }
.text-primary-foreground { color: hsl(0, 0%, 100%) !important; }
.text-white { color: hsl(0, 0%, 100%) !important; }
.text-green-500 { color: hsl(142, 76%, 45%) !important; }
.text-green-800 { color: hsl(142, 76%, 36%) !important; }
.text-blue-500 { color: hsl(214, 95%, 50%) !important; }
.text-blue-800 { color: hsl(214, 95%, 36%) !important; }
.text-yellow-500 { color: hsl(45, 93%, 47%) !important; }
.text-purple-800 { color: hsl(270, 95%, 40%) !important; }
.text-gray-600 { color: hsl(0, 0%, 45%) !important; }

/* Font size utilities */
.text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }

/* Font weight utilities */
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }

/* Responsive grid utilities */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .md\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
    .md\:h-96 { height: 24rem !important; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
}

/* Hover utilities */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hover-lift:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15) !important;
}

.hover\:border-primary\/20:hover {
    border-color: hsla(25, 95%, 53%, 0.2) !important;
}

.hover\:bg-green-600:hover {
    background-color: hsl(142, 76%, 40%) !important;
}

.hover\:bg-red-600:hover {
    background-color: hsl(0, 84%, 55%) !important;
}

/* Position utilities */
.relative { position: relative !important; }
.absolute { position: absolute !important; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden !important; }

/* Object fit utilities */
.object-cover { object-fit: cover !important; }

/* Inset utilities */
.inset-0 { top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important; }

/* Z-index utilities */
.z-10 { z-index: 10 !important; }

/* Filter utilities */
.blur-2xl { filter: blur(40px) !important; }

/* Backdrop blur utilities */
.backdrop-blur-sm { backdrop-filter: blur(4px) !important; -webkit-backdrop-filter: blur(4px) !important; }
.backdrop-blur { backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important; }

/* ============================================
   GRADIENT BACKGROUNDS - PRESNÉ HODNOTY
   ============================================ */

/* Gradient to bottom */
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
}

/* From muted/30 */
.from-muted\/30 {
    --tw-gradient-from: hsla(45, 20%, 96%, 0.3) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

/* To background */
.to-background {
    --tw-gradient-to: hsl(0, 0%, 100%) !important;
}

/* From background */
.from-background {
    --tw-gradient-from: hsl(0, 0%, 100%) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

/* To muted/30 */
.to-muted\/30 {
    --tw-gradient-to: hsla(45, 20%, 96%, 0.3) !important;
}

/* Gradient to right */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
}

/* Gradient to bottom right */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
}

/* From primary/10 */
.from-primary\/10 {
    --tw-gradient-from: hsla(25, 95%, 53%, 0.1) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

/* Via primary-glow/10 */
.via-primary-glow\/10 {
    --tw-gradient-via: hsla(35, 100%, 65%, 0.1) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent) !important;
}

/* To accent/10 */
.to-accent\/10 {
    --tw-gradient-to: hsla(35, 100%, 65%, 0.1) !important;
}

/* From white/5 */
.from-white\/5 {
    --tw-gradient-from: hsla(0, 0%, 100%, 0.05) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

/* To transparent */
.to-transparent {
    --tw-gradient-to: transparent !important;
}

/* From primary */
.from-primary {
    --tw-gradient-from: hsl(25, 95%, 53%) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent) !important;
}

/* To primary-glow */
.to-primary-glow {
    --tw-gradient-to: hsl(35, 100%, 65%) !important;
}

/* Hover gradient variants */
.hover\:from-primary\/90:hover {
    --tw-gradient-from: hsla(25, 95%, 53%, 0.9) !important;
}

.hover\:to-primary-glow\/90:hover {
    --tw-gradient-to: hsla(35, 100%, 65%, 0.9) !important;
}

/* ============================================
   SPACING UTILITIES - PRESNÉ HODNOTY
   ============================================ */

/* Space-y utilities */
.space-y-2 > * + * { margin-top: 0.5rem !important; }
.space-y-4 > * + * { margin-top: 1rem !important; }

/* ============================================
   SHADOW UTILITIES - PRESNÉ HODNOTY
   ============================================ */

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.shadow-soft {
    box-shadow: 0 4px 20px hsla(25, 20%, 15%, 0.08) !important;
}

.shadow-medium {
    box-shadow: 0 8px 30px hsla(25, 20%, 15%, 0.12) !important;
}

.shadow-strong {
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15) !important;
}

/* ============================================
   TRANSITION UTILITIES - PRESNÉ HODNOTY
   ============================================ */

.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ============================================
   FINÁLNE ÚPRAVY - FORCE STYLES
   ============================================ */

/* Ensure all sections have proper spacing */
section {
    position: relative !important;
}

/* Ensure all containers have proper width */
section .container {
    width: 100% !important;
}

/* Ensure all grids work properly */
[class*="grid-"],
[class*="md:grid-cols-"],
[class*="lg:grid-cols-"] {
    display: grid !important;
}

/* Ensure all cards have proper styling */
[class*="card"],
[class*="-card"] {
    display: block !important;
}

/* Ensure all buttons work */
[class*="btn-"] {
    display: inline-flex !important;
    cursor: pointer !important;
}

/* ============================================
   GRID LAYOUTS - PRESNÉ HODNOTY
   ============================================ */

/* Grid gap - 2rem (32px) */
.grid-gap {
    gap: 2rem;
}

/* Grid 2 columns - 1 mobile, 2 desktop (768px+) */
.grid-2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Grid 3 columns - 1 mobile, 2 tablet (768px+), 3 desktop (1024px+) */
.grid-3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Grid 4 columns - 1 mobile, 2 tablet (640px+), 4 desktop (1024px+) */
.grid-4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   TYPOGRAPHY - PRESNÉ HODNOTY
   ============================================ */

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, hsl(25, 95%, 53%) 0%, hsl(35, 100%, 65%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section heading - text-3xl (1.875rem) mobile, text-4xl (2.25rem) desktop */
.section-heading {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 2.25rem;
    }
}

/* Section subtitle - text-xl (1.25rem) */
.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: hsl(25, 8%, 45%);
    margin-bottom: 1rem;
}

/* ============================================
   SPACING - PRESNÉ HODNOTY
   ============================================ */

/* Margin bottom - mb-4 (1rem), mb-6 (1.5rem), mb-8 (2rem), mb-16 (4rem) */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }

/* Margin top - mt-4 (1rem), mt-8 (2rem), mt-16 (4rem) */
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

/* ============================================
   FEATURES SECTION (#o-domene) - PRESNÉ HODNOTY
   ============================================ */

#o-domene {
    background: linear-gradient(to bottom, hsl(0, 0%, 100%) 0%, hsla(25, 95%, 53%, 0.03) 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    #o-domene {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Header - text-center, mb-16 (4rem) */
#o-domene .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Badge - mb-4 (1rem) */
#o-domene .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: hsl(0, 0%, 100%);
    color: hsl(25, 95%, 53%);
    border: 1px solid hsla(25, 95%, 53%, 0.3);
    box-shadow: 0 4px 20px hsla(25, 20%, 15%, 0.08);
    margin-bottom: 1rem;
}

/* Heading - text-3xl md:text-4xl, mb-6 (1.5rem) */
#o-domene h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: hsl(25, 15%, 15%);
}

@media (min-width: 768px) {
    #o-domene h2 {
        font-size: 2.25rem;
    }
}

/* Subtitle - text-xl, max-w-3xl, mx-auto */
#o-domene .subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: hsl(25, 8%, 45%);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Business image - mb-16 (4rem) */
#o-domene .business-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 4rem;
}

#o-domene .business-image-wrapper img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

@media (min-width: 768px) {
    #o-domene .business-image-wrapper img {
        height: 24rem;
    }
}

/* Image overlay */
#o-domene .business-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(25, 95%, 53%, 0.8) 0%, hsla(35, 100%, 65%, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Expandable cards grid - gap-8 (2rem), md:grid-cols-2 */
#o-domene .features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    #o-domene .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Expandable card - border-2, hover:border-primary/20 */
#o-domene .expandable-card {
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#o-domene .expandable-card:hover {
    border-color: hsla(25, 95%, 53%, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15);
}

/* Icon wrapper - p-3 (0.75rem), bg-primary/10, rounded-lg */
#o-domene .icon-wrapper {
    padding: 0.75rem;
    background: hsla(25, 95%, 53%, 0.1);
    border-radius: 0.5rem;
    display: inline-flex;
    flex-shrink: 0;
}

/* Card content - flex gap-4 */
#o-domene .card-content {
    display: flex;
    gap: 1rem;
}

/* Card title - text-lg, font-semibold, mb-2 */
#o-domene .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(25, 15%, 15%);
}

/* Card subtitle - text-muted-foreground, mb-4 */
#o-domene .card-subtitle {
    color: hsl(25, 8%, 45%);
    margin-bottom: 1rem;
}

/* CTA section - mt-16 (4rem), text-center */
#o-domene .cta-section {
    margin-top: 4rem;
    text-align: center;
}

/* CTA box - gradient background, border-radius 1rem, padding 2rem */
#o-domene .cta-box {
    background: linear-gradient(to right, hsla(25, 95%, 53%, 0.1) 0%, hsla(35, 100%, 65%, 0.1) 50%, hsla(45, 80%, 70%, 0.1) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid hsla(25, 95%, 53%, 0.2);
    position: relative;
    overflow: hidden;
}

#o-domene .cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

/* CTA heading - text-2xl, font-bold, mb-4 */
#o-domene .cta-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(25, 15%, 15%);
}

/* CTA text - max-w-2xl, mx-auto, mb-6 */
#o-domene .cta-text {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    color: hsl(25, 8%, 45%);
}

/* CTA button - size lg, gradient background */
#o-domene .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    background: linear-gradient(to right, hsl(25, 95%, 53%) 0%, hsl(35, 100%, 65%) 100%);
    color: hsl(0, 0%, 100%);
    box-shadow: 0 4px 20px hsla(25, 20%, 15%, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

#o-domene .cta-button:hover {
    box-shadow: 0 8px 30px hsla(25, 20%, 15%, 0.12);
    transform: translateY(-2px);
}

/* ============================================
   TRUST SIGNALS SECTION (#vyhody) - PRESNÉ HODNOTY
   ============================================ */

#vyhody {
    background: linear-gradient(to bottom, hsla(25, 95%, 53%, 0.03) 0%, hsl(0, 0%, 100%) 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    #vyhody {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Header - text-center, mb-16 */
#vyhody .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Badge - bg-primary/10, text-primary, border-primary/20 */
#vyhody .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: hsla(25, 95%, 53%, 0.1);
    color: hsl(25, 95%, 53%);
    border: 1px solid hsla(25, 95%, 53%, 0.2);
    margin-bottom: 1rem;
}

/* Trust metrics grid - gap-8, md:grid-cols-2, lg:grid-cols-4, mb-16 */
#vyhody .trust-metrics-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    #vyhody .trust-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #vyhody .trust-metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Trust card - text-center, border-2, hover:border-primary/20, p-6 */
#vyhody .trust-card {
    text-align: center;
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#vyhody .trust-card:hover {
    border-color: hsla(25, 95%, 53%, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15);
}

/* Icon wrapper - p-3, bg-primary/10, rounded-full, w-fit, mx-auto, mb-4 */
#vyhody .trust-icon-wrapper {
    padding: 0.75rem;
    background: hsla(25, 95%, 53%, 0.1);
    border-radius: 9999px;
    width: fit-content;
    margin: 0 auto 1rem;
}

/* Trust value - text-3xl, font-bold, text-primary, mb-2 */
#vyhody .trust-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(25, 95%, 53%);
    margin-bottom: 0.5rem;
}

/* Trust label - font-semibold, mb-2 */
#vyhody .trust-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(25, 15%, 15%);
}

/* Trust description - text-sm, text-muted-foreground */
#vyhody .trust-description {
    font-size: 0.875rem;
    color: hsl(25, 8%, 45%);
}

/* Certifications wrapper - flex, flex-wrap, justify-center, gap-4, mb-16 */
#vyhody .certifications-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Certification badge - px-4, py-2, text-sm, font-medium */
#vyhody .certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonials grid - gap-6, md:grid-cols-3 */
#vyhody .testimonials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    #vyhody .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonial card - p-6 */
#vyhody .testimonial-card {
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#vyhody .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15);
}

/* Rating stars - flex, gap-1, mb-4 */
#vyhody .rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

/* Testimonial text - text-muted-foreground, mb-4, italic */
#vyhody .testimonial-text {
    color: hsl(25, 8%, 45%);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Testimonial name - font-semibold */
#vyhody .testimonial-name {
    font-weight: 600;
    color: hsl(25, 15%, 15%);
}

/* Testimonial business - text-sm, text-muted-foreground */
#vyhody .testimonial-business {
    font-size: 0.875rem;
    color: hsl(25, 8%, 45%);
}

/* Market trends box - mt-16, gradient background, border, p-8 */
#vyhody .market-trends-box {
    background: linear-gradient(to right,
        hsla(25, 95%, 53%, 0.08) 0%,
        hsla(35, 100%, 65%, 0.06) 50%,
        hsla(45, 80%, 70%, 0.04) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid hsla(25, 95%, 53%, 0.15);
    margin-top: 4rem;
}

/* Market stats grid - gap-6, md:grid-cols-3, text-center */
#vyhody .market-stats-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    text-align: center;
}

@media (min-width: 768px) {
    #vyhody .market-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   INTERACTIVE DEMO SECTION (#demo) - PRESNÉ HODNOTY
   ============================================ */

#demo {
    background: hsl(0, 0%, 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    #demo {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Background gradient */
#demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, hsla(25, 95%, 53%, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Header - text-center, mb-16 */
#demo .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Demo grid - gap-8, lg:grid-cols-2 */
#demo .demo-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    #demo .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Demo card - border-2, p-8 */
#demo .demo-card {
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#demo .demo-card:hover {
    border-color: hsla(25, 95%, 53%, 0.2);
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15);
}

/* Calculator input - w-full, px-4, py-3, border-2, rounded-lg */
#demo .calculator-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: hsl(0, 0%, 100%);
    color: hsl(25, 15%, 15%);
}

#demo .calculator-input:focus {
    outline: none;
    border-color: hsl(25, 95%, 53%);
    box-shadow: 0 0 0 3px hsla(25, 95%, 53%, 0.1);
}

/* Metrics grid - gap-4, sm:grid-cols-2 */
#demo .metrics-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    #demo .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Metric box - p-4, rounded-lg, bg-primary/5 */
#demo .metric-box {
    padding: 1rem;
    border-radius: 0.5rem;
    background: hsla(25, 95%, 53%, 0.05);
}

/* Metric label - text-sm, text-muted-foreground */
#demo .metric-label {
    font-size: 0.875rem;
    color: hsl(25, 8%, 45%);
    margin-bottom: 0.25rem;
}

/* Metric value - text-2xl, font-bold, text-foreground */
#demo .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(25, 15%, 15%);
}

/* ============================================
   PREMIUM FEATURES SECTION (#premium) - PRESNÉ HODNOTY
   ============================================ */

#premium {
    background: hsl(0, 0%, 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
}

@media (min-width: 1024px) {
    #premium {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Background blur circles */
#premium::before,
#premium::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
}

#premium::before {
    top: 0;
    right: 0;
    background: hsl(25, 95%, 53%);
}

#premium::after {
    bottom: 0;
    left: 0;
    background: hsl(35, 100%, 65%);
}

/* Header - text-center, mb-16 */
#premium .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Features grid - gap-8, md:grid-cols-2 */
#premium .features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    #premium .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Feature card - border-2, p-6, relative */
#premium .feature-card {
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#premium .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    background: hsla(217, 91%, 60%, 0.1);
    border-radius: 9999px;
    filter: blur(16px);
}

#premium .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15);
}

/* Icon wrapper - p-3, bg-blue-500/10, rounded-lg */
#premium .icon-wrapper {
    padding: 0.75rem;
    background: hsla(217, 91%, 60%, 0.1);
    border-radius: 0.5rem;
    display: inline-flex;
    margin-bottom: 1rem;
}

/* CTA box - mt-16, gradient background, border, p-8, text-center */
#premium .cta-box {
    background: linear-gradient(to right, hsla(25, 95%, 53%, 0.1) 0%, hsla(35, 100%, 65%, 0.1) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid hsla(25, 95%, 53%, 0.2);
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   MARKET DOMINANCE SECTION (#trh) - PRESNÉ HODNOTY
   ============================================ */

#trh {
    background: hsl(0, 0%, 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
}

@media (min-width: 1024px) {
    #trh {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Background blur circles */
#trh::before,
#trh::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    filter: blur(96px);
    opacity: 0.1;
    pointer-events: none;
}

#trh::before {
    top: 25%;
    left: 0;
    background: hsl(25, 95%, 53%);
}

#trh::after {
    bottom: 25%;
    right: 0;
    background: hsl(35, 100%, 65%);
}

/* Header - text-center, mb-16 */
#trh .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Market grid - gap-8, sm:grid-cols-2, lg:grid-cols-4 */
#trh .market-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    #trh .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #trh .market-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Market card - border-2, p-6, text-center */
#trh .market-card {
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#trh .market-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15);
}

/* CTA box - mt-16, gradient background, border, p-8, text-center */
#trh .cta-box {
    background: linear-gradient(to right, hsla(25, 95%, 53%, 0.05) 0%, hsla(217, 91%, 60%, 0.05) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid hsla(25, 95%, 53%, 0.1);
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   VŠETKY OSTATNÉ SEKCIE - SPOLOČNÉ ŠTÝLY
   ============================================ */

/* Business Opportunity (#biznis), Innovation Hub (#inovacie),
   Competitor Analysis (#konkurencia), Success Stories (#pribehy),
   Technical Specs (#specifikacie), Gallery (#galeria), Contact (#kontakt) */

#biznis,
#inovacie,
#konkurencia,
#pribehy,
#specifikacie,
#galeria,
#kontakt {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    #biznis,
    #inovacie,
    #konkurencia,
    #pribehy,
    #specifikacie,
    #galeria,
    #kontakt {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Section headers - text-center, mb-16 */
#biznis .section-header,
#inovacie .section-header,
#konkurencia .section-header,
#pribehy .section-header,
#specifikacie .section-header,
#galeria .section-header,
#kontakt .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Grid layouts - gap-8 */
#biznis .opportunities-grid,
#inovacie .innovations-grid,
#pribehy .stories-grid,
#specifikacie .specs-grid,
#galeria .gallery-grid,
#galeria .use-cases-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

/* 2 columns on tablet */
@media (min-width: 768px) {
    #biznis .opportunities-grid,
    #inovacie .innovations-grid,
    #pribehy .stories-grid,
    #specifikacie .specs-grid,
    #galeria .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 columns on desktop */
@media (min-width: 1024px) {
    #pribehy .stories-grid,
    #galeria .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 4 columns on desktop */
@media (min-width: 1024px) {
    #biznis .opportunities-grid,
    #specifikacie .specs-grid,
    #galeria .use-cases-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Cards - border-2, p-6 */
#biznis .opportunity-card,
#inovacie .innovation-card,
#pribehy .story-card,
#specifikacie .spec-card,
#galeria .use-case-card {
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#biznis .opportunity-card:hover,
#inovacie .innovation-card:hover,
#pribehy .story-card:hover,
#specifikacie .spec-card:hover,
#galeria .use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15);
}

/* ============================================
   GALLERY SECTION (#galeria) - ŠPECIFICKÉ ŠTÝLY
   ============================================ */

/* Gallery item - aspect-ratio 16/9, gradient background, rounded-xl */
#galeria .gallery-item {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(to bottom right, hsl(45, 100%, 90%) 0%, hsl(35, 100%, 92%) 100%);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#galeria .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px hsla(25, 20%, 15%, 0.15);
}

/* Gallery icon - text-primary/30 */
#galeria .gallery-icon {
    color: hsla(25, 95%, 53%, 0.3);
}

/* Use case icon - w-12, h-12, rounded-full, bg-primary/10, flex, items-center, justify-center, mx-auto, mb-4 */
#galeria .use-case-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: hsla(25, 95%, 53%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* ============================================
   CONTACT SECTION (#kontakt) - ŠPECIFICKÉ ŠTÝLY
   ============================================ */

/* Contact grid - gap-8, lg:grid-cols-2 */
#kontakt .contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    #kontakt .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact info card - border-2, p-8 */
#kontakt .contact-info-card {
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 2rem;
}

/* Contact form - border-2, p-8 */
#kontakt .contact-form {
    background: hsl(0, 0%, 100%);
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 1rem;
    padding: 2rem;
}

/* Form group - mb-6 */
#kontakt .form-group {
    margin-bottom: 1.5rem;
}

/* Form label - block, font-medium, mb-2 */
#kontakt .form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: hsl(25, 15%, 15%);
}

/* Form input, textarea - w-full, px-4, py-3, border-2, rounded-lg */
#kontakt .form-input,
#kontakt .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid hsl(45, 15%, 88%);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: hsl(0, 0%, 100%);
    color: hsl(25, 15%, 15%);
}

#kontakt .form-input:focus,
#kontakt .form-textarea:focus {
    outline: none;
    border-color: hsl(25, 95%, 53%);
    box-shadow: 0 0 0 3px hsla(25, 95%, 53%, 0.1);
}

/* Form textarea - min-h-[150px], resize-vertical */
#kontakt .form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Submit button - w-full, px-8, py-3, gradient background, text-white, font-semibold */
#kontakt .submit-button {
    width: 100%;
    padding: 0.75rem 2rem;
    background: linear-gradient(to right, hsl(25, 95%, 53%) 0%, hsl(35, 100%, 65%) 100%);
    color: hsl(0, 0%, 100%);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#kontakt .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact item - flex, items-center, gap-4, p-4, bg-primary/5, rounded-lg, mb-4 */
#kontakt .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsla(25, 95%, 53%, 0.05);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Contact icon - p-3, bg-primary/10, rounded-lg, text-primary */
#kontakt .contact-icon {
    padding: 0.75rem;
    background: hsla(25, 95%, 53%, 0.1);
    border-radius: 0.5rem;
    color: hsl(25, 95%, 53%);
}

/* ============================================
   CTA BOXES - SPOLOČNÉ ŠTÝLY
   ============================================ */

#biznis .cta-box,
#inovacie .cta-box,
#konkurencia .cta-box,
#pribehy .cta-box,
#galeria .cta-box {
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

/* CTA heading - text-2xl, font-bold, mb-4 */
.cta-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(25, 15%, 15%);
}

/* CTA text - max-w-2xl, mx-auto, mb-6 */
.cta-text {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    color: hsl(25, 8%, 45%);
}

/* CTA button - inline-flex, items-center, gap-2, px-8, py-3, gradient background */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    background: linear-gradient(to right, hsl(25, 95%, 53%) 0%, hsl(35, 100%, 65%) 100%);
    color: hsl(0, 0%, 100%);
    box-shadow: 0 4px 20px hsla(25, 20%, 15%, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    box-shadow: 0 8px 30px hsla(25, 20%, 15%, 0.12);
    transform: translateY(-2px);
}