/* ============================================================
   SHARED — przyciski i badge (używane we wszystkich blokach)
   ============================================================ */

.hbBtnLight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(150deg, rgb(217,176,106), rgb(185,146,79));
    color: rgb(18,16,11);
/*     font-family: var(--txtHeader); */
    font-weight: 700;
    font-size: 18px;
    padding: 10px 50px;
    border-radius: 10px;
    box-shadow: rgba(201,161,95,.32) 0px 8px 26px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.hbBtnLight:hover { opacity: .85; color: rgb(18,16,11); }

.hbBtnGhost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
/*     font-family: var(--txtHeader); */
    font-weight: 700;
    font-size: 18px;
    padding: 10px 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    cursor: pointer;
     transition: all 0.3s ease-out;
}
.hbBtnGhost:hover { background: rgba(255,255,255,.1); color: #fff; }

.hbBadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,161,95,.08);
    border: 1px solid rgba(201,161,95,.3);
    border-radius: 100px;
    padding: 7px 14px;
    font-family: var(--txt);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgb(201,161,95);
    max-width: max-content;
}
.hbBadge__line {
    display: inline-block;
    width: 16px;
    height: 1px;
    background: rgb(201,161,95);
    flex-shrink: 0;
}


/* ============================================================
   BLOCK: about-start
   ============================================================ */

.aboutStart {
    background: transparent;
}

.aboutStart__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-family: var(--txt);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgb(201,161,95);
    padding: 7px 14px;
    border: 1px solid rgba(201,161,95,.3);
    border-radius: 100px;
    background: rgba(201,161,95,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 16px;
}

.aboutStart__label h6 {
    margin: 0;
    background: transparent !important;
}

.aboutStart__dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: rgb(201,161,95);
    display: inline-block;
}

.aboutStart__heading {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.25;
    font-weight: 400;
    color: #fff;
}

.aboutStart__heading--dark {
    color: #fff;
    font-weight: 500;
}

.aboutStart__heading--light {
    color: rgba(232,226,217,.7);
    font-weight: 400;
}

.aboutStart__statsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.aboutStart__statNumber {
    font-family: var(--txtHeader);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.aboutStart__statLabel {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.4);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media screen and (max-width: 992px) {
    .aboutStart__statsGrid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
        padding-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .aboutStart__statNumber { text-align: center; }
    .aboutStart__statLabel  { text-align: center; }
    .aboutStart__statsGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 576px) {
    .aboutStart__statsGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .aboutStart__label { padding-top: 0; }
}


/* ============================================================
   BLOCK: columns-good
   ============================================================ */

.columnsGood {
    background: transparent;
}

.columnsGood__label {
    font-family: var(--txt);
    font-size: 12px;
    font-weight: 400;
    color: rgba(232,226,217,.4);
    letter-spacing: 0.05em;
}

.columnsGood__headingWrap {
    max-width: 65%;
    font-family: var(--txtHeader);
    font-size: clamp(24px, 2.8vw, 42px);
    line-height: 1.25;
    font-weight: 400;
}

.columnsGood__heading--dark {
    color: #fff;
    font-weight: 500;
}

.columnsGood__heading--light {
    color: rgba(232,226,217,.3);
    font-weight: 400;
}

.columnsGood__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.columnsGood__iconWrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.columnsGood__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

.columnsGood__title {
    font-family: var(--txtHeader);
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.columnsGood__desc {
    font-family: var(--txt);
    font-size: 13px;
    color: rgba(232,226,217,.55);
    line-height: 1.6;
    font-weight: 400;
}

.columnsGood__desc p {
    font-family: var(--txt);
    color: rgba(232,226,217,.55);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .columnsGood__headingWrap { max-width: 100%; }
    .columnsGood__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media screen and (max-width: 576px) {
    .columnsGood__grid { grid-template-columns: 1fr; gap: 25px; }
}


/* ============================================================
   BLOCK: all-main
   ============================================================ */

.allMain__sectionLabel {
    font-family: var(--txt);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232,226,217,.4);
}

/* ----- 1. HERO ----- */
.allMain__hero {
    padding: 120px 0 80px;
    background: #0a0b0d;
}

.allMain__hero--hasBg {
    padding: 140px 0 100px;
    background-color: #0a0b0d;
}

.allMain__heroDark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

.allMain__heroTagline {
    font-family: var(--txt);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232,226,217,.4);
    margin-bottom: 20px;
    font-weight: 400;
}

.allMain__heroH1 {
    font-family: var(--txtHeader);
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    max-width: 800px;
    margin-bottom: 20px;
}

.allMain__heroDesc {
    font-family: var(--txt);
    font-size: 17px;
    color: rgba(232,226,217,.6);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 35px;
    font-weight: 400;
}

.allMain__heroBtns { margin-bottom: 40px; }

.allMain__heroBullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.allMain__heroBullet {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.6);
    padding-left: 18px;
    position: relative;
}

