
:root {
    --primary-color: #a84814;
    --primary-hover: #89380c;
    --bg-light: #f8f8f8;
    --bg-white: #fff;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.st4-progress__bar {
    cursor: pointer;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}


.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}



.pidgotovka-hero {
    position: relative;
    min-height: 325px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.pidgotovka-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:black;
    opacity:0.6;
}

.pidgotovka-hero__content {
    position: relative;
    z-index: 2;
    width:100%;
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction:column;
}

.pidgotovka-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.pidgotovka-hero .hero-subtitle {
    font-size: 18зч;
    margin-bottom: 32px;
    max-width: 872px;
    text-align: center;
}



.pidgotovka-why {
    padding: 80px 0;
    background: var(--bg-white);
}

.pidgotovka-why .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.pidgotovka-why .section-content p{
    font-weight:500;
    font-size: 16px;
}
.pidgotovka-why p{
    text-align:center;
}

.pidgotovka-benefits {
    padding: 80px 0;

}

.pidgotovka-benefits .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: linear-gradient(360deg, #F6EBE6 0%, #FFFFFF 100%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px 0px #9797974D;
}


.benefit-card h3 {
   background: #A84714;
    color: white;
    font-family: 'Avanti';
    font-weight: 600;
    padding: 16px 10px;
    width: 100%;
    text-align: center;
}


.pidgotovka-quote {
    padding: 80px 0;
    background: var(--bg-white);
}

