
/* ==================================================
   RESET & GLOBAL
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
    background-color: #050608;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    color: var(--text-white);
    background:
        radial-gradient(circle at top,
        rgba(0, 212, 255, 0.08),
        transparent 30%),
        var(--dark-bg);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}


/* ==================================================
   VARIABLES
================================================== */
:root {

    /* COLORS */
    --primary-blue: #00d4ff;
    --primary-blue-glow: rgba(0, 212, 255, 0.35);
    --dark-bg: #050608;
    --text-white: #ffffff;
    --text-light: rgba(255,255,255,0.82);
    --text-dark: #1c1c1c;
    --card-bg: rgba(255,255,255,0.05);
    --silver-gradient:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #a1a1a1 100%
        );

    /* EFFECTS */
    --radius: 18px;

    --transition:
        280ms cubic-bezier(.4,0,.2,1);

    --neon-shadow:
        0 0 25px rgba(0,212,255,.18);

    --shadow-dark:
        0 12px 40px rgba(0,0,0,.45);

    /* SPACING */
    --section-padding:
        clamp(70px, 10vh, 120px);

    --container-width:
        1280px;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.7rem, 5.5vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

h4 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
}

strong {
    font-weight: 700;
}

.neon-text {
    color: var(--primary-blue);
    text-shadow:
        0 0 10px rgba(0,212,255,.65),
        0 0 24px rgba(0,212,255,.35);
}


/* ==================================================
   LAYOUT
================================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding:
        0 clamp(20px, 4vw, 40px);
}

.dark-section,
.light-section,
.light-section-shared {
    position: relative;

    padding:
        var(--section-padding) 0;
}

/* ---------- DARK ---------- */

.dark-section {
    background:
        radial-gradient(
            circle at top left,
            #001a33 0%,
            #050608 70%
        );
    color: #fff;
}

.dark-section h2 {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ---------- LIGHT ---------- */

.light-section-shared {
    background-image: url('../img/pozadí-lidht.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.light-section-shared::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.62);
    z-index: -1;
}

.light-section-shared h2 {
    color: #050608;
}

.light-section-shared p {
    color: #333;
}


/* ==================================================
   COMPONENTS
================================================== */

/* ---------- CARD ---------- */

.unified-card {
    background: var(--card-bg);
    border:
        1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 35px;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.unified-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-blue);
    box-shadow: var(--neon-shadow);
}


/* ==================================================
   PREMIUM BUTTONS
================================================== */

.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease,
        color .35s ease;
    cursor: pointer;
    isolation: isolate;
}


/* ---------- SHINE EFFECT ---------- */
.btn-primary::before,
.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );
    transform: skewX(-25deg);
    transition: left .7s ease;
    z-index: 1;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 140%;
}

/* ---------- TEXT ---------- */
.btn-primary span,
.btn-secondary span {
    position: relative;
    z-index: 2;
}

/* ---------- PRIMARY BUTTON ---------- */
.btn-primary {
    background:
        linear-gradient(
            135deg,
            #00d4ff 0%,
            #00a6ff 100%
        );
    color: #031018;
    border:
        1px solid rgba(255,255,255,.15);
    box-shadow:
        0 8px 25px rgba(0,212,255,.22),
        inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-primary:hover {
    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow:
        0 14px 40px rgba(0,212,255,.4),
        0 0 25px rgba(0,212,255,.25);

    background:
        linear-gradient(
            135deg,
            #1ee0ff 0%,
            #00b7ff 100%
        );
}

/* ---------- SECONDARY BUTTON ---------- */
.btn-secondary {
    background:
        rgba(255,255,255,.04);
    color: #fff;
    border:
        1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08);
}

.btn-secondary:hover {
    transform:
        translateY(-4px)
        scale(1.02);
    border-color: rgba(0,212,255,.5);
    color: var(--primary-blue);
    background: rgba(255,255,255,.08);
    box-shadow:
        0 12px 35px rgba(0,212,255,.15),
        inset 0 1px 0 rgba(255,255,255,.12);
}


/* ---------- ACTIVE ---------- */
.btn-primary:active,
.btn-secondary:active {
    transform:
        translateY(-1px)
        scale(.99);
}


/* --- ZÁKLADNÍ NASTAVENÍ --- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 clamp(20px, 5vw, 80px);
    background: rgba(5, 6, 8, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(5, 6, 8, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- LOGO --- */
.logo img {
    height: 40px;
    transition: transform var(--transition);
}

/* --- MENU (DESKTOP) --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    text-transform: uppercase;
    transition: color var(--transition);
}

.nav-links a:hover, .nav-links a.is-active {
    color: var(--primary-blue);
}

/* --- HAMBURGER --- */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    margin: 5px auto;
    transition: var(--transition);
}

/* --- MOBILNÍ VERZE --- */
@media (max-width: 992px) {
    .nav-toggle { display: block; z-index: 10001; }

    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; max-width: 320px;
        height: 100vh;
        background: #050608;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s ease;
        z-index: 10000;
    }

    .nav-links.active { right: 0; }
    .nav-cta-mobile { display: block; width: 100%; margin-top: 20px; }
}

body.menu-open { overflow: hidden; }


/* ==================================================
   HERO SECTION
================================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding:
        max(110px, env(safe-area-inset-top))
        clamp(24px, 5vw, 80px) 60px;
    background:
        url('../img/banner_hero_web.png');
    background-size: cover;
    background-position: 72% center;
    background-repeat: no-repeat;
    background-color: #050608;
    isolation: isolate;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

/* ==================================================
   HERO ZOOM
================================================== */

@keyframes heroZoom {

    0% {
        background-size: 100%;
        background-position: center right;
    }

    100% {
        background-size: 108%;
        background-position: center center;
    }
}

/* ==================================================
   HERO OVERLAY
================================================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(5,6,8,.84) 0%,
            rgba(5,6,8,.52) 45%,
            rgba(5,6,8,.20) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.45) 0%,
            transparent 45%
        );
}

/* ==================================================
   GLOW ORB
================================================== */

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.16) 0%,
            rgba(0,212,255,.05) 40%,
            transparent 72%
        );
    filter: blur(30px);
    z-index: 0;
    animation: floatingGlow 8s ease-in-out infinite alternate;
}

@keyframes floatingGlow {

    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(40px);
    }
}

/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
    padding-top: 24px;
}

/* ==================================================
   HERO BADGE
================================================== */

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(0,212,255,.18);
    border-radius: 999px;
    background:  rgba(255,255,255,.04);
    backdrop-filter: blur(12px);
    color: var(--primary-blue);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

/* ==================================================
   HERO HEADLINE
================================================== */

.hero-content h1 {
    margin-bottom: 28px;
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 12px 40px rgba(0,0,0,.45);
}

/* ==================================================
   SUBLINE
================================================== */

.hero-subline {
    display: block;
    margin-top: 15px;
    color: rgba(255,255,255,.78);
    font-size: clamp(1.05rem, 1.8vw, 1.38rem);
    font-weight: 500;
    line-height: 1.4;
    text-transform: none;
}

/* ==================================================
   NEON TEXT
================================================== */

.neon-text {
    display: block;
    margin-top: 20px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-blue);
    text-shadow:
        0 0 8px rgba(0,212,255,.65),
        0 0 22px rgba(0,212,255,.28),
        0 0 40px rgba(0,212,255,.08);
}

/* ==================================================
   HERO TEXT
================================================== */

.hero-content p {
    max-width: 620px;
    margin-bottom: 22px;
    padding-left: 20px;
    border-left:1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.84);
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.9;
}

/* ==================================================
   HERO BUTTONS
================================================== */

.hero-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;
}

/* ==================================================
   BENEFITS SECTION
================================================== */

.benefits-bar {
    position: relative;
    padding: clamp(80px, 10vh, 120px) 0;
}

/* ==================================================
   GRID
================================================== */

.benefits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 28px;
}

/* ==================================================
   CARD
================================================== */