.allMain__heroBullet::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(201,161,95);
    font-weight: 700;
    font-size: 12px;
}

/* ----- 2. O NAS ----- */
.allMain__aboutH2 {
    font-family: var(--txtHeader);
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.25;
    font-weight: 600;
    color: #fff;
}

.allMain__aboutDesc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
    line-height: 1.7;
}

.allMain__aboutStat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.allMain__aboutStatNum {
    font-family: var(--txtHeader);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.allMain__aboutStatLabel {
    font-family: var(--txt);
    font-size: 13px;
    color: rgba(232,226,217,.4);
    font-weight: 400;
}

.allMain__aboutImg {
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* ----- 3. USŁUGI ----- */
.allMain__servicesDesc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
}

.allMain__servicesGrid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.allMain__serviceItem {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.allMain__serviceItem:nth-child(even) { direction: rtl; }
.allMain__serviceItem:nth-child(even) > * { direction: ltr; }

.allMain__serviceImgWrap {
    overflow: hidden;
    border-radius: 10px;
}

.allMain__serviceImg {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.allMain__serviceImgWrap:hover .allMain__serviceImg { transform: scale(1.03); }

.allMain__serviceH3 {
    font-family: var(--txtHeader);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
}

.allMain__serviceDesc p {
    font-family: var(--txt);
    font-size: 15px;
    color: rgba(232,226,217,.6);
    line-height: 1.7;
}

/* ----- 4. REALIZACJE ----- */
.allMain__portfolioDesc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
}

.allMain__portfolioImgWrap {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.allMain__portfolioImg {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.allMain__portfolioImgWrap:hover .allMain__portfolioImg { transform: scale(1.04); }

.allMain__portfolioCat {
    font-family: var(--txt);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(232,226,217,.4);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.allMain__portfolioH4 {
    font-family: var(--txtHeader);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

/* ----- 5. DLACZEGO WARTO ----- */
.allMain__whyGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.allMain__whyItem {
    padding-top: 25px;
    border-top: 2px solid rgba(201,161,95,.4);
}

.allMain__whyDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(201,161,95);
    margin-bottom: 15px;
}

.allMain__whyH3 {
    font-family: var(--txtHeader);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.allMain__whyDesc p {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.6);
    line-height: 1.65;
}

/* ----- 6. ETAPY ----- */
.allMain__stepsDesc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
}

.allMain__stepsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.allMain__stepNum {
    font-family: var(--txtHeader);
    font-size: 42px;
    font-weight: 700;
    color: rgba(201,161,95,.2);
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.allMain__stepH4 {
    font-family: var(--txtHeader);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.allMain__stepDesc p {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.6);
    line-height: 1.65;
}

/* ----- 7. OPINIE ----- */
.allMain__reviewItem {
    background: linear-gradient(160deg, rgba(201,161,95,.16), rgba(20,21,24,.4));
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
}

.allMain__reviewQuote {
    font-size: 60px;
    line-height: 0.8;
    color: rgba(201,161,95,.25);
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.allMain__reviewText p {
    font-family: var(--txt);
    font-size: 15px;
    color: rgba(232,226,217,.7);
    line-height: 1.7;
    font-style: italic;
}

.allMain__reviewInitial {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(201,161,95,.2);
    border: 1px solid rgba(201,161,95,.4);
    color: rgb(201,161,95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--txtHeader);
    font-size: 16px;
    font-weight: 700;
}

.allMain__reviewName {
    font-family: var(--txtHeader);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.allMain__reviewCity {
    font-family: var(--txt);
    font-size: 12px;
    color: rgba(232,226,217,.4);
    margin-top: 2px;
}

/* ----- 8. FAQ ----- */
.allMain__faqList { max-width: 760px; }

.allMain__faqItem {
    border-bottom: 1px solid rgba(255,255,255,.08);
    cursor: pointer;
}

.allMain__faqQuestion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: var(--txtHeader);
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    gap: 20px;
    user-select: none;
}

.allMain__faqIcon {
    font-size: 22px;
    font-weight: 300;
    color: rgba(232,226,217,.4);
    line-height: 1;
    min-width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.allMain__faqItem.active .allMain__faqIcon {
    transform: rotate(45deg);
    color: rgb(201,161,95);
}

.allMain__faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.allMain__faqAnswerInner { padding-bottom: 20px; }

.allMain__faqAnswerInner p {
    font-family: var(--txt);
    font-size: 15px;
    color: rgba(232,226,217,.6);
    line-height: 1.7;
}

/* ----- 9. KONTAKT ----- */
.allMain__contactDesc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
    line-height: 1.65;
}

.allMain__contactDetails {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.allMain__contactLink {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    padding: 18px 20px;
    background: linear-gradient(160deg, rgba(201,161,95,.12), rgba(20,21,24,.4));
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    transition: border-color 0.3s ease;
    color: #fff;
}

.allMain__contactLink:hover { border-color: rgba(201,161,95,.4); color: #fff; }

.allMain__contactLinkLabel {
    font-family: var(--txt);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(232,226,217,.4);
    font-weight: 500;
}

.allMain__contactLink span:last-child {
    font-family: var(--txtHeader);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.allMain__contactForm .wpcf7-form input,
.allMain__contactForm .wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    font-family: var(--txt);
    font-size: 15px;
    color: #fff;
    background: rgba(255,255,255,.06);
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}

.allMain__contactForm .wpcf7-form input::placeholder,
.allMain__contactForm .wpcf7-form textarea::placeholder {
    color: rgba(232,226,217,.3);
}

.allMain__contactForm .wpcf7-form input:focus,
.allMain__contactForm .wpcf7-form textarea:focus {
    outline: none;
    border-color: rgba(201,161,95,.5);
}

.allMain__contactForm .wpcf7-form textarea {
    height: 130px;
    resize: vertical;
}

.allMain__contactForm .wpcf7-form input[type="submit"] {
    background: linear-gradient(150deg, rgb(217,176,106), rgb(185,146,79));
    color: rgb(18,16,11);
    border: none;
    cursor: pointer;
    font-family: var(--txtHeader);
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 16px 40px;
    border-radius: 10px;
    transition: opacity 0.2s;
    width: auto;
    margin-bottom: 0;
}

.allMain__contactForm .wpcf7-form input[type="submit"]:hover { opacity: .85; }

/* ----- RESPONSIVE ----- */
@media screen and (max-width: 1170px) {
    .allMain__whyGrid { grid-template-columns: repeat(2, 1fr); }
    .allMain__stepsGrid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 992px) {
    .allMain__hero { padding: 80px 0 60px; }
    .allMain__hero--hasBg { padding: 100px 0 70px; }
    .allMain__serviceItem { grid-template-columns: 1fr; gap: 25px; }
    .allMain__serviceItem:nth-child(even) { direction: ltr; }
    .allMain__serviceImg { height: 280px; }
}

@media screen and (max-width: 768px) {
    .allMain__whyGrid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .allMain__stepsGrid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .allMain__reviewItem { padding: 25px; }
}

@media screen and (max-width: 576px) {
    .allMain__hero { padding: 60px 0 50px; }
    .allMain__whyGrid { grid-template-columns: 1fr; }
    .allMain__stepsGrid { grid-template-columns: 1fr; }
    .allMain__heroBtns { flex-direction: column; }
}


/* ============================================================
   BLOCK: portfolio-onebig
   ============================================================ */

.portfolioOneBig__topGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    margin-bottom: 10px;
}

.portfolioOneBig__itemBig { grid-row: 1 / 3; }
.portfolioOneBig__itemBig .portfolioOneBig__imgWrap { height: 500px; }
.portfolioOneBig__itemSmall .portfolioOneBig__imgWrap { height: 245px; }

.portfolioOneBig__bottomGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.portfolioOneBig__itemBottom .portfolioOneBig__imgWrap { height: 280px; }

.portfolioOneBig__imgWrap {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    display: block;
}

.portfolioOneBig__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

@media screen and (min-width: 992px) {
    .portfolioOneBig__imgWrap:hover .portfolioOneBig__img { transform: scale(1.05); }
}

@media screen and (max-width: 992px) {
    .portfolioOneBig__topGrid { grid-template-columns: 1fr 1fr; }
    .portfolioOneBig__itemBig { grid-column: 1 / 3; grid-row: auto; }
    .portfolioOneBig__itemBig .portfolioOneBig__imgWrap { height: 320px; }
    .portfolioOneBig__itemSmall .portfolioOneBig__imgWrap { height: 200px; }
    .portfolioOneBig__itemBottom .portfolioOneBig__imgWrap { height: 200px; }
}

@media screen and (max-width: 576px) {
    .portfolioOneBig__topGrid { grid-template-columns: 1fr 1fr; }
    .portfolioOneBig__itemBig { grid-column: 1 / 3; grid-row: auto; }
    .portfolioOneBig__bottomGrid { grid-template-columns: 1fr 1fr; }
    .portfolioOneBig__itemBig .portfolioOneBig__imgWrap { height: 200px; }
    .portfolioOneBig__itemSmall .portfolioOneBig__imgWrap,
    .portfolioOneBig__itemBottom .portfolioOneBig__imgWrap { height: 160px; }
    .portfolioOneBig__bottomGrid .portfolioOneBig__item:last-child { grid-column: 1 / 3; }
}


/* ============================================================
   BLOCK: offer-house
   ============================================================ */

.offerHouse__h2 h2 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.offerHouse__h2 h2 strong {
    font-weight: 500 !important;
    color: rgb(201,161,95);
}

.offerHouse__desc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
    line-height: 1.7;
}

.offerHouse__card {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(201,161,95,.16), rgba(20,21,24,.4));
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.offerHouse__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.offerHouse__iconWrap {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 46px;
    height: 46px;
    background: rgba(201,161,95,.2);
    border: 1px solid rgba(201,161,95,.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offerHouse__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.offerHouse__cardContent {
    padding: 22px 20px;
}

.offerHouse__cardTitle {
    font-family: var(--txtHeader);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.offerHouse__cardText {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.55);
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

@media screen and (min-width: 992px) {
    .offerHouse__card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,.3);
    }
    .offerHouse__card:hover .offerHouse__img { transform: scale(1.05); }
}

@media screen and (max-width: 576px) {
    .offerHouse__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK: whyus-section
   ============================================================ */

.whyusSection__card {
    padding: 20px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(201,161,95,.16), rgba(20,21,24,.4));
    transition: border-color 0.3s ease;
}

.whyusSection__iconWrap {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    background: rgba(201,161,95,.1);
    border: 1px solid rgba(201,161,95,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.whyusSection__icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.whyusSection__title {
    font-family: var(--txtHeader);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.whyusSection__desc p {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.55);
    line-height: 1.65;
    margin: 0;
}

@media screen and (min-width: 992px) {
    .whyusSection__card:hover { border-color: rgba(201,161,95,.4); }
    .whyusSection__card:hover .whyusSection__iconWrap {
        background: rgba(201,161,95,.2);
    }
}

@media screen and (max-width: 768px) {
    .whyusSection__grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 480px) {
    .whyusSection__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK: building-steps
   ============================================================ */

.buildingSteps__timeline {
    position: relative;
    padding: 20px 0;
}

.buildingSteps__line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,.12) 0px,
        rgba(255,255,255,.12) 6px,
        transparent 6px,
        transparent 14px
    );
    transform: translateX(-50%);
    z-index: 0;
}

.buildingSteps__lineProgress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgb(201,161,95);
    transition: height 0.15s linear;
}

.buildingSteps__row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}

.buildingSteps__row--left .buildingSteps__card  { grid-column: 1; }
.buildingSteps__row--right .buildingSteps__card { grid-column: 2; }

.buildingSteps__marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #0a0b0d;
    border: 2px solid rgba(201,161,95,.5);
    border-radius: 4px;
    z-index: 2;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.buildingSteps__marker.active {
    background: rgb(201,161,95);
    border-color: rgb(201,161,95);
}

.buildingSteps__card {
    padding: 20px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(201,161,95,.16), rgba(20,21,24,.4));
    transition: background 0.3s ease;
}

.buildingSteps__card.active {
    background: linear-gradient(160deg, rgba(201,161,95,.22), rgba(20,21,24,.5));
    border-color: rgba(201,161,95,.3);
}

.buildingSteps__num {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.35);
    color: rgb(201,161,95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--txtHeader);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .buildingSteps__line { left: 20px; }
    .buildingSteps__row {
        grid-template-columns: 1fr;
        margin-left: 50px;
        margin-bottom: 25px;
    }
    .buildingSteps__row--left .buildingSteps__card,
    .buildingSteps__row--right .buildingSteps__card { grid-column: 1; }
    .buildingSteps__marker { left: -30px; }
}

@media screen and (min-width: 768px) {
    .buildingSteps__row--right .buildingSteps__card { margin-left: 60px; }
    .buildingSteps__row--left .buildingSteps__card  { margin-right: 60px; }
}


/* ============================================================
   BLOCK: technology-cta
   ============================================================ */

.technologyCta__h2 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
}

.technologyCta__desc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
    line-height: 1.7;
}

.technologyCta__imgWrap { position: relative; }

.technologyCta__img {
    width: 100%;
    height: 650px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.technologyCta__overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(18,19,22,.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    padding: 18px 20px;
    width: 330px;
    max-width: calc(100% - 60px);
}

.technologyCta__overlayIconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(201,161,95,.2);
    border: 1px solid rgba(201,161,95,.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.technologyCta__overlayIcon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.technologyCta__overlayText {
    font-family: var(--txtHeader);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    display: block;
}

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

.technologyCta__item {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 16px 18px;
    width: 300px;
    max-width: 100%;
    background: linear-gradient(160deg, rgba(201,161,95,.1), rgba(20,21,24,.4));
}

.technologyCta__itemIconWrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 10px;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.technologyCta__itemIcon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.technologyCta__itemTitle {
    font-family: var(--txtHeader);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

@media screen and (max-width: 576px) {
    .technologyCta__overlay {
        bottom: 16px;
        left: 16px;
        padding: 14px 16px;
        width: auto;
        max-width: calc(100% - 32px);
    }
    .technologyCta__item { width: 100%; }
    .technologyCta__img { height: 450px; }
}


/* ============================================================
   BLOCK: setsapart
   ============================================================ */

.setsApart__h2 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
}

.setsApart__desc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
    line-height: 1.7;
}

.setsApart__img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media screen and (max-width: 576px) {
    .setsApart__img { height: 450px; }
}

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

.setsApart__item {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(201,161,95,.1), rgba(20,21,24,.4));
    gap: 15px;
}

.setsApart__itemText {
/*     font-family: var(--txtHeader); */
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}

.setsApart__itemCheck {
    width: 25px;
    height: 25px;
    min-width: 25px;
    object-fit: contain;
	filter:invert(1);
}


/* ============================================================
   BLOCK: location-hero
   ============================================================ */

.locationHero {
    margin: 0 20px;
    border-radius: 10px;
    overflow: hidden;
    padding: 100px 0;
    background-repeat: no-repeat;
}

.locationHero__overlay {
    position: absolute;
    inset: 0;
    background: #0a0b0d;
    opacity: 0.72;
    z-index: 1;
}

.locationHero__h2 h2 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 44px);
    color: #fff;
    line-height: 1.3;
    font-weight: 500;
}

