/* ==========================================
   BLOG LIST PAGE
   ========================================== */

.blog-page {
    padding: 80px 0;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    margin-bottom: 64px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card__thumb {
    display: block;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}

.blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card__thumb img {
    transform: scale(1.04);
}

.blog-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card__meta {
    font-size: 13px;
    color: #888;
}

.blog-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.35;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card__title a:hover {
    color: #075175;
}

.blog-card__link {
    font-size: 14px;
    font-weight: 500;
    color: #075175;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.2s;
}

.blog-card__link:hover { opacity: 0.7; }

.pagination {
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #075175;
    color: #fff;
    border-color: #075175;
}

.pagination .page-numbers.dots {
    border: none;
    background: none;
}

@media (max-width: 900px) {
    .blog-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .blog-list { grid-template-columns: 1fr; }
    .blog-page { padding-top: 120px; }
}

/* ==========================================
   SINGLE POST
   ========================================== */

section.single-post {
    padding: 64px 0 80px;
}

.single-post__article,
.single-post .post-nav {
    max-width: 800px;
    margin-inline: auto;
}

.single-post__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
}

.single-post__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0 0 32px;
}

.single-post__content {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    color: #111;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.single-post__content p { margin: 0 0 1.25em; }

.single-post__content img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.single-post__content a {
    color: #075175;
    text-decoration: underline;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 800px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

.post-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #075175;
    text-decoration: none;
    transition: opacity 0.2s;
}

.post-nav a:hover { opacity: 0.7; }

.post-nav__next { text-align: right; margin-left: auto; }

/* ==========================================
   UTILITIES
   ========================================== */

.text-accent {
    color: #075175;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #5C6B72;
}

.section-label__dot {
    display: block;
    width: 10px;
    height: 10px;
    background: #075175;
    border-radius: 2px;
    flex-shrink: 0;
}

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

/* ==========================================
   SHARED SECTION TITLE STYLES
   ========================================== */

.about__title,
.advantages__title,
.reviews__title,
.for-whom__title,
.services__title,
.faq__title,
.process__title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 58px;
    line-height: 62px;
    letter-spacing: 0.02em;
}

.about {
    padding: 80px 0;
}

.about__title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin: 0 0 48px;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 360px;
    gap: 16px;
}

.about__card {
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.about__card--light {
    background: #fff;
}

.about__card--dark {
    background: #075175;
}

.about__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 48px;
    border-radius: 8px;
    flex-shrink: 0;
}

.about__card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
    color: #162B36;
    margin: 0 0 12px;
}

.about__card-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    color: rgba(22, 43, 54, 0.70);
    margin: auto 0 0;
}

.about__card--dark .about__card-title {
    color: #fff;
}

.about__card--dark .about__card-text {
    color: #F7F7F7;
}

.about__media {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .about__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about {
        padding: 48px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
    }

    .about__media {
        min-height: 240px;
    }
}

/* ==========================================
   ADVANTAGES SECTION
   ========================================== */

.advantages {
    padding: 80px 0;
}

.advantages__title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin: 0 0 48px;
}

.advantages__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 16px;
    align-items: stretch;
}

.advantages__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.advantages__card {
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.advantages__card--light {
    background: #fff;
}

.advantages__card--dark {
    background: #075175;
}

.advantages__card--dark .advantages__card-title {
    color: #4FC3F7;
}

.advantages__card--dark .advantages__card-text {
    color: rgba(255, 255, 255, 0.8);
}

.advantages__icon {
    margin-bottom: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.advantages__card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
    color: #162B36;
    margin: 0 0 12px;
}

.advantages__card-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    color: rgba(22, 43, 54, 0.70);
    margin: auto 0 0;
}

/* Quote card */
.advantages__quote {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.advantages__quote-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.advantages__quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 81, 117, 0.55) 0%, rgba(7, 81, 117, 0.8) 100%);
    z-index: 1;
}

.advantages__quote-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advantages__quote-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.advantages__quote-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.advantages__quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #075175;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s;
}

.advantages__quote-btn:hover {
    background: #f0f0f0;
}

@media (max-width: 1024px) {
    .advantages__layout {
        grid-template-columns: 1fr;
    }

    .advantages__quote {
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    .advantages {
        padding: 48px 0;
    }

    .advantages__title {
        margin-bottom: 28px;
    }

    .advantages__cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .advantages__card {
        padding: 24px;
    }

    .advantages__icon {
        margin-bottom: 28px;
    }

    .advantages__card-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .advantages__card-text {
        font-size: 15px;
        line-height: 20px;
    }

    .advantages__quote {
        min-height: 280px;
    }

    .advantages__quote-content {
        padding: 24px;
    }

    .advantages__quote-title {
        font-size: 22px;
    }

    .advantages__quote-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ==========================================
   CALCULATOR SECTION
   ========================================== */

.calc {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.calc__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 50, 75, 0.72);
    z-index: 0;
}

.calc__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding: 40px 0;
}

.calc__left {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
}

.calc__title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

.calc__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 480px;
}

