/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* HERO sekcia na celú výšku okna */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    scroll-margin-top: 100px;
}

/* pohyblivá mriežka */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes moveGrid {
    0%   { transform: translate(0,0); }
    100% { transform: translate(50px,50px); }
}

/* KARUSEL = obrázky na pozadí */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-carousel .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    opacity: 0;
    transition: opacity 900ms ease-in-out;
}

.hero-carousel .slide.active {
    opacity: 1;
    animation: slowZoom 8s linear forwards;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.05); }
}

/* TEXT v hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Call to action button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease 0.4s backwards;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p  { font-size: 1.2rem; }
    .hero-carousel .slide { filter: brightness(0.5); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 100px;
}
/* malá verzia sekcie – pre kratší obsah typu kontakt */
.section-compact {
    min-height: auto;
    padding: 2rem 2rem 4rem 2rem;
    display: block;

    /* jemný vizuálny oddelovač od sekcie nad tým */
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}



/* produkty môžu mať klasickú výšku, ale nech nie sú zbytočne vysoké */
.section-products {
    /* menšia výška, aby nebola zbytočná diera pod produktmi */
    min-height: auto;
    padding: 4rem 2rem 2rem 2rem;
    display: block;

    /* nech má rovnaké pozadie ako okolie, aby nebolo vidno tvrdý rez */
    background: #0a0a0a;
}

.section.section-products {
    min-height: auto;
    padding: 4rem 2rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0a0a0a;
}

.section-products .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.section-products .section-title {
    margin-bottom: 2rem;
}

.section-products .grid {
    margin-bottom: 1rem;
}

.section:nth-child(odd) {
    background: #0a0a0a;
}

.section:nth-child(even) {
    background: #141414;
}

.container {
    max-width: 1200px;
    width: 100%;
}

/* Sekcie – globálne nadpisy stránok ako "O našej firme", "Kontaktné údaje", "Náš elektronický obchod"... */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #8fa2ff;
    text-shadow: 0 20px 40px rgba(0,0,0,0.8);
    margin: 0 0 2rem 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(102,126,234,0.6);
}

/* Cards */
.card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    transition: all 0.4s;
    color: white;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

/* Silnejšie pozadie pre dôležité info karty */
.card-strong {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    color: #fff;
}

.card-strong h3,
.card-strong p,
.card-strong .label {
    color: #fff;
}

.card-strong .label {
    color: #667eea;
    font-weight: 600;
}

/* Firma text */
.company-text {
    margin-top: 1.5rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.company-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.company-list {
    margin: 0 0 1.5rem 1.2rem;
    padding: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.5;
    list-style-type: disc;
}

.company-list li {
    margin-bottom: 0.4rem;
}

/* --- Firma / O našej firme – nový layout --- */

.company-header {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .company-header {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }
}

.company-meta {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

.meta-row {
    margin-bottom: 0.5rem;
}

.company-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    margin: 0;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.tag {
    background: rgba(102,126,234,0.12);
    border: 1px solid rgba(102,126,234,0.4);
    color: #8fa2ff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.7rem;
    border-radius: 0.5rem;
    line-height: 1.3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    white-space: nowrap;
}

.company-columns {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .company-columns {
        grid-template-columns: 1fr 1fr;
    }
}

.company-block h4 {
    color: #8fa2ff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.company-block p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

.company-bullets {
    margin: 0;
    padding-left: 1.2rem;
    list-style-type: disc;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.company-bullets li {
    margin-bottom: 0.4rem;
}

.company-outro {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 15px 30px rgba(0,0,0,0.8);
    background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 70%);
    border-left: 3px solid rgba(102,126,234,0.5);
    padding: 1rem 1rem 1rem 1.25rem;
    border-radius: 0.5rem;
}


/* nech tie modré labely hore vyzerajú konzistentne */
.card-strong .label {
    display: inline-block;
    min-width: 8rem;
    color: #8fa2ff;
    font-weight: 600;
}

/* Produkty grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* jedna bunka = fotka na pozadí */
.grid-item {
    position: relative;
    height: 260px;
    border-radius: 1rem;
    overflow: hidden;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8),
                0 0 120px rgba(102,126,234,0.2) inset;
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    isolation: isolate;
    transition: all 0.3s;
}

/* stmavovacia vrstva cez celý obrázok */
.grid-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 60%),
        linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    opacity: 1;
    z-index: 1;
    transition: opacity 0.3s;
}

/* text dole uprostred */
.grid-item::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    font-size: 1.3rem;
    font-weight: 700;
    color: #8fa2ff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.9);
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

/* efekt pri hoveri – jemné priblíženie */
.grid-item:hover {
    scale: 1.02;
    box-shadow: 0 40px 120px rgba(0,0,0,0.9),
                0 0 160px rgba(102,126,234,0.4) inset;
}

.grid-item:hover::before {
    opacity: 0.9;
}

/* Steps */
.step-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s;
    color: white;
}

.step-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Žiadosti sekcia */
.requests-section {
    padding: 4rem 1.5rem 6rem 1.5rem;
    color: #fff;
}

.requests-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

/* Horný rad – 2 boxy v strede */
.requests-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 3rem auto;
}

.requests-top .request-card {
    width: 360px;
    max-width: 100%;
    min-height: 220px;
}

/* Spodný rad – 4 boxy */
.requests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