.locationHero__h2 p {
    font-family: var(--txt);
    color: rgba(232,226,217,.7);
}

.locationHero__gapBottom { margin-bottom: 150px; }

.locationHero__list {
    display: flex;
    flex-direction: column;
}

.locationHero__txt {
    font-family: var(--txtHeader);
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-weight: 500;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .locationHero__gapBottom { margin-bottom: 100px; }
}

@media screen and (max-width: 576px) {
    .locationHero { margin: 0 10px; padding: 70px 0; }
}


/* ============================================================
   BLOCK: reviews-infinite
   ============================================================ */

.reviewsInfinite__h2 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
}

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

.reviewsInfinite__slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.reviewsInfinite__slide {
    width: 330px;
    height: auto;
}

.reviewsInfinite__card {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 24px;
    background: linear-gradient(160deg, rgba(201,161,95,.16), rgba(20,21,24,.4));
    height: 100%;
    width: 380px !important;
}

.swiper-slide.reviewsInfinite__slide { width: 380px !important; }

.reviewsInfinite__quoteWrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewsInfinite__quoteIcon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.reviewsInfinite__desc {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 16px;
}

.reviewsInfinite__desc p {
    font-family: var(--txt);
    font-size: 15px;
    color: rgba(232,226,217,.7);
    line-height: 1.65;
    margin: 0;
}

