/* ===================================
   HERO
=================================== */

.page-hero{

    height:500px;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(0,0,0,.70),
        rgba(0,0,0,.70)
    ),
    url("../HLAVNI/img/pozadi2.jpg");

    background-size:cover;
    background-position:center;
}

.page-hero-content{

    max-width:1400px;

    margin:0 auto;

    width:100%;

    padding:0 120px;

    color:white;
}

.page-hero h1{

    font-size:72px;

    margin-bottom:25px;
}

.page-hero p{

    max-width:700px;

    font-size:24px;

    line-height:1.7;

    color:#dbe2ea;
}

/* ===================================
   ÚVOD
=================================== */

.intro-section{

    background:#ffffff;

    padding:90px 60px;
}

.intro-content{

    max-width:1000px;

    margin:auto;

    text-align:center;
}

.intro-content h2{

    font-size:48px;

    color:#1c2430;

    margin-bottom:30px;
}

.intro-content p{

    font-size:22px;

    color:#5c6675;

    line-height:1.8;

    margin-bottom:15px;
}

/* ===================================
   SPOLEČNÉ NADPISY
=================================== */

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h2{

    font-size:50px;

    color:#1c2430;

    margin-bottom:15px;
}

.section-title p{

    font-size:22px;

    color:#5c6675;
}

/* ===================================
   KARTY
=================================== */

.hardware,
.software{

    padding:90px 60px;
}

.hardware{

    background:#f7f9fc;
}

.software{

    background:#ffffff;
}

.products-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;
}

.product-card{

    background:white;

    border:1px solid #cfd8e3;

    padding:45px;

    text-align:center;

    transition:.3s;
}

.product-card:hover{

    transform:translateY(-5px);

    border-color:#0066ff;

    box-shadow:
    0 0 15px rgba(0,102,255,.15);
}

.product-card img{

    width:150px;
    height:150px;

    object-fit:contain;

    margin-bottom:25px;
}

.product-card h3{

    font-size:30px;

    color:#1c2430;

    margin-bottom:15px;
}

.product-card p{

    font-size:20px;

    color:#5c6675;

    line-height:1.6;
}
.hero-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:240px;
    height:65px;

    margin-top:35px;

    background:#0066ff;

    color:#ffffff;

    text-decoration:none;

    font-size:20px;
    font-weight:700;

    border:2px solid #0066ff;

    transition:.3s;
}

.hero-btn:hover{

    background:transparent;

    color:#ffffff;

    transform:translateY(-1px);

    
}
/* ===================================
   POSTUP SERVISU
=================================== */

.steps{

    padding:90px 60px;

    background:#f7f9fc;
}

.steps-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.step-box{

    background:white;

    border:1px solid #cfd8e3;

    text-align:center;

    padding:40px;
}

.step-box span{

    display:block;

    font-size:60px;

    font-weight:700;

    color:#0066ff;

    margin-bottom:20px;
}

.step-box h3{

    font-size:28px;

    margin-bottom:15px;

    color:#1c2430;
}

.step-box p{

    font-size:18px;

    color:#5c6675;
}


.seo-section{
    background:#ffffff;
    padding:100px 20px;
}

.seo-content{
    max-width:1200px;
    margin:auto;
}

.seo-content h2{
    text-align:center;
    font-size:60px;
    color:#1c2430;
    margin-bottom:50px;
}

.seo-content p{
    font-size:22px;
    line-height:1.8;
    color:#5c6675;
    max-width:1000px;
    margin:auto;
    text-align:center;
}










.faq-section{
    background:#f7f9fc;
    padding:100px 20px;
}

.faq-container{
    max-width:1000px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid #d8dde5;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:none;
    border:none;

    padding:25px 30px;

    text-align:left;

    font-size:24px;
    font-weight:700;

    color:#1c2430;

    cursor:pointer;
}

.faq-question:hover{
    color:#0066ff;
}

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 30px;
}

.faq-answer p{
    padding-bottom:25px;

    font-size:18px;
    color:#5c6675;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:200px;
}


.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;
    cursor:pointer;
}

.arrow{
    font-size:16px;
    transition:0.3s;
}

.faq-item.active .arrow{
    transform:rotate(180deg);
}


.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

.faq-item.active .faq-answer{
    max-height:200px;
}




.repair-time .steps-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}


/* ===================================
   CTA
=================================== */

.cta-section{

    padding:100px 40px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #0066ff,
        #004dcc
    );

    color:white;
}

.cta-section h2{

    font-size:56px;

    margin-bottom:20px;
}

.cta-section p{

    font-size:24px;

    margin-bottom:40px;
}

.cta-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:260px;
    height:65px;

    background:white;

    color:#0066ff;

    text-decoration:none;

    font-size:22px;
    font-weight:700;

    transition:.3s;
}

.cta-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 20px rgba(0,0,0,.15);
}