.benefit-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 38px 30px;
    border-radius: 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    text-align: center;
    isolation: isolate;
    will-change: transform;
    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
    cursor: default;
}

/* ==================================================
   GLOW EFFECT
================================================== */

.benefit-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top center,
            rgba(0,212,255,.12) 0%,
            rgba(0,212,255,.04) 35%,
            transparent 72%
        );
    opacity: 0;
    transition:  opacity .45s ease;
    z-index: 0;
}

/* ==================================================
   HOVER
================================================== */

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0,212,255,.35);
    box-shadow: 0 20px 50px rgba(0,212,255,.14);
}

.benefit-item:hover::before {
    opacity: 1;
}

/* ==================================================
   ICON
================================================== */

.benefit-icon {
    position: relative;
    z-index: 2;
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #00d4ff 0%,
            #00aaff 100%
        );
    color: #031018;
    font-size: 1.6rem;
    box-shadow:
        0 12px 30px rgba(0,212,255,.28),
        inset 0 1px 0 rgba(255,255,255,.4);
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   ICON HOVER
================================================== */

.benefit-item:hover .benefit-icon {
    transform:
        scale(1.08)
        rotate(-3deg);
    box-shadow:
        0 18px 40px rgba(0,212,255,.42);
}

/* ==================================================
   TITLE
================================================== */

.benefit-item h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    color: #050608;
    font-size: clamp(1.1rem, 1.4vw, 1.22rem);
    line-height: 1.2;
    letter-spacing: .3px;
}

/* ==================================================
   TEXT
================================================== */

.benefit-item p {
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: rgba(20,20,20,.78);
    font-size: .98rem;
    line-height: 1.8;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {

    .benefits-container {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .benefits-bar {
        padding:
            80px 0;
    }

    .benefits-container {
        gap: 22px;
    }

    .benefit-item {
        padding:
            34px 24px;
    }

    .benefit-icon {
        width: 68px;
        height: 68px;
        font-size: 1.4rem;
    }
}

@media (max-width: 640px) {

    .light-section-shared {
        background-attachment: scroll;
    }

    .benefits-container {
        grid-template-columns:
            1fr;
    }

    .benefit-item {
        border-radius: 24px;
    }
}

/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .benefit-item,
    .benefit-icon {
        transition: none;
    }
}


/* ==================================================
   SERVICES SECTION
================================================== */

.services {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 12vh, 140px) 0;
    background:
        radial-gradient(
            circle at top left,
            #001a33 0%,
            #050608 70%
        );
    color: #fff;
}

/* GLOW BACKGROUND */

.services::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.10) 0%,
            transparent 70%
        );
    filter: blur(30px);
    z-index: 0;
}

/* ==================================================
   HEADER
================================================== */

.services .section-header {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin:
        0 auto
        clamp(50px, 8vh, 80px);
    text-align: center;
}

.services .section-header h2 {
    margin-bottom: 22px;
}

.services .section-header p {
    color: rgba(255,255,255,.72);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.9;
}

/* ==================================================
   GRID
================================================== */

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
}

/* ==================================================
   CARD
================================================== */

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05) 0%,
            rgba(255,255,255,.03) 100%
        );
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    text-align: left;
    transition:
    transform .7s cubic-bezier(.19,1,.22,1),
    border-color .7s cubic-bezier(.19,1,.22,1),
    box-shadow .7s cubic-bezier(.19,1,.22,1);
    box-shadow:
    0 18px 40px rgba(0,0,0,.16);
    isolation: isolate;
    will-change:transform;
transform:translateZ(0);
}

/* GLOW EFFECT */

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top,
            rgba(0,212,255,.10),
            transparent 65%
        );
    opacity: 0;
    transition:
        opacity .45s ease;
    z-index: 0;
}

/* HOVER */

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,212,255,.35);
    box-shadow: 0 28px 60px rgba(0,0,0,.28);
}

.service-card:hover::before {
    opacity: 1;
}

/* ==================================================
   IMAGE
================================================== */

.service-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

/* IMAGE OVERLAY */
.service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(0,0,0,.45) 100%
        );
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .8s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}

/* IMAGE HOVER */
.service-card:hover .service-img img {
    transform: scale(1.035);
    filter: brightness(1.03);
}

/* ==================================================
   CONTENT
================================================== */

.service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 34px 30px;
}

/* ==================================================
   TITLE
================================================== */

.service-content h3 {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(1.5rem, 1.8vw, 1.8rem);
    line-height: 1.2;
    letter-spacing: .4px;
}

/* ==================================================
   TEXT
================================================== */

.service-content p {
    color: rgba(255,255,255,.68);
    font-size: .98rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 100%;
}

/* ==================================================
   LINK
================================================== */

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        color .35s ease,
        gap .35s ease,
        text-shadow .35s ease;
}

/* ARROW */
.service-link::after {
    content: "→";
    font-size: 1.1rem;
    transition:
        transform .35s ease;
}

/* LINK HOVER */

.service-link:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(0,212,255,.45);
    gap: 14px;
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1200px) {

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .services {
        padding: 90px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        border-radius: 24px;
    }

    .service-content {
        padding: 28px 24px;
    }

    .service-content p {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {

    .services .section-header p {
        line-height: 1.8;
    }

    .service-content h3 {
        font-size: 1.08rem;
    }
}

/* ==================================================
   BRANDS DIVIDER
================================================== */

.brands-divider {
    position: relative;
    overflow: hidden;
    padding: 34px 0;
    background:
        linear-gradient(
            180deg,
            #06080b 0%,
            #050608 100%
        );
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    isolation: isolate;
}

/* ==================================================
   EDGE FADE
================================================== */

.brands-divider::before,
.brands-divider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.brands-divider::before {
    left: 0;
    background:
        linear-gradient(
            to right,
            #050608,
            transparent
        );
}

.brands-divider::after {
    right: 0;
    background:
        linear-gradient(
            to left,
            #050608,
            transparent
        );
}

/* ==================================================
   TRACK
================================================== */

.brands-track {
    display: flex;
    align-items: center;
    gap: clamp(54px, 6vw, 90px);
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation: scrollBrands 34s linear infinite;
}

/* ==================================================
   ITEM
================================================== */

.brand-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    transition:
        color .35s ease,
        transform .35s ease;
}

/* ==================================================
   MAIN BRAND NAME
================================================== */

.brand-item span {
    position: relative;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0,212,255,.18);
}

/* ==================================================
   SMALL GLOW DOT
================================================== */

.brand-item span::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,212,255,.5);
    box-shadow: 0 0 10px rgba(0,212,255,.45);
}

/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {
    .brand-item:hover {
        color: rgba(255,255,255,.9);
        transform: translateY(-2px);
    }
}

/* ==================================================
   ANIMATION
================================================== */

@keyframes scrollBrands {

    0% {
        transform:
            translateX(0)
            translateZ(0);
    }

    100% {
        transform:
            translateX(-50%)
            translateZ(0);
    }
}

/* ==================================================
   PAUSE ON HOVER
================================================== */

.brands-divider:hover .brands-track {
    animation-play-state: paused;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {
    .brands-divider {
        padding: 24px 0;
    }

    .brands-track {
        gap: 54px;
    }

    .brand-item {
        font-size: .68rem;

        letter-spacing: 1.5px;
    }

    .brand-item span {
        font-size: .88rem;
    }

    .brands-divider::before,
    .brands-divider::after {
        width: 80px;
    }
}

/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .brands-track {
        animation: none;
    }
}

/* ==================================================
   BEFORE / AFTER SECTION
================================================== */

.comparison-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 12vh, 140px) 0;
}



/* ==================================================
   HEADER
================================================== */