.reviewsInfinite__name {
    font-family: var(--txtHeader);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.reviewsInfinite__starIcon {
    height: 12px;
    width: auto;
    object-fit: contain;
}

/* fade-out po bokach */
.reviewsInfinite__sliderWrap::before,
.reviewsInfinite__sliderWrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.reviewsInfinite__sliderWrap::before {
    left: 0;
    background: linear-gradient(to right, #0a0b0d 0%, transparent 100%);
}

.reviewsInfinite__sliderWrap::after {
    right: 0;
    background: linear-gradient(to left, #0a0b0d 0%, transparent 100%);
}

/* CSS-animation track (fallback bez Swiper) */
.reviewsInfinite__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewsInfiniteScroll 80s linear infinite;
}

@keyframes reviewsInfiniteScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.reviewsInfinite__slide {
    width: 380px;
    flex-shrink: 0;
}

@media screen and (min-width: 992px) {
    .reviewsInfinite__sliderWrap:hover .reviewsInfinite__track {
        animation-play-state: paused;
    }
    .reviewsInfinite__card { transition: border-color 0.3s ease; }
    .reviewsInfinite__card:hover { border-color: rgba(201,161,95,.3); }
}

@media screen and (max-width: 576px) {
    .reviewsInfinite__slide { width: 380px; }
    .reviewsInfinite__card { padding: 18px; }
    .reviewsInfinite__sliderWrap::before,
    .reviewsInfinite__sliderWrap::after { width: 60px; }
}


/* ============================================================
   BLOCK: faq-circle
   ============================================================ */

.faqCircle__h2 h2 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    color: #fff;
    line-height: 1.25;
}

.faqCircle__h2 p { margin: 0; }

.faqCircle__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faqCircle__item {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 30px 20px;
    cursor: pointer;
    background: linear-gradient(160deg, rgba(201,161,95,.12), rgba(20,21,24,.4));
    transition: border-color .2s;
}

.faqCircle__item:hover { border-color: rgba(201,161,95,.3); }

.faqCircle__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faqCircle__question {
    font-family: var(--txtHeader);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
}

.faqCircle__circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background .3s;
}