/* Form panel */
.calc__form-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

.calc__step {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc__step[hidden] {
    display: none;
}

.calc__step-label {
    font-size: 14px;
    color: #FFFFFF99;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.calc__step-current {
    color: #FFFFFF;
    font-weight: 600;
}

.calc__block {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
}

.calc__block-title {
    font-size: 16px;
    font-weight: 600;
    color: #162B36;
    margin: 0 0 16px;
}

/* Type selector */
.calc__types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.calc__type {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    aspect-ratio: 4/3;
    display: block;
    background: #E8EFF3;
}

.calc__type:hover {
    transform: translateY(-1px);
}

.calc__type input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.calc__type img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.calc__type::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(53, 68, 76, 0.15) 0%, rgba(53, 68, 76, 0.55) 100%);
    pointer-events: none;
    transition: background 0.2s;
}

.calc__type-check {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F5A623;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.35);
}

.calc__type--selected {
    border-color: #F5A623;
}

.calc__type--selected::after {
    background: linear-gradient(180deg, rgba(53, 68, 76, 0.05) 0%, rgba(53, 68, 76, 0.35) 100%);
}

.calc__type--selected .calc__type-check {
    opacity: 1;
    transform: scale(1);
}

/* Input */
.calc__input {
    width: 100%;
    background: #F0F4F7;
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 16px;
    color: #162B36;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    transition: background 0.2s, box-shadow 0.2s;
}

.calc__input::placeholder {
    color: #9DB1BC;
    opacity: 1;
}

.calc__input:hover {
    background: #E8EFF3;
}

.calc__input:focus {
    background: #E1EAF0;
    box-shadow: 0 0 0 2px rgba(7, 81, 117, 0.15);
}

/* Region select — same look as inputs + custom chevron */
.calc__select-wrap {
    position: relative;
}

.calc__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    cursor: pointer;
    background-image: none;
}

.calc__select:invalid,
.calc__select:has(option[value=""]:checked) {
    color: #9DB1BC;
}

.calc__select-chevron {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #5C6B72;
    pointer-events: none;
    transition: transform 0.2s;
}

.calc__select:focus + .calc__select-chevron {
    transform: translateY(-50%) rotate(180deg);
    color: #075175;
}

/* Result row */
.calc__block--result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 18px 24px;
}

.calc__result-label {
    display: block;
    font-size: 13px;
    color: #5C6B72;
    margin-bottom: 4px;
    font-weight: 500;
}

.calc__result-value {
    font-size: 28px;
    font-weight: 700;
    color: #162B36;
    line-height: 1;
}

.calc__submit {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F5A623;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.25);
}

.calc__submit:hover {
    background: #e09410;
    transform: translateY(-1px);
}

.calc__block-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

.calc__block--form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc__phone-wrap {
    display: flex;
    align-items: center;
    background: #F0F4F7;
    border-radius: 10px;
    overflow: hidden;
}

.calc__phone-prefix {
    padding: 14px 12px 14px 16px;
    font-size: 16px;
    color: #075175;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.calc__input--phone {
    border-radius: 0;
    padding-left: 0;
    background: transparent;
}

.calc__textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.calc__send {
    width: 100%;
    background: #075175;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.calc__send:hover {
    background: #054f6e;
}

@media (max-width: 900px) {
    .calc__inner {
        grid-template-columns: 1fr;
        padding: 32px 0;
    }

    .calc__left {
        padding-top: 0;
    }

    .calc__form-wrap {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .calc {
        padding: 48px 0;
    }

    .calc__inner {
        gap: 28px;
        padding: 24px 0;
    }

    .calc__title {
        font-size: 30px;
    }

    .calc__subtitle {
        font-size: 14px;
    }

    .calc__step-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .calc__block {
        padding: 18px 18px;
        border-radius: 12px;
    }

    .calc__block-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .calc__types {
        gap: 8px;
    }

    .calc__type {
        aspect-ratio: 1;
    }

    .calc__input {
        font-size: 15px;
        padding: 12px 14px;
    }

    .calc__block--result {
        padding: 14px 14px 14px 20px;
    }

    .calc__result-value {
        font-size: 22px;
    }

    .calc__submit {
        width: 48px;
        height: 48px;
    }

    .calc__send {
        padding: 16px;
        font-size: 15px;
    }
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */

.reviews {
    padding: 80px 0;
}

.reviews__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.reviews__title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin: 0;
}

.reviews__nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.reviews__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #075175;
    background: transparent;
    color: #075175;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.reviews__nav-btn:hover {
    background: #075175;
    color: #fff;
}

/* Slider */
.reviews__slider-wrap {
    overflow: hidden;
}

.reviews__slider {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.reviews__card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviews__card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #E8EFF3;
}

.reviews__card-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.reviews__name {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reviews__stars {
    display: flex;
    gap: 2px;
}

.reviews__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(7, 81, 117, 0.08);
    color: #075175;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.reviews__text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.reviews__read-more {
    font-size: 14px;
    color: #075175;
    text-decoration: underline;
    text-underline-offset: 3px;
    width: fit-content;
}

