.breadcrumbs {
    font-size: 13px;
    padding: 20px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: black;
}

.breadcrumbs span {
    color: #999;
}

.breadcrumbs-razdelitel {
    margin: 0 5px;
}

.container-bread {
    background:#f1f1f1;
    max-width: 1920px;
    margin: auto;
}

@media (min-width: 768px) {
    .breadcrumbs {
        font-size: 15px;
        max-width: 1400px;
        margin: auto;
        padding: 20px 40px 0 40px;
    }
}


/* HERO SECTION */
.hero {
    position:relative;
    width:100%;
    height:var(--hero-height,600px);
    max-width:1920px;
    margin:0 auto;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    padding:0 16px;
}

.hero-bg {
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-bg img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.hero-inner {
    position:relative;
    z-index:2;
    width:100%;
    max-width:1320px;
    margin:0 auto;
}

.hero-content {
    max-width:100%;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    margin:32px 0;
}

.hero-title {
    font-size:1.8rem;
    font-weight:400;
    margin:0;
}

.hero-subtitle {
    font-size:1rem;
    line-height:1.7;
    color:#e6e6e6;
    margin:0;
}

.hero-cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    background:#c00;
    color:#fff;
    border-radius:20px;
    padding:12px 20px;
    text-decoration:none;
    font-weight:700;
    font-size: 16px;
    transition:background .25s, color .25s, transform .25s;
}

.hero-cta:hover {
    filter:brightness(.96);
}

@media (min-width:381px) {
    .hero-cta {
        padding:12px 28px;
        font-size:16px;
    }
}

@media (min-width:769px) {
    .hero {
        height:var(--hero-height,80vh);
        padding:0 20px;
    }
    .hero-title {
        font-size:2.2rem;
    }
    .hero-subtitle {
        font-size:1.05rem;
    }
    .hero-content {
        max-width:520px;
        margin:40px 0;
    }
}

@media (min-width:1025px) {
    .hero {
        padding: 0 20px;
    }

}
    /* TEXT */
    .options__container {
        max-width:1320px;
        margin:0 auto;
        padding:0 20px;
    }

    .options__intro {
        max-width:1000px;
        margin:0 auto;

        text-align:center;
        padding:20px 0 30px;
        color:#6b7280;
        line-height:1.7;
        font-size: 16px;
    }

    @media (min-width:701px) {
        .options__container {
            padding:0 40px;
        }
        .options__intro {
            margin-bottom:0;
            font-size: 16px;
        }
    }