.faqCircle__plus {
    font-size: 20px;
    font-weight: 700;
    color: rgb(201,161,95);
    line-height: 1;
}

.faqCircle__item.active .faqCircle__circle {
    transform: rotate(135deg);
    background: rgba(201,161,95,.25);
}

.faqCircle__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faqCircle__answerInner { padding-top: 16px; }

.faqCircle__answerInner p {
    font-family: var(--txt);
    font-size: 15px;
    color: rgba(232,226,217,.6);
    line-height: 1.65;
    margin: 0;
}


/* ============================================================
   BLOCK: cta-three
   ============================================================ */

.ctaThree__card {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(160deg, rgba(201,161,95,.16), rgba(20,21,24,.4));
    height: 100%;
}

.ctaThree__card--gray {
    border: 1px solid rgba(201,161,95,.25);
}

.ctaThree__h2 {
    font-family: var(--txtHeader);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.ctaThree__desc { margin-bottom: 16px; }

.ctaThree__desc p {
    font-family: var(--txt);
    font-size: 15px;
    color: rgba(232,226,217,.6);
    line-height: 1.65;
    margin: 0;
}

.ctaThree__iconWrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctaThree__icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.ctaThree__contactText {
    font-family: var(--txtHeader);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.ctaThree__img {
    width: 100%;
    height: 377px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.ctaThree__check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    object-fit: contain;
}

.ctaThree__checkText {
    font-family: var(--txt);
    font-size: 15px;
    color: rgba(232,226,217,.7);
}

@media screen and (max-width: 992px) {
    .ctaThree__img { height: 320px; }
}


/* ============================================================
   BLOCK: aboutme-hero
   ============================================================ */

.aboutmeHero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #0a0b0d;
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .aboutmeHero__bg { height: 550px; }
}

.aboutmeHero__h2 h2,
.aboutmeHero__h2 p {
    font-family: var(--txtHeader);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.aboutmeHero__desc p {
    font-family: var(--txt);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(232,226,217,.5);
    margin: 0;
}

.aboutmeHero__imgWrap { position: relative; }

.aboutmeHero__img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 1;
	
	height:520px;
	object-fit:cover;
}
@media screen and (max-width:576px) {
	.aboutmeHero__img {
		height:220px;
		object-fit:cover;
	}
}

.aboutmeHero__imgTxt {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -13%);
    font-family: var(--txtHeader);
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 900;
    color: rgba(201,161,95,.12);
    white-space: nowrap;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    letter-spacing: -2px;
}