.quote-content {
    background:#EBD5C929;
    position: relative;
    padding: 60px;
    margin:0;
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.quote-icon-end {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.quote-content p {
    font-size: 30px;
    line-height: 120%;
    text-align: left;
    font-weight: 700;
    padding-inline: 30px;;
    position: relative;
    z-index: 1;
}

/* ===================================
   CTA Section
   =================================== */

.pidgotovka-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.pidgotovka-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.pidgotovka-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pidgotovka-hero .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .pidgotovka-hero {
        min-height: 325px;
    }

    .pidgotovka-hero .hero-title {
        font-size: 36px;
    }

    .pidgotovka-hero .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .quote-content p {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .pidgotovka-why,
    .pidgotovka-benefits,
    .pidgotovka-quote,
    .pidgotovka-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .pidgotovka-hero .hero-title {
        font-size: 24px;
    }

    .pidgotovka-hero .hero-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .quote-content {
        padding: 40px 20px;
    }

    .quote-content p {
        font-size: 18px;
    }

    .cta-content h2 {
        font-size: 26px;
    }
}


.pidgotovka-examples {
    padding: 80px 0;
    padding-bottom:0;
}

.pidgotovka-examples__header {
    text-align: center;
    margin-bottom: 24px;
}

.pidgotovka-examples__header .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.pidgotovka-examples__header .section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0 auto;
    line-height: 1.6;
}

.examples-note{
    margin-bottom:20px;
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.comparison-grid__item {
    position: relative;
    background: #fff;
    overflow: hidden;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.comparison-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: linear-gradient(135deg, #a84814 0%, #c45a1a 100%);
    padding: 12px 20px;
    text-align: center;
}

.comparison-badge span {
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.image-after {
    clip-path: inset(0 50% 0 0);
}


.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 15;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.slider-button::before,
.slider-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.slider-button::before {
    left: 12px;
    border-width: 8px 12px 8px 0;
    border-color: transparent #333 transparent transparent;
}

.slider-button::after {
    right: 12px;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #333;
}

/* Labels */
.label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(168, 72, 20, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

/* Price Badge */
.comparison-price {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}

.price-icon {
    font-size: 16px;
}

.price-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Examples Note */
.examples-note {
    text-align: center;
    margin-top: 40px;
}

.examples-note p {
    font-size: 16px;
    color: black;
    margin-bottom:40px;
    font-weight: 700;
}


@media (max-width: 1024px) {
    .comparison-grid {
        gap: 30px;
    }

    .pidgotovka-examples__header .section-title {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .pidgotovka-examples {
        padding: 60px 0;
    }

   
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pidgotovka-examples__header .section-title {
        font-size: 24px;
    }

    .pidgotovka-examples__header .section-subtitle {
        font-size: 14px;
    }

    .comparison-badge span {
        font-size: 11px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
    }

    .slider-button::before {
        left: 10px;
        border-width: 6px 10px 6px 0;
    }

    .slider-button::after {
        right: 10px;
        border-width: 6px 0 6px 10px;
    }

    .label {
        font-size: 12px;
        padding: 6px 12px;
        top: 15px;
    }

    .label-before {
        left: 15px;
    }

    .label-after {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .comparison-grid {
        gap: 20px;
    }

    .comparison-container {
        aspect-ratio: 4/3;
    }
}

/* ===================================
   Video Slider Section
   =================================== */

.pidgotovka-video {
    padding: 80px 0;
    background: #fff;
}

.pidgotovka-video .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

/* Video Slider Wrapper */
.video-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Swiper Container */
.video-swiper {
    overflow: visible;
    padding: 20px 0 60px;
}

.video-swiper .swiper-wrapper {
    align-items: stretch;
}

.video-swiper .swiper-slide {
    height: auto;
}


.video-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}


.video-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(135deg, #a84814 0%, #c45a1a 100%);
    padding: 10px 16px;
    text-align: center;
}

.video-badge span {
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    margin-top: 36px; /* Space for badge */
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Play Button */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Video Footer */
.video-footer {
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    margin-top: auto;
}

.video-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Navigation Buttons */
.video-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.video-slider-prev,
.video-slider-next {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a84814;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.video-slider-prev:hover,
.video-slider-next:hover {
    background: #a84814;
    color: white;
    transform: scale(1.1);
}

.video-slider-prev.swiper-button-disabled,
.video-slider-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.video-slider-prev {
    margin-left: -25px;
}

.video-slider-next {
    margin-right: -25px;
}

/* Pagination */
.video-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.video-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-slider-pagination .swiper-pagination-bullet-active {
    background: #a84814;
    width: 30px;
}



@media (max-width: 1200px) {
    .video-slider-nav {
        padding: 0 20px;
    }

    .video-slider-prev {
        margin-left: 0;
    }

    .video-slider-next {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .pidgotovka-video {
        padding: 60px 0;
    }

    .pidgotovka-video .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .video-swiper {
        padding: 15px 0 50px;
    }

    .video-slider-prev,
    .video-slider-next {
        width: 40px;
        height: 40px;
    }

    .video-slider-prev svg,
    .video-slider-next svg {
        width: 20px;
        height: 20px;
    }

    .video-play-button svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .pidgotovka-video .section-title {
        font-size: 26px;
    }

    .video-badge span {
        font-size: 10px;
    }

    .video-footer {
        padding: 12px 16px;
    }

    .video-label {
        font-size: 13px;
    }

    .video-slider-nav {
        display: none; 
    }
}

.header__main{
	position: relative !important;
}
.pidgotovka-video{
    position: relative;
}
.pidgotovka-video::before{
    content: '';
    background-color: #CCA27C;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 40%;

}

.hero-button{
        padding:16px 24px;
        background:rgba(168, 71, 20, 1);
        display:flex;
        gap:16px;
        align-items:center;
        font-size:16px;
        color:white;
          transition:all 0.3s ease;
        font-weight:700;
    }
    .hero-button:hover{
        background:white;
        color:rgba(168, 71, 20, 1);;
        transition:all 0.3s ease;
    }

      .hero-button:hover path{
        fill:rgba(168, 71, 20, 1);
    }
    
    @media(max-width:1024px){
        .pidgotovka-why .section-content p{
            font-size:14px;
        }
        .benefit-card h3{
        font-size:16px;
    }
    .comparison-price{
        justify-content:center;
    }
    }
    
    @media(max-width:1024px){
    .header__main{
        position:fixed !Important;
    }
    main{
        margin-top:80px !important;
    }
}


.st4-section{
    padding-bottom:60px;
}

.st4-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 1024px) { .st4-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .st4-grid { grid-template-columns: 1fr;gap:16px; } }


.st4-block {
    overflow: hidden;
    background: #a84814;
    display: flex;
    flex-direction: column;
    position: relative;
}
.st4-block__title {
    position: absolute;
    top: 40px; left: 0; right: 0;
    z-index: 20;
    text-align: center;
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
    margin: 0; padding: 0 10px;
}


.st4-progress {
    display: flex;
    gap: 4px;
    padding: 10px 10px 0;
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 20;
}
.st4-progress__bar {
    flex: 1; height: 3px;
    background: rgba(255,255,255,.3);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.st4-progress__bar.is-active::after {
    content: '';
    position: absolute; inset: 0; left: 0; top: 0; bottom: 0;
    width: 0;
    background: #fff;
    animation: st4Prog 5s linear forwards;
}
.st4-progress__bar.is-done { background: #fff; }
@keyframes st4Prog { to { width: 100%; } }


.st4-main {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}
.st4-slide {
    display: none;
    position: absolute; inset: 0;
}
.st4-slide.is-active { display: block; }
.st4-slide img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.st4-slide__link {
    display: block; position: relative;
    width: 100%; height: 100%;
}
.st4-slide__desc {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    margin: 0; padding: 28px 12px 12px;
    background: #a84814a3;
    font-size:14px;
    backdrop-filter:blur(14px);
    --webkit-backdrop-filter:blur(14px);
    color: #fff; font-size: .78rem; line-height: 1.4;
}

/* Play */
.st4-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,.88);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #9b4a1e;
    pointer-events: none;
    transition: transform .2s, background .2s;
}
.st4-slide:hover .st4-play {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}


.st4-nav {
    position: absolute; top: 20px; bottom: 0; width: 40%;
    background: transparent; border: none; cursor: pointer;
    color: #fff; font-size: 2rem;
    display: flex; align-items: center;
    opacity: 0; transition: opacity .2s; z-index: 15;
}
.st4-nav--prev { left: 0;  justify-content: flex-start; padding-left: 8px; }
.st4-nav--next { right: 0; justify-content: flex-end;   padding-right: 8px; }
.st4-main:hover .st4-nav { opacity: 1; }


.st4-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3px; padding: 5px;
  
}
.st4-thumb {
    position: relative; aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 5px; overflow: hidden;
    cursor: pointer; padding: 0; background: none;
    transition: border-color .2s;
}
.st4-thumb.is-active { border-color: #fff; }
.st4-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st4-thumb__play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.4); color: #fff; font-size: .65rem;
}

@media(max-width:1024px){
    .st4-main{
        aspect-ratio:4 / 6;
    }
}
.st4-block__desc{
    padding:12px 24px;
    color:white;
    min-height:200px;
}