/* Benefits */
.container { max-width:1400px; margin:0 auto; padding: 60px 20px 0; }
.section-title { font-size: 28px; font-weight:400; text-align:center; margin-bottom:40px; }
.benefits {  background:#f4f4f4; max-width: 1920px; margin: auto; }

.benefit__grid { display:grid;  }
.benefit-item {  display: flex; padding-bottom: 20px; max-width: 300px; margin: auto; flex-direction: column; align-items: center;justify-content: flex-start; text-align: center;}
@media(min-width: 768px) {
    .benefits__grid {   display:grid;  grid-template-columns:repeat(3,1fr); gap:40px; text-align:center; }
    .benefit-item {padding-bottom: 0;}
    .container {padding: 40px 40px 20px}
    .section-title { font-size: 32px; margin-bottom:40px;}

}

.benefit-item svg {
    height: 80px;
}

.benefit-item {  display: flex; flex-direction: column; align-items: center;justify-content: flex-start; text-align: center;}
.benefit-item h3 { font-size:1.1rem; font-weight:600; margin-bottom:8px; }
.benefit-item p { font-size:0.95rem; color:#333; line-height:1.6; max-width: 350px; }


/* How-to  */
.howto {
    padding: 80px 20px;
    background:#f4f4f4;
    max-width: 1920px;
    margin: auto;
}

.howto__inner {
    display: grid;
    max-width: 1320px;
    background: #fff;
    margin: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    align-items: center;
    border-radius:0  0 10px  10px;
}

.howto__image img {
    width: 100%;
    border-radius: 10px 10px 0 0 ;
    display: block;
}

.howto_a {
    display: block;
    margin-bottom: 15px;
}

.howto__text {
    padding: 20px 20px 40px ;
}

.howto__text h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.howto__text h4 {
    font-size: 1.2rem;
}

.howto__text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.howto__text ul {
    margin-top: 16px;
    padding-left: 20px;
    list-style: disc;
    list-style-position: outside;
    display: block;
    text-align: left;
}

.howto__text li {
    margin-top: 16px;


}

.howto__text a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

@media (min-width: 768px) {
    .howto {
        padding: 80px 40px;
    }

    .howto__text h3 {
        font-size: 28px;
    }
}
@media (min-width: 1025px) {

    .howto__inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
    .howto__image img {
        border-radius: 10px 0 0 10px;
    }

    .howto__inner {
        border-radius: 0 10px  10px 0;
    }

    .howto__text ul {
        text-align: left;
    }
}

/* CONTACT / FORM BLOCK */
.contact-section{
    padding:80px 20px 0;
    background:#ffffff;
}

.contact-wrap{
    max-width:1320px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    align-items:start;
}

.contact-text p {
    font-size: 18px;

}
.contact-text li {
    font-size: 18px;

}

.contact-title{
    margin:0 0 14px;
    font-size:28px;
    line-height:1.2;
    font-weight:400;
    letter-spacing:.2px;
}

.contact-lead{
    margin:0 0 10px;
    color:#374151;
}


.contact-bullets{
    list-style:none;
    padding:0;
    margin:14px 0 0;
}

.contact-bullets li{
    position:relative;
    padding-left:28px;
    margin:10px 0;
    color:#1f2937;
}

.contact-bullets li::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:22px;
    border-radius:50%;
    background:#d51e2b;
    -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/16px 16px no-repeat;
    mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/16px 16px no-repeat;
}

.form{
    max-width:520px;
    margin-left:0;
}

.form__grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.form__row--full{
    grid-column:1 / -1;
}

.input,
.textarea{
    width:100%;
    border:1px solid #e5e7eb;
    background:#f4f4f4;
    padding:14px 16px;
    border-radius:14px;
    font-size:15px;
    color:#0f172a;
    outline:none;
    transition:border-color .2s, box-shadow .2s;
}

.textarea{
    min-height:120px;
    resize:vertical;
}

.input:focus,
.textarea:focus{
    border-color:#d1d5db;
    box-shadow:0 0 0 4px rgba(213,30,43,.12);
}

.form__note{
    margin:6px 0 0;
    font-size:12.5px;
    color:#6b7280;
}

p.contact-label{
    color:#c00;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:8px;
    font-size:0.95rem;
    letter-spacing:0.3px;
}

.form__submit{
    margin-top:12px;
    display:flex;
    justify-content:flex-start;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:50px;
    padding:0 28px;
    border:0;
    font-weight:700;
    border-radius:999px;
    cursor:pointer;
    transition:transform .05s ease, filter .2s ease;
}

.btn--red{
    font-size: 16px;
    background:#c00;
    color:#ffffff;
}

.btn--red:hover{
    filter:brightness(.96);
}

.btn--red:active{
    transform:translateY(1px);
}

@media (min-width:561px){
    .form__grid{
        grid-template-columns:1fr 1fr;
    }
}
@media (min-width:768px) {
    .contact-section{
        padding:80px 40px;
    }
}
@media (min-width:1101px){

    .contact-wrap{
        grid-template-columns:1fr 1fr;
        gap:80px;
    }
    .form{
        margin-left:auto;
    }
    .contact-title{
        font-size:32px;
    }
}

/* Form message styles */
.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
    display: flex;
    align-items: center;
}

.form-message--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Smooth transition for messages */
.form-message {
    transition: opacity 0.3s ease-out;
}