.reviews__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.reviews__photo-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.reviews__photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reviews__photo-wrap--more img {
    filter: brightness(0.5);
}

.reviews__photo-count {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    pointer-events: none;
}

.reviews__model {
    font-size: 14px;
    color: #075175;
    margin: 0;
}

@media (max-width: 860px) {
    .reviews__card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .reviews {
        padding: 48px 0;
    }

    .reviews__header {
        margin-bottom: 28px;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 16px;
    }

    .reviews__nav-btn {
        width: 40px;
        height: 40px;
    }

    .reviews__card {
        flex: 0 0 100%;
        gap: 12px;
    }

    .reviews__name {
        font-size: 18px;
    }

    .reviews__photos {
        gap: 6px;
    }
}

/* ==========================================
   FOR WHOM SECTION
   ========================================== */

.for-whom {
    padding: 80px 0;
}

.for-whom__title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin: 0 0 40px;
}

.for-whom__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.for-whom__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.for-whom__card:hover {
    transform: translateY(-4px);
}

.for-whom__card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.for-whom__card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.for-whom__card-overlay {
    position: absolute;
    inset: 0;
    background: #35444C66;
    z-index: 1;
}

.for-whom__card-title {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: center;
}

.for-whom__card-text {
    position: relative;
    z-index: 2;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    text-align: center;
}

@media (max-width: 860px) {
    .for-whom__grid {
        grid-template-columns: 1fr;
    }

    .for-whom__card {
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .for-whom {
        padding: 48px 0;
    }

    .for-whom__title {
        margin-bottom: 24px;
    }

    .for-whom__grid {
        gap: 10px;
    }

    .for-whom__card {
        height: auto;
        min-height: 220px;
        padding: 20px;
    }

    .for-whom__card-title {
        font-size: 22px;
    }
}

/* ==========================================
   PRODUCTS SECTION (Canopies — "What do we offer?")
   ========================================== */

.products,
.works {
    padding: 80px 0;
}

.works .products__list {
    gap: 20px;
}

@media (max-width: 600px) {
    .works {
        padding: 32px 0 48px;
    }
}

.products__title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin: 0 0 24px;
}

.products__catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    margin-bottom: 40px;
    background: #075175;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.products__catalog-btn:hover {
    background: #053e58;
}

.products__group {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #162B36;
    margin: 48px 0 20px;
}

.products__group:first-of-type {
    margin-top: 0;
}

.products__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    min-height: 420px;
}

.product-card__info {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 6px;
}

.product-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #5C6B72;
}

.product-card__meta-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #075175;
    border-radius: 2px;
    flex-shrink: 0;
}

.product-card__code {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #162B36;
    letter-spacing: 0;
    line-height: 1.2;
}

.product-card__price {
    font-size: 18px;
    font-weight: 700;
    color: #075175;
    margin-bottom: 4px;
}

.product-card__text {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(22, 43, 54, 0.75);
    flex: 1;
}

.product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    background: #075175;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
    border: none;
    cursor: pointer;
}

.product-card__btn:hover {
    background: #053e58;
    transform: translateY(-1px);
}

.product-card__gallery {
    position: relative;
    overflow: hidden;
    background: #E8EFF3;
    min-height: 420px;
}

.product-card__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-card__slide--active {
    opacity: 1;
    pointer-events: auto;
}

.product-card__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #075175;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(7, 81, 117, 0.18);
}

.product-card__nav:hover {
    background: #fff;
    color: #053e58;
}

.product-card__nav--prev {
    left: 16px;
}

.product-card__nav--next {
    right: 16px;
}

