/* ===== RESET ===== */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:Arial,Helvetica,sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

/* ===== NAVBAR ===== */
.navbar{
    position:sticky;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 40px;
    background:#081321;
    border-bottom:1px solid rgba(242,202,80,.35);
    backdrop-filter:blur(6px);
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    z-index:1000;
}

.logo img{
    height:80px;
    transform:scale(2.5);
    transform-origin:left center;
    margin-left:-40px;
    filter:drop-shadow(0 0 6px rgba(242,202,80,.4));
}

.nav-menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-size:15px;
    font-weight:bold;
    letter-spacing:1px;
    position:relative;
    transition:.3s;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:linear-gradient(90deg,#F2CA50,#FFD700);
    transition:.3s;
}

.nav-menu a:hover{color:#FFD700}
.nav-menu a:hover::after{width:100%}


/* =========================================================
   HERO
   ========================================================= */

.hero{
    position:relative;
    overflow:hidden;
    background:#081321;
    padding:0 20px;
}

.hero-container{
    position:relative;
    max-width:1400px;
    height:620px;
    margin:0 auto;
    display:flex;
    align-items:stretch;
}


/* ===== HERO TEXT ===== */

.hero-content{
    width:46%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:50px 20px;
    position:relative;
    z-index:3;
}

.hero-subtitle{
    display:inline-block;
    color:#F2CA50;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;
    margin-bottom:18px;
}

.hero h1{
    font-family:"Archivo Black",sans-serif;
    font-size:60px;
    line-height:1.05;
    text-transform:uppercase;
    margin-bottom:18px;

    background:linear-gradient(
        180deg,
        #FFF2A6,
        #FFD700,
        #F2CA50
    );

    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero h1 span{
    -webkit-text-fill-color:#ffffff;
    color:#ffffff;
}

.hero-line{
    width:130px;
    height:3px;
    background:#F2CA50;
    border-radius:999px;
    margin:25px 0 30px;
}

.hero p{
    color:#d5dce5;
    font-size:19px;
    line-height:1.8;
    max-width:600px;
    margin-bottom:35px;
}


/* ===== HERO BENEFITS ===== */

.hero-benefits{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:0;
}

.hero-benefits div{
    color:#ffffff;
    font-size:18px;
}

.hero-benefits i{
    color:#F2CA50;
    margin-right:12px;
}


/* ===== HERO IMAGE ===== */

.hero-image{
    position:absolute;
    top:0;
    right:0;
    bottom:0;

    width:64%;
    height:100%;

    overflow:hidden;

    border-radius:0 20px 20px 0;

    z-index:1;
}


/* ===== HERO GRADIENT ===== */

.hero-image::before{
    content:"";

    position:absolute;

    top:0;
    left:0;
    bottom:0;

    width:42%;

    z-index:2;

    pointer-events:none;

    background:linear-gradient(
        90deg,
        #081321 0%,
        rgba(8,19,33,.96) 18%,
        rgba(8,19,33,.78) 40%,
        rgba(8,19,33,.40) 65%,
        rgba(8,19,33,0) 100%
    );
}


/* ===== HERO IMAGE ===== */

.hero-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:38% center;
}


/* ===== HERO MOBILE ===== */

@media(max-width:1000px){

    .hero{
        padding:0 20px;
    }

    .hero-container{
        height:auto;
        display:flex;
        flex-direction:column;
    }

    .hero-content{
        width:100%;
        padding:70px 20px 40px;
        text-align:center;
    }

    .hero-line{
        margin:25px auto 30px;
    }

    .hero-image{
        position:relative;
        top:auto;
        right:auto;
        bottom:auto;

        width:100%;
        height:420px;

        border-radius:20px;
    }

    .hero-image::before{
        top:0;
        left:0;
        bottom:auto;

        width:100%;
        height:45%;

        background:linear-gradient(
            180deg,
            rgba(8,19,33,.75),
            rgba(8,19,33,0)
        );
    }

    .hero h1{
        font-size:46px;
    }
}


/* ===== SPOLEČNÉ SEKCE ===== */

.about,
.process,
.services,
.pricing,
.uroky,
.opening-hours,
.faq{
    padding:80px 20px;
}

.process{
    background:#f7f8fb;
}

.about-container,
.process-container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.about h2,
.process h2,
.services h2,
.pricing h2,
.uroky h2,
.opening-hours h2,
.faq h2{
    color:#F2CA50;
    font-size:36px;
    margin-bottom:20px;
    text-shadow:0 2px 8px rgba(242,202,80,.15);
}

.about p,
.process-subtitle{
    max-width:850px;
    margin:0 auto 18px;
    color:#555;
    font-size:17px;
    line-height:1.8;
}


/* ===== ABOUT ===== */

.about{
    background:#ffffff;
}

.about-container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.about-features{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.social-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:20px 0 30px;
}

.social-buttons a{
    display:flex;
    align-items:center;
    gap:9px;

    padding:11px 20px;

    border:1px solid #F2CA50;
    border-radius:8px;

    color:#F2CA50;
    background:transparent;

    text-decoration:none;
    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.social-buttons a:hover{
    background:#F2CA50;
    color:#081321;
    transform:translateY(-2px);
}

.social-buttons i{
    font-size:18px;
}

.feature{
    color:#fff;
    background:linear-gradient(180deg,#0d2038,#081321);
    border:1px solid rgba(242,202,80,.25);
    border-radius:12px;
    padding:22px;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
    border-color:#FFD700;
    box-shadow:0 18px 40px rgba(8,19,33,.15);
}

.feature i{
    color:#F2CA50;
    font-size:34px;
    margin-bottom:15px;
    display:block;
}

.feature span{
    color:#fff;
    font-weight:bold;
}


/* ===== PROCESS ===== */

.process{
    background:#f5f7fa;
}

.process-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:45px;
}

.step{
    background:linear-gradient(180deg,#0d2038,#081321);
    border:1px solid rgba(242,202,80,.25);
    border-radius:14px;
    padding:28px;
    transition:all .3s ease;
    box-shadow:0 12px 30px rgba(8,19,33,.08);
}

.step:hover{
    transform:translateY(-8px);
    box-shadow:0 0 20px rgba(242,202,80,.15);
}

.step i{
    font-size:38px;
    color:#F2CA50;
    margin-bottom:18px;
}

.step h3{
    margin-bottom:12px;
    color:#fff;
}

.step p{
    color:#d5dce5;
}


/* ===== SERVICES ===== */

.services{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.services h2{
    color:#F2CA50;
    font-size:36px;
    margin-bottom:40px;
}

.services-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.service-card{
    background:#081321;
    border:1px solid rgba(242,202,80,.25);
    border-radius:12px;
    padding:25px 15px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#FFD700;
    box-shadow:0 18px 40px rgba(8,19,33,.15);
}

.service-card i{
    display:block;
    font-size:36px;
    color:#F2CA50;
    margin-bottom:15px;
}

.service-card h3{
    font-size:18px;
    color:#fff;
}

.price-boxes{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.price-box{
    width:280px;
    padding:28px;
    background:#081321;
    border:1px solid rgba(242,202,80,.25);
    border-radius:12px;
    transition:.3s;
}

.price-box:hover{
    transform:translateY(-6px);
    border-color:#FFD700;
}

.price-box h2{
    color:#F2CA50;
    margin-bottom:12px;
}

.desc{
    color:#b8c2cc;
    margin-bottom:15px;
}

.price{
    font-size:28px;
    font-weight:bold;
}


/* ===== CENÍK ===== */

.pricing{
    padding:80px 20px;
    background:#f7f8fb;
}

.pricing-container{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.pricing h2{
    color:#F2CA50;
    font-size:36px;
    margin-bottom:20px;
}

.pricing-subtitle{
    max-width:760px;
    margin:0 auto 30px;
    color:#555;
    line-height:1.8;
}

.pricing-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    margin-bottom:35px;

    background:linear-gradient(180deg,#0d2038,#081321);
    border:1px solid rgba(242,202,80,.3);
    border-radius:999px;

    color:#47e34a;
    font-weight:bold;

    box-shadow:0 10px 25px rgba(8,19,33,.08);
}

.pricing-badge i{
    font-size:18px;
}

.pricing-table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:14px;
    background:linear-gradient(180deg,#0d2038,#081321);
    margin-bottom:30px;
    box-shadow:0 15px 35px rgba(8,19,33,.12);
}

.highlight p{
    font-size:11px;
    color:#ffffff;
    margin-top:6px;
    font-weight:normal;
    line-height:1.4;
}

.pricing-table th{
    background:#10233d;
    color:#F2CA50;
    padding:18px;
    font-size:18px;
}

.pricing-table td{
    padding:18px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#fff;
}

.pricing-table tbody tr{
    transition:.3s;
}

.pricing-table tbody tr:hover{
    background:rgba(242,202,80,.08);
}

.pricing-table .highlight td:first-child{
    border-left:4px solid #F2CA50;
}

.pricing-table .highlight{
    background:#1d4f7a;
}

.pricing-table .highlight td{
    font-weight:bold;
    color:#ffffff;
    font-size:18px;
}

.pricing-table .highlight:hover{
    background:rgba(226,175,21,.28);
}

.pricing-note{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:20px;

    border:1px solid rgba(242,202,80,.25);
    border-left:5px solid #F2CA50;

    border-radius:12px;

    background:#fff;

    text-align:left;

    box-shadow:0 10px 25px rgba(8,19,33,.06);
}

.pricing-note i{
    color:#F2CA50;
    font-size:22px;
    margin-top:3px;
}

.pricing-note p{
    color:#555;
}


/* ===== KOMISNÍ PRODEJ ===== */

.komise{
    padding:90px 20px;
    background:#081321;
}

.komise-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;

    gap:70px;
}

.komise-image{
    flex:1;
    display:flex;
}

.komise-image img{
    width:100%;
    object-fit:cover;
    object-position:center top;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.komise-text{
    flex:1;
}

.komise-text h2{
    color:#F2CA50;
    font-size:42px;
    margin-bottom:25px;
}

.komise-text p{
    color:#d5dce5;
    line-height:1.9;
    margin-bottom:30px;
}

.komise-text ul{
    list-style:none;
    margin-bottom:40px;
}

.komise-text li{
    color:#fff;
    margin-bottom:18px;
    font-size:17px;
}

.komise-text li i{
    color:#F2CA50;
    margin-right:12px;
}

@media(max-width:900px){

    .komise-container{
        flex-direction:column;
    }

}


/* ===== ÚROKY ===== */

.uroky{
    padding:80px 20px;
    text-align:center;
    background:#ffffff;
}

.uroky h2{
    color:#F2CA50;
    margin-bottom:20px;
}

.uroky-note{
    display:flex;
    align-items:flex-start;
    gap:15px;
    max-width:800px;
    margin:0 auto 35px;

    padding:20px;

    border:1px solid rgba(242,202,80,.25);
    border-left:5px solid #F2CA50;

    border-radius:12px;

    background:#ffffff;

    text-align:left;

    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.uroky-note i{
    color:#F2CA50;
    font-size:22px;
    margin-top:3px;
}

.uroky-note p{
    color:#000000;
    line-height:1.8;
}

.uroky-table{
    width:90%;
    max-width:700px;
    margin:auto;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:14px;
    background:#10233d;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.uroky-table th{
    background:#163252;
    color:#F2CA50;
    padding:16px;
    font-size:18px;
}

.uroky-table td{
    padding:16px;
    color:#fff;
    border-top:1px solid rgba(255,255,255,.08);
}

.uroky-table tbody tr{
    transition:.3s;
}

.uroky-table tbody tr:hover{
    background:rgba(242,202,80,.08);
}


/* ===== OTEVÍRACÍ DOBA ===== */

.opening-hours{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.opening-table{
    width:90%;
    max-width:700px;
    margin:auto;
    border-collapse:collapse;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(8,19,33,.08);
}

.opening-table td{
    padding:16px;
    color:#222;
    border:1px solid #e9edf2;
}

.opening-table tr:nth-child(even){
    background:#f7f8fb;
}

.opening-table tr:hover{
    background:#eef5fb;
}


/* ===== FAQ ===== */

.faq{
    padding:80px 20px;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq h2{
    text-align:center;
    font-size:36px;
    color:#F2CA50;
    margin-bottom:40px;
    letter-spacing:1px;
}

.faq-item{
    margin-bottom:18px;

    background:linear-gradient(
        180deg,
        #1d4f7a 0%,
        #1a476e 100%
    );

    border:1px solid rgba(242,202,80,.30);
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    border-color:#FFD700;
    box-shadow:0 0 18px rgba(242,202,80,.15);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    position:relative;

    padding:22px 60px 22px 28px;

    color:#ffffff;
    font-size:19px;
    font-weight:bold;

    transition:.3s;
}

.faq-item summary:hover{
    color:#FFD700;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}


/* ===== FAQ ŠIPKA ===== */

.faq-item summary::after{
    content:"❯";

    position:absolute;

    right:28px;
    top:50%;

    transform:translateY(-50%) rotate(0deg);

    color:#F2CA50;

    font-size:22px;

    transition:transform .3s ease;
}

.faq-item[open] summary::after{
    transform:translateY(-50%) rotate(90deg);
}


/* ===== FAQ ODPOVĚĎ ===== */

.faq-item p{
    padding:0 28px 24px;

    color:#ffffff;

    line-height:1.8;
    font-size:16px;

    animation:faqFade .25s ease;
}

@keyframes faqFade{

    from{
        opacity:0;
        transform:translateY(-8px);
    }

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

}


/* ===== FAQ MOBIL ===== */

@media(max-width:768px){

    .faq h2{
        font-size:30px;
    }

    .faq-item summary{
        font-size:17px;
        padding:18px 50px 18px 20px;
    }

    .faq-item p{
        padding:0 20px 20px;
        font-size:15px;
    }

}


/* ===== FOOTER ===== */

.footer{
    margin-top:0;
    padding:50px 20px;
    text-align:center;
    background:#0e213a;
    border-top:3px solid #F2CA50;
}

.footer p{
    color:#d5dce5;
    margin-bottom:10px;
}

.footer a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#F2CA50;
}

.copyright{
    font-size:12px;
    color:#7f8b97;
    opacity:.8;
    margin-top:20px;
}


/* ===== FOOTER LINKS ===== */

.footer-links{
    margin:20px 0;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:12px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#b8c2cc;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFD700;
}

.footer-links span{
    color:#6f7b88;
}

@media(max-width:768px){

    .footer-links{
        gap:8px;
        font-size:13px;
    }

}


/* ===== RESPONSIVE ===== */

@media(max-width:992px){

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

    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }

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

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        padding:15px;
        gap:15px;
    }

    .nav-menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero h1{
        font-size:36px;
    }

    .about-features,
    .process-steps,
    .services-grid{
        grid-template-columns:1fr;
    }

    .logo img{
        transform:scale(1.8);
        margin-left:0;
    }

}

.pricing-table,
.uroky-table,
.opening-table{
    font-size:14px;
}


/* ===== PRÁVNÍ STRÁNKY ===== */

.legal-page{
    padding:80px 20px;
}

.legal-container{
    max-width:950px;
    margin:auto;
}

.legal-page h1{
    text-align:center;
    color:#F2CA50;
    font-size:42px;
    margin-bottom:12px;
}

.legal-date{
    text-align:center;
    color:#aeb8c4;
    margin-bottom:45px;
    font-size:15px;
}

.legal-section{
    background:linear-gradient(
        180deg,
        #11253c 0%,
        #0d1d31 100%
    );

    border:1px solid rgba(242,202,80,.25);
    border-radius:14px;

    padding:30px;
    margin-bottom:28px;

    transition:.3s;
}

.legal-section:hover{
    border-color:#FFD700;
    box-shadow:0 0 20px rgba(242,202,80,.12);
}

.legal-section h2{
    color:#F2CA50;
    margin-bottom:18px;
    font-size:24px;
}

.legal-section p{
    color:#d7dfe8;
    line-height:1.8;
    font-size:16px;
}

.legal-section strong{
    color:#ffffff;
}

@media(max-width:768px){

    .legal-page{
        padding:60px 18px;
    }

    .legal-page h1{
        font-size:32px;
    }

    .legal-section{
        padding:22px;
    }

    .legal-section h2{
        font-size:20px;
    }

}