/* Karta „Žiadosti“ */
.request-card {
    display: block;
    position: relative;
    background: radial-gradient(circle at 0% 0%, rgba(102,126,234,0.08) 0%, rgba(0,0,0,0.4) 60%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.8rem;
    padding: 2rem;
    text-decoration: none;
    text-align: left;
    color: #fff;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        0 0 120px rgba(102,126,234,0.15) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 240px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.request-card:hover {
    box-shadow:
        0 40px 120px rgba(0,0,0,0.9),
        0 0 160px rgba(102,126,234,0.35) inset;
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.18);
}

.request-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.request-title {
    color: #8fa2ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.request-desc {
    margin: 0;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* Kontaktné karty */

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-card {
    position: relative;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        0 0 120px rgba(102,126,234,0.15) inset;
    background-color: rgba(0,0,0,0.4);

    overflow: hidden;
    padding: 1.5rem 1.5rem;
    min-height: 180px;

    /* DÔLEŽITÉ: zarovnávame obsah hore, nie dole */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    color: #fff;
    isolation: isolate;
    transition: all 0.25s ease;
}

/* pozadie fotkou cez CSS premennú */
.contact-card-bg {
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* stmavovací overlay */
.contact-card-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 5%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 70%);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}

/* text nad overlayom */
.contact-card h3,
.contact-card p {
    position: relative;
    z-index: 1;
}

.contact-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #8fa2ff;
    text-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.contact-card p {
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 10px 25px rgba(0,0,0,0.9);
}

/* hover efekt kontakt karty */
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.18);
    box-shadow:
        0 60px 140px rgba(0,0,0,0.95),
        0 30px 60px rgba(0,0,0,0.8);
}

.contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    box-shadow:
        0 0 25px rgba(0,0,0,0.9),
        0 0 60px rgba(0,0,0,0.8),
        0 0 120px rgba(0,0,0,0.7);
}

.contact-card:hover::after {
    opacity: 1;
    backdrop-filter: blur(2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    color: white;
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

/* Typography */
h3 {
    color: #667eea;
    margin-top: 2rem;
    font-size: 1.5rem;
}

ul {
    margin: 1rem 0 1rem 2rem;
}

ol {
    margin: 1rem 0 1rem 2rem;
}

strong {
    color: #667eea;
    font-weight: 600;
}

.label {
    color: #667eea;
    font-weight: 600;
}

p {
    margin: 0.5rem 0;
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 1rem;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(102,126,234,0.15) 0%, rgba(0,0,0,0) 60%),
        radial-gradient(circle at 80% 0%, rgba(118,75,162,0.15) 0%, rgba(0,0,0,0) 60%),
        #000;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -40px 100px rgba(0,0,0,0.8);
}

footer .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    nav ul {
        gap: 1rem;
        padding: 0 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .card {
        padding: 2rem;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .document-grid {
        grid-template-columns: 1fr;
    }

    .requests-top {
        flex-direction: column;
        align-items: center;
    }

    .requests-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Warning overlay pri načítaní stránky --- */
.project-warning-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;
}

.project-warning-card {
    background: radial-gradient(circle at 20% 20%, rgba(102,126,234,0.12) 0%, rgba(0,0,0,0.8) 60%);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 60px 140px rgba(0,0,0,0.9),
                0 30px 60px rgba(0,0,0,0.6);
    border-radius: 1rem;
    max-width: 400px;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 2rem 2rem 2rem 2rem;
    position: relative;
}

.project-warning-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8fa2ff;
    text-shadow: 0 20px 40px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}

.project-warning-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0 0 1rem 0;
    text-align: left;
}

.project-warning-card button {
    width: 100%;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 0;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8),
                0 0 30px rgba(102,126,234,0.6);
    transition: all 0.2s ease;
}

.project-warning-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9),
                0 0 40px rgba(102,126,234,0.8);
}

/* --- O firme / About section --- */

/* obmedzená šírka + centrovanie sekcie */
.about-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}

/* horný rad = firma vľavo + intro vpravo */
.about-top {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 800px) {
    .about-top {
        grid-template-columns: 1fr 2fr;
    }
}

/* stredný rad = dva bloky vedľa seba */
.about-middle {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 800px) {
    .about-middle {
        grid-template-columns: 1fr 1fr;
    }
}

/* základný vzhľad každej karty */
.about-card {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.75rem;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        0 0 120px rgba(102,126,234,0.18) inset;
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* karta s údajmi firmy (ľavá v hornom riadku) */
.about-company {
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-meta {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-meta li {
    margin-bottom: 0.6rem;
    color: rgba(255,255,255,0.9);
}

.about-meta .meta-label {
    color: #8fa2ff;
    font-weight: 600;
    display: inline-block;
    margin-right: 0.4rem;
}

/* karta s úvodom a tagmi (pravá hore) */
.about-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-lead {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    text-shadow: 0 15px 30px rgba(0,0,0,0.8);
    margin: 0;
    text-align: left;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.about-tag {
    background: rgba(102,126,234,0.12);
    border: 1px solid rgba(102,126,234,0.4);
    color: #8fa2ff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.7rem;
    border-radius: 0.5rem;
    line-height: 1.3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    white-space: nowrap;
}

/* podnadpisy v blokoch */
.about-card h3 {
    color: #8fa2ff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

/* text v blokoch */
.about-card p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

/* zoznam výhod vpravo */
.about-list {
    margin: 0;
    padding-left: 1.2rem;
    list-style-type: disc;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-list li {
    margin-bottom: 0.4rem;
}

/* spodný claim */
.about-quote {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 3px solid rgba(102,126,234,0.6);
    border-radius: 0.5rem;
    padding: 1rem 1rem 1rem 1.25rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 0 15px 30px rgba(0,0,0,0.8);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        0 0 120px rgba(102,126,234,0.18) inset;
}