@media (max-width: 860px) {
    .product-card {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .product-card__gallery {
        order: -1;
        aspect-ratio: 16/10;
        /* Cancel the desktop min-height: with aspect-ratio it would transfer
           into a fixed width and push the next-arrow off screen. */
        min-height: 0;
    }

    .product-card__info {
        padding: 24px 24px 28px;
    }
}

@media (max-width: 600px) {
    .products {
        padding: 48px 0;
    }

    .products__title {
        margin-bottom: 24px;
    }

    .products__list {
        gap: 14px;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-card__info {
        padding: 20px 20px 24px;
        gap: 10px;
    }

    .product-card__meta {
        gap: 12px;
        margin-bottom: 2px;
    }

    .product-card__meta-item {
        font-size: 13px;
    }

    .product-card__code {
        font-size: 18px;
    }

    .product-card__price {
        font-size: 16px;
    }

    .product-card__text {
        font-size: 14px;
        line-height: 1.5;
    }

    .product-card__btn {
        width: 100%;
        padding: 13px 22px;
        font-size: 14px;
    }

    .product-card__nav {
        width: 36px;
        height: 36px;
    }

    .product-card__nav--prev { left: 10px; }
    .product-card__nav--next { right: 10px; }
}

/* ==========================================
   CANOPIES LEAD-FORM ("Calculate the cost")
   ========================================== */

.canopy-calc {
    padding: 60px 0 80px;
}

.canopy-calc__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.canopy-calc__panel {
    background: #075175;
    border-radius: 20px;
    padding: 44px 44px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.canopy-calc__title {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

.canopy-calc__subtitle {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.canopy-calc__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.canopy-calc__result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 4px;
}

.canopy-calc__result[hidden] {
    display: none;
}

.canopy-calc__result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.canopy-calc__result-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.canopy-calc__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.canopy-calc__input {
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #fff;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: background 0.2s, border-color 0.2s;
}

.canopy-calc__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.canopy-calc__input:hover {
    background: rgba(255, 255, 255, 0.16);
}

.canopy-calc__input:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
}

.canopy-calc__phone {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}

.canopy-calc__phone:focus-within {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
}

.canopy-calc__phone-prefix {
    padding: 14px 8px 14px 16px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.canopy-calc__input--phone {
    background: transparent;
    border: none;
    padding-left: 0;
}

.canopy-calc__input--phone:hover,
.canopy-calc__input--phone:focus {
    background: transparent;
}

.canopy-calc__select-wrap {
    position: relative;
}

.canopy-calc__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    cursor: pointer;
}

.canopy-calc__select:has(option[value=""]:checked) {
    color: rgba(255, 255, 255, 0.6);
}

.canopy-calc__select option {
    color: #162B36;
    background: #fff;
}

.canopy-calc__chevron {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.75);
    pointer-events: none;
    transition: transform 0.2s;
}

.canopy-calc__select:focus + .canopy-calc__chevron {
    transform: translateY(-50%) rotate(180deg);
}

.canopy-calc__textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
    font-family: inherit;
}

.canopy-calc__submit {
    width: 100%;
    background: #fff;
    color: #075175;
    border: none;
    border-radius: 10px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 6px;
}

.canopy-calc__submit:hover {
    background: #F0F4F7;
    transform: translateY(-1px);
}

.canopy-calc__media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #E8EFF3;
    min-height: 0;
}

.canopy-calc__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .canopy-calc__grid {
        grid-template-columns: 1fr;
    }

    .canopy-calc__media {
        order: -1;
        aspect-ratio: 16/9;
        min-height: unset;
    }
}

@media (max-width: 600px) {
    .canopy-calc {
        padding: 48px 0;
    }

    .canopy-calc__panel {
        padding: 28px 22px 26px;
        border-radius: 16px;
    }

    .canopy-calc__row {
        grid-template-columns: 1fr;
    }

    .canopy-calc__title {
        font-size: 26px;
    }

    .canopy-calc__subtitle {
        font-size: 14px;
    }

    .canopy-calc__media {
        border-radius: 14px;
    }
}

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

.services {
    padding: 80px 0;
}

.services__title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin: 0 0 40px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.services__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    transition: transform 0.2s ease;
}

.services__card:hover {
    transform: translateY(-4px);
}

.services__card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.services__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}

.services__card-title {
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.services__card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.services__card-btn {
    position: relative;
    z-index: 3;
    align-self: flex-end;
    background: #fff;
    color: #075175;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.services__card-btn:hover {
    background: #f0f0f0;
}

@media (max-width: 640px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .services__card {
        height: 300px;
    }
}

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

.faq {
    padding: 80px 0;
}

.faq__title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin: 0 0 40px;
}

.faq__wrapper {
    background: #075175;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
}

.faq__image {
    position: relative;
    overflow: hidden;
}

