/* 
 * AstroVěštec - Modern Index Page Styles
 * Created from scratch with modern design
 */

:root {
    --primary-orange: #FB8C00;
    --primary-dark: #FB8C00;
    --primary-light: #FB8C00;
    --gradient-start: #FB8C00;
    --gradient-end: #A855F7;
    --bg-dark: #0F172A;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
}

/* Global Styles */
body.home-page {
    background: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* =======================
   HERO SECTION
   ======================= */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 4rem; /* Top padding to account for fixed header */
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    opacity: 0.05;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Left - Text Content */
.hero-text-content {
    padding: 2rem 0;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 2rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-orange);
}

/* Badge glow removed */

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Hero Features Chips */
.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-chip:hover {
    transform: translateY(-2px);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Buttons jsou definovány globálně v style.css */

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
}

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

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-label .stars {
    display: block;
    font-size: 1rem;
}

/* Hero Right - Vejíř karet - ČISTÝ CSS OD NULY */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    width: 200px;
    height: 280px;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 2rem;
    cursor: pointer;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), border 0.3s ease;
}

.floating-card:hover {
    border-color: rgba(255,255,255,0.8);
}

/* Vejíř - každá karta má vlastní pozici a rotaci */
.card-tarot {
    left: calc(50% - 220px);
    top: calc(50% - 140px);
    transform: rotate(-12deg);
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    z-index: 1;
}

.card-tarot:hover {
    transform: translateY(-150px) rotate(0deg) scale(1.2) !important;
    z-index: 100 !important;
}

.card-zodiac {
    left: calc(50% - 140px);
    top: calc(50% - 140px);
    transform: rotate(-4deg);
    background: linear-gradient(135deg, #FFA726 0%, #FB8C00 100%);
    z-index: 2;
}

.card-zodiac:hover {
    transform: translateY(-150px) rotate(0deg) scale(1.2) !important;
    z-index: 100 !important;
}

.card-compatibility {
    left: calc(50% - 60px);
    top: calc(50% - 140px);
    transform: rotate(4deg);
    background: linear-gradient(135deg, #FF6B9D 0%, #FF1493 100%);
    z-index: 3;
}

.card-compatibility:hover {
    transform: translateY(-150px) rotate(0deg) scale(1.2) !important;
    z-index: 100 !important;
}

.card-numbers {
    left: calc(50% + 20px);
    top: calc(50% - 140px);
    transform: rotate(12deg);
    background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%);
    z-index: 4;
}

.card-numbers:hover {
    transform: translateY(-150px) rotate(0deg) scale(1.2) !important;
    z-index: 100 !important;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Shimmer and glow removed for cleaner look */

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

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

.scroll-icon {
    width: 24px;
    height: 36px;
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* =======================
   SECTIONS
   ======================= */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* How It Works */
.section-how-it-works {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.step-number-circle {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.step-num {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.step-circle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-orange));
    border-radius: 50%;
    opacity: 0.1;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services - Horizontální design */
.services-list-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item-horizontal {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1.25rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    cursor: pointer;
    min-height: 160px;
}

.service-item-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange), var(--gradient-end));
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-item-horizontal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-item-horizontal:hover::before {
    transform: scaleY(1);
}

.service-item-horizontal:hover::after {
    opacity: 1;
}

.service-item-horizontal:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
}

.service-item-horizontal.popular {
    border-color: var(--primary-orange);
    border-width: 3px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.03), white);
}

.service-item-horizontal.popular:hover {
    /* No extra shadow */
}

.service-icon-large {
    font-size: 4rem;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 1.25rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--gradient-end));
    border-radius: 1.25rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-item-horizontal:hover .service-icon-large {
    transform: scale(1.1) rotate(8deg);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(168, 85, 247, 0.2));
}

.service-item-horizontal:hover .service-icon-large::before {
    opacity: 0.3;
}

.service-content-horizontal {
    flex: 1;
}

.service-header-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-header-horizontal h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
    color: white;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.service-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-features-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* Service CTA button je definován globálně v style.css */
.service-cta-btn {
    flex-shrink: 0;
}

.service-item-horizontal:hover .service-cta-btn svg {
    transform: translateX(4px);
}

/* Barvy tlačítek služeb jsou definovány v style.css */

/* Features */
.section-features {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(168, 85, 247, 0.05));
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-new {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card-new:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-emoji {
    font-size: 3rem;
}

.feature-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card-new p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials */
.section-testimonials {
    background: white;
}

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

.testimonial-card-new {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card-new p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--gradient-end));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Bottom */
.section-cta-bottom {
    background: linear-gradient(135deg, var(--primary-orange), var(--gradient-end));
    padding: 4rem 0;
}

.cta-card {
    text-align: center;
    color: white;
}

.cta-icon-big {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA buttons jsou definovány globálně v style.css */

/* SVG arrow animation */
.btn-cta-primary svg,
.btn-hero-primary svg,
.service-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg,
.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

/* =======================
   RESPONSIVE - TABLET
   ======================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-card {
        width: 140px;
        height: 200px;
        padding: 1.25rem;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item-horizontal {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =======================
   RESPONSIVE - MOBILE
   ======================= */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section */
    .hero-modern {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features-list {
        gap: 0.75rem;
    }
    
    .feature-chip {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-trust-badges {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
    
    /* Hide floating cards on mobile */
    .floating-cards-container {
        display: none;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* How It Works */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    /* Services */
    .service-item-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .service-item-horizontal:hover {
        transform: translateY(-4px);
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin: 0 auto;
    }
    
    .service-header-horizontal {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .service-header-horizontal h3 {
        font-size: 1.35rem;
    }
    
    .service-desc {
        font-size: 0.95rem;
    }
    
    .service-features-horizontal {
        justify-content: center;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }
    
    .service-cta-btn {
        margin: 0 auto;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* Features */
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-new {
        padding: 2rem 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FAQ */
    .faq-accordion {
        padding: 0 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* CTA Bottom */
    .section-cta-bottom {
        padding: 3rem 0;
    }
    
    .cta-icon-big {
        font-size: 3rem;
    }
    
    .cta-card h2 {
        font-size: 1.75rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .cta-buttons-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom-modern {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* =======================
   RESPONSIVE - SMALL MOBILE
   ======================= */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-features-list {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-chip {
        justify-content: center;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-header-horizontal h3 {
        font-size: 1.25rem;
    }
}

/* =======================
   FOOTER MODERN DESIGN
   ======================= */
.footer-modern {
    position: relative;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    color: white;
    margin-top: 0;
}

/* Vlny odstraněny */

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2rem;
}

.footer-logo h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--gradient-end));
    transform: translateY(-4px);
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responzivní design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .footer-content-modern {
        padding: 4rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}