.comparison-header {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.comparison-header h2 {
    color: #050608;
    margin-bottom: 20px;
}

.comparison-header .neon-text {
    display: inline-block;
    margin-left: 10px;
    font-size: inherit;
    line-height: inherit;
}

.comparison-header p {

    color: rgba(20,20,20,.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ==================================================
   SLIDER CONTAINER
================================================== */

.comparison-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 30px 70px rgba(0,0,0,.14);
    isolation: isolate;
}

/* ==================================================
   IMAGES
================================================== */

.after-image,
.before-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* AFTER */

.after-image {
    background-image:
        url('../img/img_na_web/bez_ramecku/pred-a-po-polep/1/po.jpg');
}

/* BEFORE */

.before-image {
    width: 50%;
    z-index: 2;
    border-right: 2px solid rgba(0,212,255,.9);
    background-image:
        url('../img/img_na_web/bez_ramecku/pred-a-po-polep/1/pred.jpg');
}

.after-image,
.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==================================================
   IMAGE OVERLAY
================================================== */
.after-image::after,
.before-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0,0,0,.28) 100%
        );
}

/* ==================================================
   RANGE INPUT
================================================== */

.comparison-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: ew-resize;
    z-index: 10;
}

/* HIDE THUMB */

.comparison-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0;
    height: 0;
}

.comparison-slider::-moz-range-thumb {
    width: 0;
    height: 0;
    border: none;
}

/* ==================================================
   CENTER LINE
================================================== */

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.9),
            var(--primary-blue)
        );
    box-shadow: 0 0 18px rgba(0,212,255,.4);
    z-index: 5;
    pointer-events: none;
}

/* ==================================================
   BUTTON
================================================== */

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #00d4ff 0%,
            #00aaff 100%
        );
    border: 2px solid rgba(255,255,255,.4);
    z-index: 6;
    pointer-events: none;
    box-shadow:
        0 18px 45px rgba(0,212,255,.35),
        inset 0 1px 0 rgba(255,255,255,.35);
}

/* ICON */

.slider-button::before {
    content: "↔";
    color: #031018;
    font-size: 28px;
    font-weight: 900;
}

/* ==================================================
   LABELS
================================================== */

.label {
    position: absolute;
    top: 24px;
    z-index: 8;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.label.before {
    left: 24px;
}

.label.after {
    right: 24px;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

    .comparison-container {
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }

    .comparison-header {
        margin-bottom: 40px;
    }

    .slider-button {
        width: 58px;
        height: 58px;
    }

    .slider-button::before {
        font-size: 22px;
    }

    .label {
        top: 16px;
        padding: 8px 14px;
        font-size: .64rem;
    }

    .label.before {
        left: 16px;
    }

    .label.after {
        right: 16px;
    }
}

/* ==================================================
   REVIEWS SECTION
================================================== */

.reviews {

    position: relative;
    overflow: hidden;
    padding: clamp(90px, 12vh, 140px) 0;
    background:
        radial-gradient(
            circle at bottom right,
            #001a33 0%,
            #050608 70%
        );
}

/* ==================================================
   BACKGROUND GLOW
================================================== */

.reviews::before {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.10) 0%,
            transparent 72%
        );
    filter: blur(30px);
    z-index: 0;
}

/* ==================================================
   UTILITIES
================================================== */

.text-center {
    text-align: center;
}

/* ==================================================
   SECTION TITLE
================================================== */

.reviews .section-title{
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 70px;
}

.reviews .section-title h2{
    margin-bottom: 18px;
    background: linear-gradient(
        180deg,
        #f5f5f5 0%,
        #d0d0d0 50%,
        #8e8e8e 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.reviews .section-title p{
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

/* ==================================================
   HIGHLIGHT
================================================== */

.reviews .highlight{
    color: var(--primary-blue);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* ==================================================
   GRID
================================================== */

.reviews-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================================================
   CARD
================================================== */

.review-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 38px 34px;
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05) 0%,
            rgba(255,255,255,.03) 100%
        );
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.08);
    isolation: isolate;
    will-change: transform;
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   GLOW EFFECT
================================================== */

.review-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top,
            rgba(0,212,255,.06),
            transparent 65%
        );
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 0;
}

/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

    .review-box:hover {
        transform: translateY(-10px);
        border-color: rgba(0,212,255,.28);
        box-shadow: 0 22px 55px rgba(0,212,255,.12);
    }

    .review-box:hover::before {
        opacity: 1;
    }
}

/* ==================================================
   STARS
================================================== */

.stars {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.stars span {

    color: #ffd54a;
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 12px rgba(255,213,74,.28);
}

/* ==================================================
   REVIEW TEXT
================================================== */

.review-box p {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    max-width: 100%;
    margin-bottom: 32px;
    color: rgba(255,255,255,.76);
    font-size: 1rem;
    line-height: 1.9;
    font-style: italic;
}

/* ==================================================
   CLIENT INFO
================================================== */

.client-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* ==================================================
   AVATAR
================================================== */

.client-avatar {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #00d4ff 0%,
            #0077ff 100%
        );
    color: #031018;
    font-size: .9rem;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow:
        0 12px 28px rgba(0,212,255,.22),
        inset 0 1px 0 rgba(255,255,255,.3);
}

/* ==================================================
   CLIENT DETAILS
================================================== */

.client-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.client-name {
    background: linear-gradient(
        180deg,
        #f5f5f5 0%,
        #d6d6d6 55%,
        #9d9d9d 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1rem;
    font-weight: 600;
}

.client-meta {
    color: rgba(255,255,255,.48);
    font-size: .78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .review-box {
        padding: 32px 26px;
        border-radius: 24px;
    }

    .review-box p {
        margin-bottom: 28px;
        line-height: 1.85;
    }

    .client-avatar {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 576px) {

    .reviews {
        padding: 90px 0;
    }

    .review-box {
        padding: 28px 22px;
    }

    .stars span {
        font-size: .92rem;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {

    .review-box {
        transition: none;
    }
}

/* ==================================================
   STATS SECTION
================================================== */

.stats-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 12vh, 130px) 0;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.03);
}

/* SUBTLE GLOW */
.stats-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.06) 0%,
            transparent 70%
        );
    filter: blur(40px);
    z-index: 0;
}

/* GRID */
.stats-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ITEM */
.stat-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
    padding: 36px 22px;
    border-radius: 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 14px 35px rgba(0,0,0,.05);
    isolation: isolate;
    will-change: transform;
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

/* GLOW */
.stat-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top center,
            rgba(0,212,255,.10),
            transparent 65%
        );
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 0;
}

/* HOVER */
@media (hover: hover) {

    .stat-item:hover {
        transform: translateY(-8px);
        border-color: rgba(0,212,255,.35);
        box-shadow: 0 18px 45px rgba(0,212,255,.12);
    }

    .stat-item:hover::before {
        opacity: 1;
    }
}

/* NUMBER */
.stat-number {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    background: var(--primary-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 18px rgba(255,255,255,.10);
    transition:
        transform .45s ease,
        text-shadow .45s ease;
}

/* PLUS SIGN */
.counter::after {
    content: "+";
}

/* STATIC TEXT */
.static-number {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    letter-spacing: -.5px;
}

/* NUMBER HOVER */
.stat-item:hover .stat-number {
    transform:
        translateY(-4px)
        scale(1.03);
    text-shadow:
        0 0 22px rgba(255,255,255,.18);
}

/* TEXT */
.stat-item p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(20,20,20,.78);
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .8px;
    text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {

    .stats-section {
        padding: 90px 0;
    }

    .stat-item {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .stat-number {
        margin-bottom: 10px;
        font-size: clamp(1.9rem, 7vw, 2.6rem);
    }

    .stat-item p {
        font-size: .74rem;
    }
}

@media (max-width: 576px) {

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 28px 18px;
    }

    .stat-number {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }

    .static-number {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
}

/* --------- ACCESSIBILITY ----- */

@media (prefers-reduced-motion: reduce) {

    .stat-item,
    .stat-number {
        transition: none;
    }
}

/* ------- WHY US / ABOUT SECTION ------- */

.why-us {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vh, 150px) 0;
    background:
        linear-gradient(
            rgba(5,8,14,.88),
            rgba(5,8,14,.82)
        ),
        url('../img/img_na_web/bez_ramecku/dilna.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    isolation: isolate;
}

/* ------ ATMOSPHERE GLOW ------ */

.why-us::before {
    content: "";
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.05) 0%,
            transparent 70%
        );
    filter: blur(40px);
    z-index: 0;
}