.aboutmeHero__card {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    padding: 20px;
    background: linear-gradient(160deg, rgba(201,161,95,.14), rgba(20,21,24,.4));
}

.aboutmeHero__iconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutmeHero__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.aboutmeHero__cardTitle {
    font-family: var(--txtHeader);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.aboutmeHero__cardDesc {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.55);
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   BLOCK: aboutme-guarantee
   ============================================================ */

.aboutmeGuarantee__imgWrap { position: relative; }

.aboutmeGuarantee__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.aboutmeGuarantee__overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(18,19,22,.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    padding: 18px 20px;
    width: 330px;
}

@media screen and (max-width: 992px) {
    .aboutmeGuarantee__overlay { width: 250px; }
    .aboutmeGuarantee__content h2 { font-size: 22px; line-height: 30px; }
}

.aboutmeGuarantee__iconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutmeGuarantee__icon {
    width: 32px;
    height: 32px;
}


/* ============================================================
   BLOCK: aboutme-numbers
   ============================================================ */

.aboutmeNumbers__h2 h2 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.aboutmeNumbers__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 80px;
}

.aboutmeNumbers__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(160deg, rgba(201,161,95,.14), rgba(20,21,24,.4));
    border-radius: 10px;
    padding: 20px 24px;
}

.aboutmeNumbers__number {
    font-family: var(--txtHeader);
    font-size: clamp(25px, 5vw, 30px);
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
}

