/* --- ZÁKLADNÍ PROMĚNNÉ --- */
:root {
    --bg-color: #0b0f19;
    --bg-card: #111827;
    --bg-card-hover: #1f2937;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #ec4899;
    --accent-hover: #db2777;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

.is-hidden {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- NAVIGACE --- */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 70px;
    width: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: sticky;
    top: 0;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* --- CUSTOM JAZYKOVÝ DROPDOWN --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 16px;
    padding-left: 24px;
    border-left: 1px solid var(--border-color);
}

.lang-toggle {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.lang-toggle svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    transition: transform 0.3s ease;
}

.lang-dropdown:hover .lang-toggle svg {
    transform: rotate(180deg);
    stroke: var(--accent);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    min-width: 130px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    padding: 10px 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-menu a:hover {
    background: var(--bg-card-hover);
    color: var(--text-main);
}

.lang-menu a.active {
    color: var(--accent);
    background: rgba(236, 72, 153, 0.08);
}

/* --- HERO SEKCE --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: clamp(500px, 70vh, 750px);
    gap: 60px;
    padding: 60px 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    text-transform: uppercase;
}

h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

p.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(236, 72, 153, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    flex: 1;
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.55), 10px 16px 40px rgba(30, 30, 40, 0.45);
}

.slide-visual-transparent {
    background: transparent;
    box-shadow: none;
}

.slide-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.text-accent {
    color: var(--accent);
}

.footer-logo {
    margin-bottom: 10px;
    display: inline-flex;
}

.cookie-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.mockup-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 80px rgba(236, 72, 153, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

/* --- SPOLEČNÉ STYLY PRO SEKCE --- */
section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

/* --- BENTO GRID (SLUŽBY) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.bento-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    background-color: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Poměry mřížky */
.card-half {
    grid-column: span 3;
}

/* 1:1 */
.card-third {
    grid-column: span 2;
}

/* 1:2 (menší) */
.card-twothirds {
    grid-column: span 4;
}

/* 2:1 (větší) */
.card-full {
    grid-column: span 6;
}

/* Plná šířka */

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- REFERENCE (KARUSEL) --- */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 32px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-card);
    -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
    height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.carousel-slide {
    flex: 0 0 85%;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    transition: border-color 0.3s ease;
}

.carousel-slide:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.slide-visual {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-content {
    flex: 1;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.slide-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.tech-pill {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-main);
}

/* --- PATIČKA --- */
footer {
    background-color: #070a12;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-info strong {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* --- RESPONZIVITA --- */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .section-header {
        margin: 0 auto 40px;
        text-align: center;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-half, .card-third, .card-twothirds {
        grid-column: span 1;
    }

    .card-full {
        grid-column: span 2;
    }

    .carousel-slide {
        flex: 0 0 92%;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .slide-visual {
        width: 100%;
        aspect-ratio: auto;
        min-height: 250px;
    }
}

/* --- HAMBURGER --- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animace → křížek */
.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(11, 15, 25, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-color);
        padding: 16px 24px 24px;
        z-index: 105;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .lang-dropdown {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 14px;
    }

    .lang-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 8px 0 0;
        flex-direction: row;
        gap: 8px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .card-half, .card-third, .card-twothirds, .card-full {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* --- KONTAKTNÍ SEKCE --- */
.contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-main);
    line-height: 1.2;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    background: rgba(236, 72, 153, 0.1);
    padding: 12px;
    border-radius: 12px;
    box-sizing: content-box;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item strong {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.contact-item a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 14px 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 8px;
}

.form-error {
    font-size: 0.8rem;
    color: #f87171;
    margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #f87171;
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.12);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-gdpr {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

.form-message {
    font-size: 0.9rem;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 8px;
    text-align: center;
}

.form-message--success {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.form-message--error {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

@media (max-width: 992px) {
    .contact-grid {
        gap: 40px;
        padding: 0 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}

/* --- COOKIE CONSENT --- */
.cookie-consent-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(236, 72, 153, 0.05);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpCookie 0.6s ease forwards 0.5s;
}

@keyframes slideUpCookie {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-wrapper.cookie-hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-header h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-main);
}

.cookie-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-actions .btn-sm {
    padding: 10px 16px;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
    justify-content: center;
}

.cookie-footer {
    text-align: center;
    margin-top: -4px;
}

.cookie-settings-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
    font-family: inherit;
}

.cookie-settings-btn:hover {
    color: var(--text-main);
}

@media (max-width: 480px) {
    .cookie-consent-wrapper {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
    }

    .cookie-actions {
        flex-direction: column;
    }
}

/* --- COOKIE PREFERENCE MODAL --- */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: fadeInModal 0.3s ease forwards;
}

@keyframes fadeInModal {
    to {
        opacity: 1;
    }
}

.cookie-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 80px rgba(236, 72, 153, 0.1);
    overflow: hidden;
}

.cookie-modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-main);
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    transition: color 0.2s;
}

.close-modal-btn:hover {
    color: var(--accent);
}

.cookie-modal-body {
    padding: 24px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.cookie-modal-body::-webkit-scrollbar {
    width: 6px;
}

.cookie-modal-body::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}

.cookie-modal-intro {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cookie-category-header h4 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    color: var(--text-main);
}

.cookie-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.cookie-badge.required {
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent);
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* iOS styl Toggle */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-muted);
    transition: .4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--accent);
    border-color: var(--accent);
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(20px);
    background-color: white;
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .cookie-modal-footer {
        flex-direction: column-reverse;
    }

    .cookie-modal-footer button {
        width: 100%;
    }
}

.form-row-sc {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