/* --- SECTION TITLE ------ */

.why-us .section-title {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto 80px;
    text-align: center;
}

.why-us .section-title h2 {
    margin-bottom: 24px;
    color: #fff;
}

.why-us .section-title p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,.74);
    line-height: 1.9;
}

/* ==================================================
   HIGHLIGHT
================================================== */

.highlight {
    color: var(--primary-blue);
    text-shadow: 0 0 14px rgba(0,212,255,.22);
}

/* ==================================================
   FEATURES WRAPPER
================================================== */

.features-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ==================================================
   COLUMNS
================================================== */

.feature-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ==================================================
   FEATURE CARD
================================================== */

.feature-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 34px 30px;
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05) 0%,
            rgba(255,255,255,.03) 100%
        );

    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.08);
    isolation: isolate;
    will-change: transform;
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   GLOW
================================================== */

.feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top center,
            rgba(0,212,255,.08),
            transparent 65%
        );
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 0;
}

/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

    .feature-box:hover {
        transform: translateY(-8px);
        border-color: rgba(0,212,255,.3);
        box-shadow:
            0 20px 50px rgba(0,212,255,.12);
    }

    .feature-box:hover::before {
        opacity: 1;
    }
}

/* ==================================================
   TEXT ALIGN
================================================== */

.left-side {
    text-align: right;
}

.right-side {
    text-align: left;
}

/* ==================================================
   ICON
================================================== */

.feature-box i {
    position: relative;
    z-index: 2;
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: var(--primary-blue);
    text-shadow: 0 0 14px rgba(0,212,255,.28);
}

/* ==================================================
   TITLE
================================================== */

.feature-box h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
}

/* ==================================================
   TEXT
================================================== */

.feature-box p {
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: rgba(255,255,255,.72);
    font-size: .94rem;
    line-height: 1.8;
}

/* ==================================================
   CENTER AREA
================================================== */

.center-circle-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================================================
   MAIN CIRCLE
================================================== */

.main-circle {
    position: relative;
    width: clamp(210px, 22vw, 300px);
    height: clamp(210px, 22vw, 300px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at top,
            rgba(255,255,255,.06),
            rgba(0,0,0,.85)
        );
    border:2px solid rgba(0,212,255,.4);
    box-shadow:
        0 0 50px rgba(0,212,255,.16),
        inset 0 0 30px rgba(0,212,255,.10);

    backdrop-filter: blur(20px);
    z-index: 5;
}

/* ==================================================
   OUTER RING
================================================== */

.main-circle::before {

    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(0,212,255,.12);
    box-shadow: 0 0 25px rgba(0,212,255,.08);
}

/* ==================================================
   LOGO
================================================== */

.main-circle img {
    width: 74%;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 20px rgba(0,212,255,.15));
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {

    .features-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .center-circle-area {
        order: -1;
    }

    .feature-col {
        width: 100%;
    }

    .left-side,
    .right-side {
        text-align: center;
    }

    .feature-box {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .why-us {
        background-attachment: scroll;
        padding: 90px 0;
    }

    .features-wrapper {
        gap: 42px;
    }

    .feature-box {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .main-circle {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 576px) {

    .feature-box h4 {
        font-size: .95rem;
    }

    .feature-box p {
        font-size: .9rem;
    }

    .main-circle {
        width: 185px;
        height: 185px;
    }
}

/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .feature-box,
    .main-circle {
        transition: none;
    }
}
/* ==================================================
   PROCESS SECTION
================================================== */

.process-section {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vh, 150px) 0;
    background:
        radial-gradient(
            circle at bottom,
            #001a33 0%,
            #050608 70%
        );
    isolation: isolate;
}

/* ==================================================
   ATMOSPHERE GLOW
================================================== */

.process-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.08) 0%,
            transparent 72%
        );
    filter: blur(40px);
    z-index: 0;
}

/* ==================================================
   SECTION TITLE
================================================== */

.process-section .section-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto 70px;
}

.process-section .section-title h2{
    margin-bottom: 18px;
    background: linear-gradient(
        180deg,
        #f5f5f5 0%,
        #cfcfcf 45%,
        #8f8f8f 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}


/* ==================================================
   GRID
================================================== */

.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1250px;
    margin: 0 auto;
}

/* ==================================================
   CARD
================================================== */

.process-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 40px 26px;
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05) 0%,
            rgba(255,255,255,.03) 100%
        );
    backdrop-filter:  blur(14px);
    border:  1px solid rgba(255,255,255,.08);
    isolation: isolate;
    will-change: transform;
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   GLOW
================================================== */

.process-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top center,
            rgba(0,212,255,.08),
            transparent 65%
        );
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 0;
}

/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

    .process-box:hover {
        transform: translateY(-10px);
        border-color: rgba(0,212,255,.3);
        box-shadow: 0 20px 50px rgba(0,212,255,.12);
    }

    .process-box:hover::before {
        opacity: 1;
    }
}

/* ==================================================
   ICON CIRCLE
================================================== */

.circle-icon {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    margin-bottom: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at top,
            rgba(255,255,255,.06),
            rgba(0,0,0,.9)
        );
    border: 2px solid rgba(255,255,255,.08);
    box-shadow: inset 0 0 20px rgba(0,212,255,.08);
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   NUMBER
================================================== */

.step-number {
    font-family:'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    color: rgba(255,255,255,.14);
    transition:
        color .45s ease,
        text-shadow .45s ease,
        transform .45s ease;
}

/* ==================================================
   HOVER EFFECT
================================================== */

@media (hover: hover) {
    .process-box:hover .circle-icon {
        border-color: rgba(0,212,255,.35);
        box-shadow:
             0 0 25px rgba(0,212,255,.18),
            inset 0 0 20px rgba(0,212,255,.10);
        transform: scale(1.05);
    }

    .process-box:hover .step-number {
        color: var(--primary-blue);
        text-shadow: 0 0 18px rgba(0,212,255,.35);
        transform: scale(1.08);
    }
}

/* ==================================================
   TITLE
================================================== */

.process-box h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
}

/* ==================================================
   TEXT
================================================== */

.process-box p {
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    line-height: 1.8;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 90px 0;
    }

    .process-grid {
        gap: 24px;
    }

    .process-box {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .circle-icon {
        width: 78px;
        height: 78px;
        margin-bottom: 22px;
    }

    .step-number {
        font-size: 1.6rem;
    }

    .process-box p {
        font-size: .9rem;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-box {
        padding: 30px 20px;
    }

    .process-box h3 {
        font-size: .95rem;
    }

    .process-box p {
        font-size: .88rem;
    }
}

/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .process-box,
    .circle-icon,
    .step-number {
        transition: none;
    }


}

/* ==================================================
   PRICING SECTION
================================================== */

.pricing-section {

    position: relative;

    overflow: hidden;

    padding:
        clamp(100px, 12vh, 150px)
        0;
}

/* ==================================================
   ATMOSPHERE GLOW
================================================== */

.pricing-section::before {

    content: "";

    position: absolute;

    top: -250px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.06) 0%,
            transparent 70%
        );

    filter: blur(40px);

    z-index: 0;
}

/* ==================================================
   TITLE
================================================== */

.pricing-section .section-title {

    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 900px;

    margin:
        0 auto 60px;
}

.pricing-section .section-title h2 {

    color: #050608;

    margin-bottom: 18px;
}

/* OPRAVA PODNADPISU */

.pricing-subtitle-dark {

    max-width: 820px;
    margin: 0 auto;
    color: #3b3b3b !important;
    font-size: .96rem;
    line-height: 1.9;
    font-weight: 500;
}