.aboutmeNumbers__desc {
    font-family: var(--txt);
    font-size: 15px;
    line-height: 1.65;
    color: rgba(232,226,217,.6);
}

.aboutmeNumbers__desc p { margin: 0; }

@media screen and (max-width: 992px) {
    .aboutmeNumbers__list { padding-left: 0px; }
    .aboutmeNumbers__number { font-size: 20px; }
}


/* ============================================================
   BLOCK: contactme-hero
   ============================================================ */

.contactmeHero__h3 h3 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.contactmeHero__card {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(201,161,95,.14), rgba(20,21,24,.4));
    padding: 20px;
}

.contactmeHero__iconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactmeHero__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.contactmeHero__cardTitle {
    font-family: var(--txtHeader);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.contactmeHero__cardDesc {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.55);
    line-height: 1.6;
    margin: 0;
}

.contactmeHero__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.contactmeHero__formWrap {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.contactmeHero__formWrap .infoForm__formBox {
    background: rgba(18,19,22,.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,.1);
    margin: 0 220px;
	
	display:none;
}

@media screen and (max-width: 1170px) {
    .contactmeHero__formWrap .infoForm__formBox { margin: 0 10px; }
}

.placeMap__main .contact-map iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

@media screen and (max-width: 992px) {
    .contactmeHero__img { height: 320px; }
    .contactmeHero__formWrap { margin-top: -80px; }
    .contactmeHero__formWrap .infoForm__formBox { padding: 24px; }
}


/* ============================================================
   BLOCK: technology-hero (contentimg-change)
   ============================================================ */

.technologyHero__h2 h2 {
    font-family: var(--txtHeader);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.technologyHero__desc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
    line-height: 1.7;
    margin: 0;
}

.technologyHero__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (max-width: 992px) {
    .technologyHero__col { order: 1; }
}

.technologyHero__card {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(201,161,95,.14), rgba(20,21,24,.4));
    padding: 20px;
}