.faq__image img {
    position: absolute;
    inset: 32px;
    width: calc(100% - 64px);
    height: calc(100% - 64px);
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.faq__list {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 500px;
}

.faq__item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq__item--open {
    background: rgba(255, 255, 255, 0.15);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.faq__question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

/* horizontal bar */
.faq__icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* vertical bar (the + part) */
.faq__icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* open state: hide vertical bar to show — */
.faq__item--open .faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.faq__answer p {
    margin: 0;
}

@media (max-width: 860px) {
    .faq__wrapper {
        grid-template-columns: 1fr;
    }

    .faq__image {
        max-height: 280px;
    }
}

/* ==========================================
   ORDERING PROCESS SECTION
   ========================================== */

.process {
    padding: 80px 0;
}

.process__title {
    margin: 0 0 40px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 700;
    color: #111111;
}

.process__board {
    background: #05597e;
    border-radius: 24px;
    padding: 36px;
    max-width: 1440px;
    margin: 0 auto;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.process__step {
    height: 276px;
    padding: 34px 34px 30px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.process__step-num {
    display: inline-block;
    margin-bottom: 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #075175;
}

.process__step-title {
    margin: 0 0 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    color: #075175;
}

.process__step-text {
    margin: 0;
    max-width: 360px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #075175;
}

.process__bottom {
    display: grid;
    /* Left column matches one card of the 3-column row above (2 gaps of 14px),
       so the photo's right edge lines up with the third card. */
    grid-template-columns: calc((100% - 28px) / 3) minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.process__manager {
    height: 400px;
    padding: 34px;
    background: #0b6f99;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
}

.process__manager-head {
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.process__manager-head::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.process__manager-profile {
    display: flex;
    align-items: center;
    gap: 18px;
}

.process__manager-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.process__manager-name {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.process__manager-role {
    font-size: 16px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

.process__manager-text {
    margin: 0 0 36px;
    font-size: 18px;
    line-height: 1.32;
    color: #ffffff;
    max-width: 300px;
}

.process__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 16px 24px;
    width: 100%;
    background: #f3f3f3;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    color: #05597e;
    white-space: nowrap;
    transition: 0.25s ease;
}

.process__btn:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.process__image {
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
}

.process__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet large — fluid columns, fixed heights removed */
@media (max-width: 1370px) {
    .process__board {
        max-height: unset;
    }

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

    .process__step {
        height: auto;
        min-height: 276px;
    }

    .process__bottom {
        align-items: stretch;
    }

    .process__manager {
        height: 400px;
        overflow: hidden;
    }

    .process__image {
        height: 400px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .process__board {
        padding: 20px;
        border-radius: 20px;
    }

    .process__step-num {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .process__step-title {
        font-size: 22px;
    }

    .process__step-text {
        font-size: 14px;
        line-height: 20px;
    }

    .process__step {
        min-height: 220px;
    }

    .process__step-num {
        margin-bottom: 40px;
    }

    .process__manager {
        min-height: 340px;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .process__manager-name {
        font-size: 18px;
    }

    .process__manager-role {
        font-size: 13px;
    }

    .process__manager-text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 24px;
    }

    .process__btn {
        font-size: 15px;
        min-height: 52px;
    }
}

/* Tablet small */
@media (max-width: 768px) {
    .process__image {
        display: none;
    }

    .process__bottom {
        grid-template-columns: 1fr;
    }

    .process__steps {
        grid-template-columns: 1fr;
    }

    .process__step {
        min-height: unset;
    }

    .process__step-num {
        margin-bottom: 24px;
    }

    .process__bottom {
        grid-template-columns: 1fr;
    }

    .process__manager {
        min-height: unset;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .process {
        padding: 56px 0;
    }

    .process__title {
        margin-bottom: 28px;
    }

    .process__board {
        padding: 14px;
        border-radius: 18px;
    }

    .process__steps,
    .process__bottom {
        gap: 10px;
    }

    .process__steps {
        margin-bottom: 10px;
    }

    .process__step,
    .process__manager,
    .process__image {
        border-radius: 14px;
    }

    .process__step {
        padding: 22px 20px;
        min-height: unset;
    }

    .process__step-title {
        font-size: 26px;
    }

    .process__step-text,
    .process__manager-text {
        font-size: 16px;
    }

    .process__manager {
        padding: 22px 20px;
    }

    .process__manager-head {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .process__manager-photo {
        width: 56px;
        height: 56px;
    }

    .process__manager-name {
        font-size: 18px;
    }

    .process__manager-role {
        font-size: 14px;
    }

    .process__btn {
        min-height: 56px;
        font-size: 16px;
    }
}

/* ==========================================
   BRANDING
   ========================================== */

.site-branding {
    flex-shrink: 0;
}

.site-branding__text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.custom-logo {
    max-height: 48px;
    width: auto;
}

.site-branding__logo {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-branding__logo {
        width: 64px;
        height: 64px;
    }
}

/* ==========================================
   NAVIGATION
   ========================================== */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.main-navigation__panel {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-navigation__panel-header,
.main-navigation__panel-contacts {
    display: none;
}

.main-navigation .menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-navigation .menu a {
    color: #fff;
    transition: opacity 0.2s;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
}

.main-navigation .menu a:hover {
    opacity: 0.8;
}

.main-navigation__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-navigation__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 24px;
    justify-content: center;
}

.main-navigation__toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
}

.main-navigation__close {
    display: none;
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */

.lang-switcher {
    position: relative;
}

.lang-switcher__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    transition: opacity 0.2s;
}

.lang-switcher__toggle:hover {
    opacity: 0.8;
}

.lang-switcher__chevron {
    transition: transform 0.2s ease;
}

.lang-switcher[data-open="true"] .lang-switcher__chevron {
    transform: rotate(180deg);
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 96px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 6px;
    margin: 0;
    list-style: none;
    z-index: 1000;
}

.lang-switcher__option {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #162B36;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.lang-switcher__option:hover {
    background: #F2F5F7;
    color: #075175;
}

.lang-switcher__option--active {
    background: #075175;
    color: #fff;
}

.lang-switcher__option--active:hover {
    background: #075175;
    color: #fff;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: #075175;
    color: #fff;
    border: none;
}

.btn--primary:hover {
    background: #153d5a;
}

.btn--lg {
    font-size: 17px;
    padding: 18px 32px;
    border-radius: 8px;
    width: 257px;
}

@media (max-width: 768px) {
    .btn--lg {
        width: 100%;
    }
}

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

.hero {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 50, 0.35);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 88px;
    padding-bottom: 32px;
}

.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 40px;
    max-width: 80%;
    gap: 0;
}

.hero__cta {
    align-self: flex-start;
}

.hero__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 36px;
}

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

.hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 32px;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
}

.hero__breadcrumb {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.hero__breadcrumb:hover {
    color: #fff;
}

.hero__breadcrumb--current {
    color: #fff;
    font-weight: 600;
}

.hero__breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

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

.hero__badges {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 10px 20px 10px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.hero__badge-icon {
    flex-shrink: 0;
    color: #fff;
}

.hero__badge span {
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
}

/* ==========================================
   HERO SCROLL BUTTON
   ========================================== */

.hero__scroll-btn {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.hero__scroll-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

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

.site-footer {
    padding: 60px 0 18px;
    background: #F7F7F7;
}

.footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 446px;
    gap: 28px;
    align-items: stretch;
}

.footer__content {
    background: #fff;
    border-radius: 12px;
    padding: 34px 34px 32px;
    min-height: 787px;
    display: flex;
    flex-direction: column;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 443px;
    gap: 36px;
    align-items: start;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 54px;
    min-width: 0;
}

.footer__logo-link {
    width: 96px;
    height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__logo-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer__info-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__info-label {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    color: #9ea8ae;
    font-weight: 400;
}

.footer__info-value {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    color: #193647;
    font-weight: 400;
}

.footer__map {
    height: 290px;
    border-radius: 16px;
    overflow: hidden;
    background: #ececec;
}

.footer__map img,
.footer__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
}

.footer__divider {
    height: 1px;
    background: #dddddd;
    margin: 30px 0 28px;
    flex-shrink: 0;
}

.footer__bottom {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 444px);
    gap: 36px;
    margin-bottom: 56px;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav-list a {
    text-decoration: none;
    font-size: 18px;
    line-height: 1.35;
    color: #193647;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer__nav-list a:hover {
    color: #075175;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer__phones {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__phone,
.footer__email {
    text-decoration: none;
    font-size: 24px;
    line-height: 1.3;
    color: #193647;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer__phone:hover,
.footer__email:hover {
    color: #075175;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #d6d6d6;
    background: #f9f9f9;
    color: #102f3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.footer__social-btn:hover {
    background: #ffffff;
    border-color: #bfc8cd;
    color: #075175;
}

.footer__legal {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__legal-link {
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    color: #9ea8ae;
    transition: color 0.2s ease;
}

.footer__legal-link:hover {
    color: #193647;
}

.footer__image {
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 787px;
}

.footer__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1399px) {
    .footer {
        grid-template-columns: 1fr 360px;
    }

    .footer__top {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 1199px) {
    .footer {
        grid-template-columns: 1fr;
    }

    .footer__content,
    .footer__image {
        min-height: auto;
    }

    .footer__image {
        height: 420px;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .footer__content {
        padding: 28px 24px;
    }

    .footer__top,
    .footer__bottom {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__brand {
        gap: 32px;
    }

    .footer__map {
        height: 240px;
    }

    .footer__bottom {
        margin-bottom: 36px;
    }

    .footer__info-value {
        font-size: 20px;
    }

    .footer__phone,
    .footer__email {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding-bottom: 12px;
    }

    .footer {
        gap: 16px;
    }

    .footer__content {
        border-radius: 16px;
        padding: 20px 16px;
    }

    .footer__image {
        border-radius: 16px;
        height: 280px;
    }

    .footer__logo-link {
        width: 72px;
        height: 72px;
    }

    .footer__map {
        height: 200px;
        border-radius: 12px;
    }

    .footer__divider {
        margin: 24px 0;
    }

    .footer__bottom {
        margin-bottom: 28px;
    }

    .footer__info-group {
        gap: 8px;
    }

    .footer__info-label,
    .footer__legal-link {
        font-size: 13px;
    }

    .footer__info-value {
        font-size: 18px;
    }

    .footer__nav-list a {
        font-size: 18px;
    }

    .footer__phone,
    .footer__email {
        font-size: 18px;
    }

    .footer__social-btn {
        width: 46px;
        height: 46px;
    }

    .footer__legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

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

@media (max-width: 991px) {
    .main-navigation {
        gap: 0;
    }

    .main-navigation__toggle {
        display: flex;
        order: 3;
    }

    .main-navigation__toggle span {
        background: #fff;
    }

    /* Full-screen overlay panel */
    .main-navigation__panel {
        position: fixed;
        inset: 0;
        z-index: 1000;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 20px 28px 32px;
        background: #075175;
        overflow-y: auto;
        display: none;
    }

    .main-navigation--open .main-navigation__panel {
        display: flex;
    }

    .main-navigation__panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 36px;
    }

    .main-navigation__panel-logo {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
    }

    .main-navigation__panel-logo img {
        width: 56px;
        height: 56px;
        object-fit: contain;
    }

    .main-navigation__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 0;
    }

    /* Reset menu inside the overlay */
    .main-navigation .menu {
        position: static;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        max-height: none;
        overflow: visible;
    }

    .main-navigation .menu li {
        padding: 0 0 28px;
        border-bottom: none;
    }

    .main-navigation .menu li:last-child {
        padding-bottom: 28px;
    }

    .main-navigation .menu a {
        display: block;
        font-size: 22px;
        font-weight: 500;
        line-height: 1.2;
        color: #fff;
    }

    /* Contacts inside the overlay */
    .main-navigation__panel-contacts {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .main-navigation__panel-contact {
        font-size: 18px;
        line-height: 1.3;
        color: #fff;
        text-decoration: none;
    }

    /* Actions inside the overlay: only lang switcher, CTA hidden */
    .main-navigation__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-top: 28px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .main-navigation__cta {
        display: none;
    }

    .lang-switcher__toggle {
        font-size: 17px;
        padding: 0;
    }

    .lang-switcher__menu {
        right: auto;
        left: 0;
    }

    body.has-mobile-nav {
        overflow: hidden;
    }

    .hero__badges {
        flex-wrap: wrap;
    }

    .site-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__container {
        padding-top: 96px;
        padding-bottom: 28px;
        gap: 24px;
    }

    .hero__content {
        display: contents;
    }

    .hero__text {
        order: 1;
    }

    .hero__badges {
        order: 2;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0;
        gap: 10px;
    }

    .hero__badge {
        width: 100%;
        justify-content: flex-start;
    }

    .hero__cta {
        order: 3;
        align-self: stretch;
        margin-bottom: 16px;
    }

    .hero__scroll-btn {
        display: none;
    }

    .hero__breadcrumbs {
        padding-top: 16px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .hero__breadcrumb,
    .hero__breadcrumb-sep {
        font-size: 14px;
    }

    .hero__subtitle {
        font-size: 15px;
        margin-bottom: 0;
    }

    .main-navigation__actions .btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* ==========================================
   PHONE INPUT (country picker + mask)
   ========================================== */

.phone-input {
    position: relative;
    overflow: visible;
}

.phone-input__field {
    flex: 1;
    min-width: 0;
}

.phone-input__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    line-height: 1;
}

.phone-input__trigger:focus {
    outline: none;
}

.phone-input__flag {
    font-size: 18px;
    line-height: 1;
}

.phone-input__code {
    font-weight: 500;
}

.phone-input__chevron {
    opacity: 0.7;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.phone-input--open .phone-input__chevron {
    transform: rotate(180deg);
}

.phone-input__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 50;
    width: 280px;
    max-height: 280px;
    overflow-y: auto;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    color: #162B36;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.phone-input__menu[hidden] {
    display: none;
}

.phone-input__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.phone-input__option:hover,
.phone-input__option:focus {
    background: #F0F4F7;
    outline: none;
}

.phone-input__option--active {
    background: #E8EFF3;
    font-weight: 600;
}

.phone-input__option-name {
    flex: 1;
    font-size: 14px;
}

.phone-input__option-code {
    color: #6B7B85;
    font-size: 13px;
}

/* ==========================================
   CONTACTS PAGE
   ========================================== */

.contacts-section {
    padding: 60px 0 80px;
}

.contacts-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.contacts-section__panel {
    background: #075175;
    border-radius: 20px;
    padding: 40px 44px;
    color: #fff;
}

.contacts-section__panel--info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.contacts-section__title {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

.contacts-section__subtitle {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.contacts-section__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts-section__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contacts-section__input {
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #fff;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: background 0.2s, border-color 0.2s;
}

.contacts-section__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.contacts-section__input:hover {
    background: rgba(255, 255, 255, 0.16);
}

.contacts-section__input:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
}

.contacts-section__phone {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
}

.contacts-section__phone:focus-within {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
}

.contacts-section__phone-prefix {
    padding: 14px 8px 14px 16px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.contacts-section__input--phone {
    background: transparent;
    border: none;
    padding-left: 0;
}

.contacts-section__input--phone:hover,
.contacts-section__input--phone:focus {
    background: transparent;
}

.contacts-section__textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.5;
    font-family: inherit;
}

.contacts-section__submit {
    width: 100%;
    background: #fff;
    color: #075175;
    border: none;
    border-radius: 10px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}

.contacts-section__submit:hover {
    background: #F0F4F7;
    transform: translateY(-1px);
}

.contacts-section__info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
}

.contacts-section__info-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.contacts-section__info-group--email {
    grid-column: 1 / -1;
}

.contacts-section__info-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.contacts-section__info-value {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    word-break: break-word;
}

.contacts-section__info-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
    transition: color 0.2s;
}

.contacts-section__info-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

.contacts-section__social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts-section__social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contacts-section__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #075175;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.contacts-section__social-btn:hover {
    background: #F0F4F7;
    transform: translateY(-1px);
}

.contacts-section__map {
    margin-top: 24px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    aspect-ratio: 21/9;
}

.contacts-section__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .contacts-section__grid {
        grid-template-columns: 1fr;
    }

    .contacts-section__panel {
        padding: 32px 28px;
    }
}

@media (max-width: 600px) {
    .contacts-section {
        padding: 32px 0 48px;
    }

    .contacts-section__panel {
        padding: 26px 22px;
        border-radius: 16px;
    }

    .contacts-section__row {
        grid-template-columns: 1fr;
    }

    .contacts-section__info-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contacts-section__info-group--email {
        grid-column: auto;
    }

    .contacts-section__social-row {
        grid-template-columns: 1fr 1fr;
    }

    .contacts-section__map {
        aspect-ratio: 4/3;
        border-radius: 16px;
    }
}

/* Legal modals (privacy policy / terms of use) */
.legal-modal[hidden] {
    display: none;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.legal-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 34, 45, 0.6);
}

.legal-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: min(84vh, 900px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(15, 34, 45, 0.35);
}

.legal-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef2f4;
    color: #193647;
    transition: background 0.2s ease, color 0.2s ease;
}

.legal-modal__close:hover {
    background: #193647;
    color: #ffffff;
}

.legal-modal__body {
    overflow-y: auto;
    padding: 36px 40px 40px;
    color: #2b3f4a;
    font-size: 15px;
    line-height: 1.6;
}

.legal-modal__title {
    margin: 0 48px 18px 0;
    font-size: 26px;
    line-height: 1.25;
    color: #193647;
}

.legal-modal__body h3 {
    margin: 26px 0 10px;
    font-size: 17px;
    line-height: 1.3;
    color: #193647;
}

.legal-modal__body p {
    margin: 0 0 12px;
}

.legal-modal__body ul {
    margin: 0 0 12px;
    padding-left: 22px;
    list-style: disc;
}

.legal-modal__body li {
    margin-bottom: 6px;
}

.legal-modal__body a {
    color: #075175;
    text-decoration: underline;
}

.legal-modal__updated {
    margin-top: 24px;
    color: #9ea8ae;
    font-size: 13px;
}

body.has-legal-modal {
    overflow: hidden;
}

@media (max-width: 640px) {
    .legal-modal {
        padding: 12px;
    }

    .legal-modal__dialog {
        max-height: 92vh;
        border-radius: 12px;
    }

    .legal-modal__body {
        padding: 26px 20px 28px;
        font-size: 14px;
    }

    .legal-modal__title {
        font-size: 21px;
    }
}

/* Cookie consent banner */
.cookie-banner[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 900;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: min(560px, calc(100vw - 48px));
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e3e9ec;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(15, 34, 45, 0.22);
    animation: cookie-banner-in 0.35s ease both;
}

@keyframes cookie-banner-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eef4f7;
    color: #075175;
}

.cookie-banner__content {
    min-width: 0;
}

.cookie-banner__title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #193647;
}

.cookie-banner__text {
    margin: 0 0 14px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #5c6b74;
}

.cookie-banner__link {
    color: #075175;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: #193647;
}

.cookie-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-size: 14px;
    padding: 11px 22px;
}

.cookie-banner__btn--ghost {
    background: transparent;
    border: 1px solid #d5dde1;
    color: #193647;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__btn--ghost:hover {
    background: #eef2f4;
    border-color: #bfc8cd;
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        flex-wrap: wrap;
        padding: 18px;
        gap: 12px;
    }

    .cookie-banner__icon {
        width: 40px;
        height: 40px;
    }

    .cookie-banner__content {
        flex: 1 1 calc(100% - 52px);
    }

    .cookie-banner__actions {
        flex-direction: row;
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
    }
}

/* Cookie preferences modal */
.legal-modal__dialog--narrow {
    max-width: 520px;
}

.cookie-banner__settings {
    font-size: 13.5px;
    color: #5c6b74;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-banner__settings:hover {
    color: #193647;
}

.cookie-prefs__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #e3e9ec;
}

.cookie-prefs__name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #193647;
}

.cookie-prefs__desc {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: #5c6b74;
}

.cookie-switch {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 28px;
    cursor: pointer;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch__slider {
    position: absolute;
    inset: 0;
    background: #d5dde1;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.cookie-switch__slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(15, 34, 45, 0.25);
    transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
    background: #075175;
}

.cookie-switch input:checked + .cookie-switch__slider::before {
    transform: translateX(20px);
}

.cookie-switch--locked {
    cursor: default;
    opacity: 0.6;
}

.cookie-prefs__save {
    margin-top: 22px;
    width: 100%;
}

/* Push-style form notification (toast) */
.pt-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(420px, calc(100vw - 48px));
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #e3e9ec;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(15, 34, 45, 0.25);
    cursor: pointer;
    animation: pt-toast-in 0.35s ease both;
}

@keyframes pt-toast-in {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pt-toast--hide {
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.pt-toast__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.pt-toast--success .pt-toast__icon {
    background: #e7f4ec;
    color: #1e7d43;
}

.pt-toast--error .pt-toast__icon {
    background: #fdecec;
    color: #c0392b;
}

.pt-toast__text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #193647;
}

@media (max-width: 640px) {
    .pt-toast {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
    }
}