/* ==================================================
   MAIN GRID
================================================== */

.pricing-main-grid {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

    max-width: 1200px;

    margin:
        0 auto 30px;

    align-items: stretch;
}

/* ==================================================
   EXTRA GRID
================================================== */

.pricing-extra-grid {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;

    max-width: 1200px;

    margin: 0 auto;

    align-items: stretch;
}

/* ==================================================
   MAIN CARD
================================================== */

.pricing-card-dark {

    position: relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    height: 100%;

    padding:
        46px 36px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(5,12,22,.98) 0%,
            rgba(0,26,51,.96) 100%
        );

    backdrop-filter:
        blur(16px);

    border:
        1px solid rgba(0,212,255,.16);

    box-shadow:
        0 20px 55px rgba(0,0,0,.28);

    isolation: isolate;

    will-change:
        transform;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   GLOW
================================================== */

.pricing-card-dark::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top center,
            rgba(0,212,255,.10),
            transparent 65%
        );

    opacity: 0;

    transition:
        opacity .45s ease;

    z-index: 0;
}

/* ==================================================
   HOVER
================================================== */

@media (hover: hover) {

    .pricing-card-dark:hover {

        transform:
            translateY(-10px);

        border-color:
            rgba(0,212,255,.35);

        box-shadow:
            0 25px 60px rgba(0,212,255,.14);
    }

    .pricing-card-dark:hover::before {
        opacity: 1;
    }
}

/* ==================================================
   MAIN CARD CONTENT
================================================== */

.pricing-card-dark h3 {

    position: relative;
    z-index: 2;

    margin-bottom: 24px;

    color: #fff;

    font-size:
        clamp(1.3rem, 2vw, 1.7rem);

    line-height: 1.2;
}

/* ==================================================
   PRICE ROWS
================================================== */

.price-rows {

    position: relative;
    z-index: 2;

    margin-bottom: 30px;
}

.price-rows p {

    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 14px 0;

    border-bottom:
        1px solid rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.82);

    font-size: .94rem;

    max-width: 100%;
}

.price-rows strong {

    color: #fff;

    font-weight: 800;
}

/* ==================================================
   BIG PRICE
================================================== */

.big-price-cyan {

    position: relative;
    z-index: 2;

    margin:
        10px 0 22px;

    font-family:
        'Outfit', sans-serif;

    font-size:
        clamp(2.2rem, 5vw, 3.5rem);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -1px;

    color:
        var(--primary-blue);

    text-shadow:
        0 0 24px rgba(0,212,255,.28);
}

/* ==================================================
   DESCRIPTION
================================================== */

/* OPRAVA TMAVÉHO TEXTU */

.card-desc {

    position: relative;
    z-index: 2;

    max-width: 100%;

    margin-bottom: 30px;

    color: rgba(255,255,255,.82) !important;

    font-size: .96rem;

    line-height: 1.8;
}

/* ==================================================
   BUTTON ALIGN FIX
================================================== */

/* SROVNÁNÍ BUTTONŮ */

.pricing-card-dark .btn-primary {

    margin-top: auto;

    width: 100%;

    justify-content: center;
}

/* ==================================================
   EXTRA CARD
================================================== */

.extra-item-dark {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 34px 22px;
    border-radius: 24px;
    text-align: center;
    background: rgba(5,12,22,.96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,212,255,.12);
    isolation: isolate;
    will-change: transform;
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   EXTRA CARD HOVER
================================================== */

@media (hover: hover) {
    .extra-item-dark:hover {
        transform: translateY(-8px);
        border-color: rgba(0,212,255,.3);
        box-shadow: 0 20px 45px rgba(0,212,255,.12);
    }
}

/* ==================================================
   ICON
================================================== */

.extra-item-dark i {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 18px;
    text-shadow: 0 0 14px rgba(0,212,255,.22);
}

/* ==================================================
   TITLE
================================================== */

.extra-item-dark h4 {
    margin-bottom: 14px;
    color: #fff;
    font-size: .95rem;
}

/* ==================================================
   DESCRIPTION
================================================== */

.extra-item-dark p {
    max-width: 100%;
    margin-bottom: 18px;
    color: rgba(255,255,255,.72);
    font-size: .88rem;
    line-height: 1.75;
}

/* ==================================================
   PRICE
================================================== */

.extra-price-cyan {
    display: block;
    margin-bottom: 22px;
    color: var(--primary-blue);
    font-size: 1.05rem;
    font-weight: 800;
}

/* ==================================================
   BUTTON
================================================== */

.extra-item-dark .btn-secondary {
    width: 100%;
    margin-top: auto;
    justify-content: center;
    padding: 14px 18px;
    font-size: .74rem;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 992px) {
    .pricing-main-grid {
        grid-template-columns:
            1fr;
    }

    .pricing-extra-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .pricing-section {
        padding: 90px 0;
    }

    .pricing-card-dark {
        padding: 38px 26px;
        border-radius: 26px;
    }

    .pricing-extra-grid {
        gap: 20px;
    }

    .extra-item-dark {
        padding: 28px 18px;
    }
}

@media (max-width: 576px) {

    .pricing-extra-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-dark {
        padding: 32px 20px;
    }

    .pricing-card-dark h3 {
        font-size: 1.2rem;
    }

    .big-price-cyan {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .price-rows p {
        font-size: .88rem;
    }
}

/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .pricing-card-dark,
    .extra-item-dark {
        transition: none;
    }
}

/* ==================================================
   LOKALITA / SEO SECTION
================================================== */

.dark-gradient-section {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vh, 150px)
        0;
    background:
        radial-gradient(
            circle at center,
            #001a33 0%,
            #050608 72%
        );
    text-align: center;
    isolation: isolate;
}

/* ==================================================
   ATMOSPHERE
================================================== */

.dark-gradient-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.08) 0%,
            transparent 72%
        );
    filter: blur(40px);
    z-index: 0;
}

/* ==================================================
   CONTENT
================================================== */

#lokalita .section-title {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

/* ==================================================
   TITLE
================================================== */

#lokalita h2 {
    margin-bottom: 28px;
    background: linear-gradient(
        180deg,
        #f5f5f5 0%,
        #cfcfcf 45%,
        #8f8f8f 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -1px;
}

/* ==================================================
   TEXT
================================================== */

.lokalita-text {
    max-width: 860px;
    margin: 0 auto 70px;
    color: rgba(255,255,255,.78);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.9;
}

.lokalita-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ==================================================
   DARK GRADIENT SECTION
================================================== */

.dark-gradient-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 12vh, 140px)
        0;
    background:
        radial-gradient(
            circle at top,
            #001a33 0%,
            #050608 70%
        );
    text-align: center;
    isolation: isolate;
}

/* ==================================================
   ATMOSPHERE GLOW
================================================== */

.dark-gradient-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.08) 0%,
            transparent 72%
        );
    filter: blur(40px);
    z-index: 0;
}

/* ==================================================
   CONTENT
================================================== */

.dark-gradient-section .container {
    position: relative;
    z-index: 2;
}

/* ==================================================
   TITLE
================================================== */

.dark-gradient-section .section-title {
    max-width: 900px;
    margin: 0 auto;
}

.dark-gradient-section h2 {
    margin-bottom: 26px;
    color: #fff;
}

/* ==================================================
   TEXT
================================================== */

.lokalita-text {
    max-width: 760px;
    margin: 0 auto 42px;
    color: rgba(255,255,255,.76);
    font-size: clamp(.98rem, 1.2vw, 1.06rem);
    line-height: 1.9;
}

.lokalita-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ==================================================
   LOCATION TAGS
================================================== */

.location-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 55px;
    margin-top: 40px; 
}

/* ==================================================
   TAG
================================================== */

.location-tags span {
    position: relative;
    overflow: hidden;
    padding: 14px 24px;
    border-radius: 100px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,.82);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        transform .45s ease,
        border-color .45s ease,
        background .45s ease,
        color .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   GLOW
================================================== */