.technologyHero__iconWrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(201,161,95,.14);
    border: 1px solid rgba(201,161,95,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.technologyHero__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.technologyHero__cardTitle {
    font-family: var(--txtHeader);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.technologyHero__cardDesc {
    font-family: var(--txt);
    font-size: 14px;
    color: rgba(232,226,217,.55);
    line-height: 1.6;
    margin: 0;
}

.technologyHero__txtMainWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.technologyHero__txtMain {
    font-family: var(--txtHeader);
    font-size: 150px;
    font-weight: 900;
    color: rgba(201,161,95,.38);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.technologyHero__img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

@media screen and (max-width: 992px) {
    .technologyHero__txtMain { font-size: 120px; }
}


/* ============================================================
   BLOCK: contentimg-change
   ============================================================ */

.contentimgChange { border-top: none !important; }

.contentimgChange__row { margin-bottom: 60px; }
.contentimgChange__row:last-child { margin-bottom: 0; }

.contentimgChange__num {
    font-family: var(--txtHeader);
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    color: rgba(201,161,95,.1);
    pointer-events: none;
    user-select: none;
}

.contentimgChange__h2 {
    font-family: var(--txtHeader);
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.contentimgChange__desc p {
    font-family: var(--txt);
    font-size: 16px;
    color: rgba(232,226,217,.6);
    line-height: 1.7;
    margin: 0;
}

.contentimgChange__img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media screen and (max-width: 576px) {
    .contentimgChange__img { height: 350px; }
}

.contentimgChange__row--reverse .contentimgChange__left  { order: 2; }
.contentimgChange__row--reverse .contentimgChange__right { order: 1; }

@media screen and (max-width: 992px) {
    .contentimgChange__row--reverse .contentimgChange__right { order: 2; }
}


/* ============================================================
   BLOCK: verticalslider-hero
   ============================================================ */

.verticalsliderHero {
    background: linear-gradient(160deg, rgba(201,161,95,.12), #0f1114);
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.verticalsliderHero__h2 h2 {
    font-family: var(--txtHeader);
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.verticalsliderHero__desc p {
    font-family: var(--txt);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(232,226,217,.6);
    margin: 0;
}

.verticalsliderHero__right {
    height: 620px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.verticalsliderHero__slidersWrap {
    display: flex;
    gap: 16px;
    height: 100%;
}

.verticalsliderHero__slider {
    flex: 1;
    overflow: hidden;
    height: 100%;
}

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

@keyframes verticalScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.verticalsliderHero__track--up {
    animation: verticalScroll 30s linear infinite;
}

.verticalsliderHero__track--down {
    animation: verticalScroll 30s linear infinite reverse;
}

.verticalsliderHero__slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

@media screen and (max-width: 992px) {
    .verticalsliderHero__right { height: 420px; }
    .verticalsliderHero__left {
        padding-top: 40px !important;
        padding-bottom: 0 !important;
    }
    .verticalsliderHero__right::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to bottom, #0f1114 0%, transparent 100%);
        z-index: 2;
        pointer-events: none;
    }
}