.location-tags span::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top,
            rgba(0,212,255,.12),
            transparent 70%
        );
    opacity: 0;
    transition: opacity .45s ease;
}

/* ==================================================
   HOVER
================================================== */

.location-tags span:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,212,255,.35);

    background:
        rgba(0,212,255,.08);

    color:
        var(--primary-blue);

    box-shadow:
        0 15px 30px rgba(0,212,255,.12);
}

.location-tags span:hover::before {
    opacity: 1;
}

/* ==================================================
   BUTTON
================================================== */

.lokalita-btn {
    min-width: 290px;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 768px) {

    .dark-gradient-section {
        padding: 90px 0;
    }

    .location-tags {
        gap: 12px;
        margin-bottom: 42px;
    }

    .location-tags span {
        padding: 12px 18px;
        font-size: .74rem;
    }

    .lokalita-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 576px) {

    #lokalita h2 {
        line-height: 1.1;
    }

    .lokalita-text {
        font-size: .94rem;
        line-height: 1.8;
    }
}

/* ==================================================
   GALLERY SECTION
================================================== */

.gallery-section {

    position: relative;

    overflow: hidden;

    padding:
        clamp(100px, 12vh, 150px)
        0;

    text-align: center;
}

/* ==================================================
   ATMOSPHERE
================================================== */

.gallery-section::before {

    content: "";

    position: absolute;

    top: -220px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.05) 0%,
            transparent 70%
        );

    filter: blur(40px);

    z-index: 0;
}

/* ==================================================
   TITLE
================================================== */

.gallery-section .section-title {

    position: relative;

    z-index: 2;

    margin-bottom: 60px;
}

.gallery-section .subtitle {

    max-width: 760px;

    margin: 0 auto;

    color:
        rgba(20,20,20,.72);

    font-size: .98rem;

    line-height: 1.85;
}

/* ==================================================
   GRID
================================================== */

.gallery-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    max-width: 1300px;

    margin:
        0 auto 50px;
}

/* ==================================================
   ITEM
================================================== */

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #000;

    isolation: isolate;

    cursor: pointer;

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   IMAGE
================================================== */

.gallery-item img {

    width: 100%;

    height: 340px;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        filter .6s ease;
}

/* ==================================================
   OVERLAY
================================================== */

.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 28px;

    text-align: left;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.35) 45%,
            transparent 100%
        );

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity .7s cubic-bezier(.19,1,.22,1),
        transform .7s cubic-bezier(.19,1,.22,1);
}

/* ==================================================
   GLOW
================================================== */

.gallery-overlay::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at bottom,
            rgba(0,212,255,.16),
            transparent 60%
        );

    opacity: 0;

    transition:
        opacity .45s ease;
}

/* ==================================================
   TEXT
================================================== */

.gallery-overlay h4 {

    position: relative;

    z-index: 2;

    margin-bottom: 6px;

    color: #fff;

    font-size: 1.45rem;

    font-weight: 800;

    letter-spacing: -1px;
}

.gallery-overlay p {

    position: relative;

    z-index: 2;

    color:
        var(--primary-blue);

    font-size: .9rem;

    letter-spacing: .5px;

    opacity: .9;
}

/* ==================================================
   HOVER
================================================== */

.gallery-item:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 25px 55px rgba(0,212,255,.10);
}

.gallery-item:hover img {

    transform:
        scale(1.08);

    filter:
        brightness(.88);
}

.gallery-item:hover .gallery-overlay {

    opacity: 1;

    transform:
        translateY(0);
}

.gallery-item:hover .gallery-overlay::before {

    opacity: 1;
}

/* ==================================================
   BUTTON WRAPPER
================================================== */

.gallery-btn-wrapper {

    position: relative;

    z-index: 2;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {

    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .gallery-section {

        padding:
            90px 0;
    }

    .gallery-grid {

        grid-template-columns:
            1fr;

        gap: 18px;
    }

    .gallery-item img {

        height: 300px;
    }

    .gallery-overlay {

        padding: 22px;
    }

    .gallery-overlay h4 {

        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {

    .gallery-item {

        border-radius: 24px;
    }

    .gallery-item img {

        height: 260px;
    }

    .gallery-section .subtitle {

        font-size: .94rem;

        line-height: 1.8;
    }
}

/* ==================================================
   FAQ SECTION
================================================== */

.faq-section {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vh, 150px)
        0;
    background:
        radial-gradient(
            circle at center,
            #001a33 0%,
            #050608 72%
        );
    isolation: isolate;
}

/* ==================================================
   ATMOSPHERE
================================================== */

.faq-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.08) 0%,
            transparent 72%
        );
    filter: blur(40px);
    z-index: 0;
}

/* ==================================================
   CONTAINER
================================================== */

.faq-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 920px;
    margin: 50px auto 0;
}

/* ==================================================
   ITEM
================================================== */

.faq-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05) 0%,
            rgba(255,255,255,.03) 100%
        );
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    transition:
        border-color .45s ease,
        transform .45s ease,
        box-shadow .45s ease;
    isolation: isolate;
}

/* GLOW */

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top,
            rgba(0,212,255,.08),
            transparent 70%
        );
    opacity: 0;
    transition: opacity .45s ease;
}

/* HOVER */

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,.25);
    box-shadow: 0 20px 45px rgba(0,212,255,.10);
}

.faq-item:hover::before {
    opacity: 1;
}

/* ==================================================
   QUESTION
================================================== */

.faq-question {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    cursor: pointer;
}

/* TITLE */

.faq-question h3 {
    margin: 0;
    background: linear-gradient(
        180deg,
        #f4f4f4 0%,
        #d6d6d6 55%,
        #9d9d9d 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.05rem;
    line-height: 1.5;
    transition: opacity .35s ease;
}

/* ==================================================
   ICON
================================================== */

.faq-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 300;
    transition:
        transform .45s ease,
        background .45s ease,
        border-color .45s ease,
        color .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   ANSWER
================================================== */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.22,1,.36,1);
}

.faq-answer p {
    padding: 0 30px 30px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .96rem;
    line-height: 1.85;
    max-width: 100%;
}

/* ==================================================
   ACTIVE STATE
================================================== */

.faq-item.active {
    border-color: rgba(0,212,255,.35);
    box-shadow: 0 25px 55px rgba(0,212,255,.12);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-item.active .faq-question h3 {

    color:
        var(--primary-blue);
}

/* ICON ACTIVE */

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(0,212,255,.10);
    border-color: rgba(0,212,255,.35);
    color: #fff;
    box-shadow: 0 0 18px rgba(0,212,255,.18);
}

/* OPEN */

.faq-item.active .faq-answer {

    max-height: 500px;
}

/* ==================================================
   FAQ TITLE FIX
================================================== */

.faq-section .section-title{
    text-align:center;
}

.faq-section .section-title h2{
    text-align:center;
    color:#fff !important;
    width:100%;

    background:none !important;
    -webkit-text-fill-color:#fff !important;
}

.faq-section .section-title .highlight{
    color:var(--primary-blue) !important;
    -webkit-text-fill-color:var(--primary-blue) !important;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 768px) {

    .faq-section {
        padding: 90px 0;
    }

    .faq-question {
        padding: 18px 22px;
    }

    .faq-answer p {
        padding: 0 22px 24px;
    }

    .faq-question h3 {
        font-size: .98rem;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .faq-container {
        gap: 14px;
    }

    .faq-item {
        border-radius: 20px;
    }

    .faq-answer p {
        font-size: .92rem;
    }
}

/* ==================================================
   INSTAGRAM SECTION
================================================== */

.instagram-section-light {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 12vh, 150px)
        0;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5fbff 100%
        );
    isolation: isolate;
    background: transparent;
}

/* ==================================================
   ATMOSPHERE
================================================== */

.instagram-section-light::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.06) 0%,
            transparent 70%
        );
    filter: blur(40px);
    z-index: 0;
}

/* ==================================================
   DOTS OVERLAY
================================================== */

.light-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            rgba(0,212,255,.08) 1px,
            transparent 1px
        );
    background-size:
        30px 30px;
    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 80%
        );
    pointer-events: none;
    z-index: 1;
}

/* ==================================================
   INSTAGRAM SECTION
================================================== */

.instagram-section-light {

    position: relative;

    overflow: hidden;

    padding:
        clamp(100px, 12vh, 150px)
        0;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5fbff 100%
        );

    isolation: isolate;
}

/* ==================================================
   ATMOSPHERE
================================================== */

.instagram-section-light::before {

    content: "";

    position: absolute;

    top: -220px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.06) 0%,
            transparent 70%
        );

    filter: blur(40px);

    z-index: 0;
}

/* ==================================================
   DOTS
================================================== */

.light-bg-overlay {

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            rgba(0,212,255,.08) 1px,
            transparent 1px
        );

    background-size: 30px 30px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 80%
        );

    pointer-events: none;

    z-index: 1;
}

/* ==================================================
   TITLE
================================================== */

.instagram-section-light .section-title {

    position: relative;

    z-index: 2;

    margin-bottom: 60px;
}

.instagram-section-light h2 {

    color: #050608;
}

.subtitle-dark {

    max-width: 760px;

    margin: 0 auto;

    color:
        rgba(20,20,20,.72);

    font-size: .98rem;

    line-height: 1.85;
}

/* ==================================================
   GRID
================================================== */

.insta-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    max-width: 1200px;

    margin: 0 auto;
}

/* ==================================================
   BOX
================================================== */

.insta-box {

    position: relative;

    overflow: hidden;

    aspect-ratio: 1 / 1;

    border-radius: 24px;

    background: #000;

    isolation: isolate;

    box-shadow:
        0 18px 45px rgba(0,0,0,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

/* ==================================================
   IMAGE
================================================== */

.insta-box img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        filter .6s ease;
}

/* ==================================================
   OVERLAYS
================================================== */

.insta-box::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,10,18,.75) 0%,
            transparent 65%
        );

    opacity: 0;

    transition:
        opacity .45s ease;

    z-index: 1;
}

.insta-box::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at bottom,
            rgba(0,212,255,.16),
            transparent 65%
        );

    opacity: 0;

    transition:
        opacity .45s ease;

    z-index: 1;
}

/* ==================================================
   HOVER
================================================== */

.insta-box:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 25px 55px rgba(0,212,255,.14);
}

.insta-box:hover img {

    transform:
        scale(1.08);

    filter:
        brightness(.88);
}

.insta-box:hover::before,
.insta-box:hover::after {

    opacity: 1;
}

/* ==================================================
   BUTTON
================================================== */

.insta-btn-wrapper {

    position: relative;

    z-index: 2;

    margin-top: 60px;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 992px) {

    .insta-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .instagram-section-light {

        padding:
            90px 0;
    }

    .insta-grid {

        grid-template-columns:
            1fr;

        gap: 18px;
    }

    .insta-box {

        border-radius: 24px;
    }

    .insta-btn-wrapper {

        margin-top: 42px;
    }
}

@media (max-width: 576px) {

    .subtitle-dark {

        font-size:
            .94rem;

        line-height:
            1.8;
    }
}

/* ==================================================
   CONTACT SECTION
================================================== */

.contact-form-section {

    position: relative;

    overflow: hidden;

    padding:
        clamp(100px, 12vh, 150px)
        0;

    text-align: center;

    background:
        radial-gradient(
            circle at top,
            #001a33 0%,
            #050608 65%
        );

    isolation: isolate;
}

/* ==================================================
   GLOW
================================================== */

.contact-form-section::before {

    content: "";

    position: absolute;

    top: -240px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 720px;
    height: 720px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.08) 0%,
            transparent 72%
        );

    filter: blur(40px);

    z-index: 0;
}

/* ==================================================
   TITLE
================================================== */

.contact-form-section .section-title {

    position: relative;

    z-index: 5;

    max-width: 850px;

    margin:
        0 auto 55px;
}

.contact-form-section .section-title h2 {

    color: #ffffff !important;
}

.contact-form-section .section-title p {

    max-width: 760px;

    margin: 0 auto;

    color:
        rgba(255,255,255,.72) !important;

    font-size: .98rem;

    line-height: 1.8;
}

.contact-form-section .highlight {

    color:
        var(--primary-blue);
}

/* ==================================================
   FORM CARD
================================================== */

.contact-form-section .form-container {

    position: relative;

    overflow: hidden;

    z-index: 2;

    max-width: 920px;

    margin: 0 auto;

    padding:
        clamp(30px, 5vw, 50px);

    border-radius: 32px;

    background:
        linear-gradient(
            180deg,
            rgba(5,10,18,.98) 0%,
            rgba(5,10,18,.92) 100%
        );

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 35px 90px rgba(0,0,0,.35);
}

/* ==================================================
   STEP
================================================== */

.form-step {

    display: none;

    position: relative;

    z-index: 2;
}

.form-step.active {

    display: block;
}

/* ==================================================
   HEADINGS
================================================== */

.contact-form-section h4 {

    margin-bottom: 24px;

    color:
        rgba(255,255,255,.9);

    font-size:
        1.08rem;
}

/* ==================================================
   GRID
================================================== */

.options-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(170px, 1fr));

    gap: 16px;

    margin-top: 24px;
}

/* ==================================================
   OPTION
================================================== */

.option-card input {

    display: none;
}

.option-content {

    min-height: 135px;

    padding:
        22px 18px;

    border-radius: 22px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        .35s ease;
}

.option-content i {

    color:
        var(--primary-blue);

    font-size:
        1.7rem;

    margin-bottom: 14px;
}

.option-content span {

    color:
        rgba(255,255,255,.88);

    font-size:
        .84rem;

    font-weight:
        700;

    line-height:
        1.4;
}

/* ==================================================
   OPTION HOVER
================================================== */

.option-card:hover .option-content {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,212,255,.25);

    box-shadow:
        0 18px 40px rgba(0,212,255,.10);
}

.option-card input:checked + .option-content {

    background:
        rgba(0,212,255,.10);

    border-color:
        rgba(0,212,255,.35);

    box-shadow:
        0 0 20px rgba(0,212,255,.15);
}

/* ==================================================
   INPUTS
================================================== */

.input-group {

    display: flex;
    flex-direction: column;

    gap: 16px;

    margin-top: 24px;
}

input:not([type="checkbox"]):not([type="radio"]),
textarea {

    width: 100%;

    min-height: 56px;

    padding:
        16px 18px;

    border-radius: 16px;

    border:
        1px solid rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.05);

    color: #fff;

    font-family:
        'Montserrat', sans-serif;

    font-size:
        16px;

    transition:
        .35s ease;
}

textarea {

    min-height: 140px;

    resize: vertical;
}

input::placeholder,
textarea::placeholder {

    color:
        rgba(255,255,255,.42);
}

input:focus,
textarea:focus {

    outline: none;

    border-color:
        rgba(0,212,255,.35);

    box-shadow:
        0 0 0 4px rgba(0,212,255,.10);
}

/* ==================================================
   BUTTONS
================================================== */

.form-navigation {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 36px;
}

/* ==================================================
   FOOTNOTE
================================================== */

.contact-note {

    margin-top: 18px;

    color:
        rgba(255,255,255,.5);

    font-size:
        .85rem;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 768px) {

    .contact-form-section {

        padding:
            90px 0;
    }

    .options-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-form-section .form-container {

        padding:
            28px 22px;

        border-radius:
            26px;
    }

    .option-content {

        min-height:
            120px;

        padding:
            18px 14px;
    }

    .option-content span {

        font-size:
            .78rem;
    }
}

@media (max-width: 576px) {

    .options-grid {

        grid-template-columns:
            1fr;
    }

    .form-navigation {

        flex-direction: column;
    }

    .form-navigation .btn-primary,
    .form-navigation .btn-secondary {

        width: 100%;
    }

    .option-content {

        min-height:
            105px;
    }
}


/* ==================================================
   FOOTER — PREMIUM DARK CYAN
================================================== */

.main-footer {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #071019 0%,
            #050608 35%,
            #040506 100%
        );

    padding:
        clamp(70px, 10vh, 100px)
        0
        24px;

    isolation: isolate;
}

/* ==================================================
   ATMOSPHERE
================================================== */

.main-footer::before {

    content: "";

    position: absolute;

    top: -250px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 800px;
    height: 800px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.08) 0%,
            transparent 70%
        );

    filter: blur(50px);

    z-index: 0;
}

/* TOP LINE */

.main-footer::after {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform:
        translateX(-50%);

    width: 70%;
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(0,212,255,.5),
            transparent
        );

    z-index: 2;
}

/* ==================================================
   GRID
================================================== */

.footer-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin:
        0 auto 50px;

    padding:
        0 clamp(30px, 4vw, 50px);

    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr 1fr;

    gap: 42px;
}

/* ==================================================
   LOGO
================================================== */

.footer-col .logo {

    font-family:
        'Outfit', sans-serif;

    font-size:
        1.9rem;

    font-weight:
        900;

    color: #fff;

    letter-spacing:
        -.5px;
}

.footer-col .logo span {

    color:
        var(--primary-blue);

    text-shadow:
        0 0 12px var(--primary-blue-glow);
}

/* ==================================================
   DESCRIPTION
================================================== */

.footer-desc {

    margin-top: 16px;

    color:
        rgba(255,255,255,.62);

    line-height:
        1.75;

    font-size:
        .9rem;

    max-width:
        320px;
}

/* ==================================================
   HEADINGS
================================================== */

.footer-col h4 {

    position: relative;

    color: #fff;

    font-size:
        .88rem;

    font-weight:
        900;

    text-transform:
        uppercase;

    letter-spacing:
        1.5px;

    margin-bottom:
        24px;

    padding-bottom:
        12px;
}

.footer-col h4::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            to right,
            var(--primary-blue),
            transparent
        );
}

/* ==================================================
   LINKS
================================================== */

.footer-col ul {

    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-col ul li {

    margin-bottom: 14px;
}

.footer-col ul li a {

    color:
        rgba(255,255,255,.62);

    text-decoration: none;

    font-size:
        .9rem;

    transition:
        all .3s ease;
}

.footer-col ul li a:hover {

    color:
        var(--primary-blue);

    padding-left:
        6px;
}

/* ==================================================
   CONTACT
================================================== */

.contact-info li {

    color:
        rgba(255,255,255,.62);

    font-size:
        .9rem;

    display: flex;
    align-items: center;

    gap: 10px;

    line-height:
        1.6;
}

.icon-blue {

    color:
        var(--primary-blue);

    font-size:
        .95rem;

    flex-shrink: 0;
}

/* ==================================================
   SOCIALS
================================================== */

.social-icons {

    display: flex;

    gap: 14px;

    margin-top: 24px;
}

.social-icons a {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.08);

    color: #fff;

    text-decoration: none;

    font-size:
        .82rem;

    font-weight:
        700;

    transition:
        all .35s ease;
}

.social-icons a:hover {

    transform:
        translateY(-4px);

    background:
        var(--primary-blue);

    color:
        #001018;

    border-color:
        transparent;

    box-shadow:
        0 0 25px rgba(0,212,255,.35);
}

/* ==================================================
   BOTTOM
================================================== */

.footer-bottom {

    position: relative;

    z-index: 2;

    border-top:
        1px solid rgba(255,255,255,.06);

    padding-top:
        24px;

    text-align: center;
}

.footer-bottom p {

    margin: 0;

    color:
        rgba(255,255,255,.4);

    font-size:
        .78rem;

    letter-spacing:
        .5px;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 992px) {

    .footer-container {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 38px;
    }
}

@media (max-width: 640px) {

    .main-footer {

        padding:
            70px 0 22px;
    }

    .footer-container {

        grid-template-columns:
            1fr;

        gap: 34px;

        margin-bottom:
            40px;
    }

    .footer-col {

        text-align: center;
    }

    .footer-desc {

        margin-left: auto;
        margin-right: auto;
    }

    .footer-col h4::after {

        left: 50%;

        transform:
            translateX(-50%);
    }

    .social-icons {

        justify-content: center;
    }

    .contact-info li {

        justify-content: center;
    }
}

/* ==================================================
   COOKIES / GDPR – PROFESIONÁLNÍ VERZE
   ================================================== */

.gdpr-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 0 5%; /* Ochrana proti nalepení textu na okraje mobilu */
}

/* NADPISY */
.gdpr-content h2 {
  color: var(--primary-blue);
  margin-top: clamp(30px, 6vh, 50px);
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 4vw, 1.7rem);
  font-weight: 800;
}

.gdpr-content h3 {
  color: #001a33;
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
}

/* SEZNAM */
.gdpr-content ul {
  margin: 15px 0 15px clamp(18px, 4vw, 24px); /* Responzivní odsazení odrážek */
  line-height: 1.8;
  color: #444;
}

.gdpr-content ul li {
  margin-bottom: 10px;
}

/* GRID KATEGORIÍ */
.cookies-table {
  display: grid;
  /* Na mobilu 1 sloupec, na PC 2-3 dle místa */
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* KARTA */
.cookie-type {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 14px;
  padding: clamp(20px, 4vw, 26px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* hover - pouze pro desktop */
@media (hover: hover) {
  .cookie-type:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.15);
  }
}

/* NADPIS V KARTĚ */
.cookie-type h4 {
  color: var(--primary-blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}

/* IKONA */
.cookie-type i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* TEXT V KARTĚ */
.cookie-type p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  color: #444;
}

/* TLAČÍTKO */
.cookie-settings-btn {
  text-align: center;
  margin: clamp(30px, 5vh, 45px) 0;
}

/* POSLEDNÍ AKTUALIZACE */
.last-update {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #888;
  font-size: 0.85rem;
  font-style: italic;
}

/* ==================================================
   OBCHODNÍ PODMÍNKY – PROFESIONÁLNÍ VERZE
   ================================================== */

.terms-content {
  max-width: 850px; /* O něco užší pro lepší čitelnost textu */
  margin: 0 auto;
  text-align: left;
  padding: 0 5%; /* Ochrana pro mobilní displeje */
  line-height: 1.7;
  color: #333;
}

/* NADPISY */
.terms-content h2 {
  color: var(--primary-blue);
  margin-top: clamp(35px, 6vh, 55px);
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 4vw, 1.65rem);
  font-weight: 800;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding-bottom: 10px;
}

.terms-content h3 {
  color: #001a33;
  margin-top: clamp(25px, 4vh, 35px);
  margin-bottom: 14px;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
}

/* SEZNAMY */
.terms-content ol, 
.terms-content ul {
  margin: 15px 0 20px clamp(20px, 5vw, 30px);
}

.terms-content ol li, 
.terms-content ul li {
  margin-bottom: 12px;
  padding-left: 5px;
}

.terms-content ul {
  list-style-type: disc;
}

/* ZVÝRAZNĚNÉ BLOKY (např. důležité info) */
.terms-highlight {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 14px;
  padding: clamp(18px, 4vw, 24px);
  margin: 30px 0;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .terms-highlight:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
  }
}

/* DATUM ÚČINNOSTI */
.effective-date {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #777;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: right;
}

/* DOWNLOAD SEKCE */
.download-section {
  text-align: center;
  margin: clamp(40px, 8vh, 60px) 0;
  padding: 30px;
  background: #f8fbfc;
  border-radius: 16px;
}

.download-section p {
  margin-bottom: 15px;
  font-weight: 600;
}

/* Tlačítko (využívá tvé globální styly) */
.download-section .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.story-section {
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.story-section * {
  position: relative;
  z-index: 2;
}