﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --container-width: 1440px;
    --radius-xl: 999px;
    --color-green: #00A458;
    --color-green-soft: #00A4580D;
    --color-green-line: rgba(0, 164, 88, 0.14);
    --color-text: #000000;
    --color-bg: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: #ffffff;
}

.home-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

.header-bottom {
    min-height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #E7E7E7;
    background: transparent;
}

.home-page .header-bottom {
    border-bottom: none;
}

.header-row {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 24px 40px;
}

/* LOGO */

.header-logo {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    line-height: 0;
    z-index: 2;
}

    .header-logo img {
        display: block;
        width: auto;
        max-width: 300px;
        height: auto;
    }

    .header-logo .logo-home {
        display: none;
    }

.home-page .header-logo .logo-default {
    display: none;
}

.home-page .header-logo .logo-home {
    display: block;
}

/* NAV */

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

    .main-nav > a,
    .nav-link {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        text-decoration: none;
        font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
        font-weight: 700;
        font-size: 19px;
        line-height: 1;
        letter-spacing: 0;
        text-transform: uppercase;
        color: #000000;
        text-shadow: 0px 4px 5px #00000026;
        transition: color 0.2s ease, opacity 0.2s ease;
    }

.home-page .main-nav > a,
.home-page .nav-link {
    color: #ffffff;
}

.main-nav > a::after,
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background: #F26A21;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.home-page .main-nav > a::after,
.home-page .nav-link::after {
    background: #000000;
}

.main-nav > a:hover::after,
.nav-link:hover::after,
.nav-item.is-open .nav-link::after {
    transform: translateX(-50%) scaleX(1);
}

.main-nav > a:hover,
.nav-link:hover,
.nav-item.is-open .nav-link,
.home-page .main-nav > a:hover,
.home-page .nav-link:hover,
.home-page .nav-item.is-open .nav-link {
    color: inherit;
}

/* DROPDOWN */

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item--dropdown {
    position: relative;
}

.nav-link-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link--services {
    appearance: none;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #EB5202;
    cursor: pointer;
    flex: 0 0 auto;
}

.nav-link__chevron {
    display: block;
    flex: 0 0 auto;
    color: currentColor;
    transition: transform 0.18s ease;
}

.nav-item.is-open .nav-link__chevron,
.nav-item:focus-within .nav-link__chevron {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #D9D9D9;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-item:hover .services-dropdown,
.nav-item:focus-within .services-dropdown,
.nav-item.is-open .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.services-dropdown::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.services-dropdown a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 20px;
    text-decoration: none;
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #111111;
    background: #ffffff;
    transition: background 0.16s ease, color 0.16s ease, padding-left 0.16s ease;
}

    .services-dropdown a + a {
        border-top: 1px solid #E7E7E7;
    }

    .services-dropdown a:hover {
        background: #FAFAFA;
        color: #F26A21;
        padding-left: 24px;
    }

/* CTA */

.header-cta {
    flex: 0 0 auto;
    margin-left: 50px;
}

.header-cta__button {
    min-width: 220px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.header-cta__button {
    border: 1.5px solid #F26A21;
    background: transparent;
    color: #000000;
}

.header-cta__arrow {
    display: inline-block;
    color: #F26A21;
    transition: transform 0.18s ease, color 0.2s ease;
}

.header-cta__button:hover {
    background: #F26A21;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-1px);
}

    .header-cta__button:hover .header-cta__arrow {
        color: #ffffff;
        transform: translateX(2px);
    }

.home-page .header-cta__button {
    border: 1.5px solid #000000;
    background: transparent;
    color: #ffffff;
}

.home-page .header-cta__arrow {
    color: #000000;
}

.home-page .header-cta__button:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

    .home-page .header-cta__button:hover .header-cta__arrow {
        color: #000000;
        transform: translateX(2px);
    }

/* MOBILE TOGGLE */

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #F26A21;
}

.nav-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    line-height: 0;
}

.nav-toggle__svg {
    display: block;
    width: 28px;
    height: 28px;
}

.home-page .nav-toggle {
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .header-row {
        padding: 20px 24px;
        gap: 20px;
    }

    .main-nav {
        gap: 28px;
    }

        .main-nav > a,
        .nav-link {
            font-size: 17px;
        }

    .header-cta__button {
        min-width: 158px;
        min-height: 50px;
        padding: 0 22px;
        font-size: 17px;
    }

    .header-logo img {
        max-width: 240px;
    }
}

@media (max-width: 980px) {
    .header-bottom {
        min-height: 84px;
    }

    .header-row {
        min-height: 84px;
        padding: 16px 20px;
        gap: 16px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 0;
        background: #ffffff;
        border-bottom: 1px solid #E7E7E7;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

        .main-nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .main-nav > a {
            width: 100%;
            min-height: 54px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 20px;
            color: #111111 !important;
            text-shadow: none;
        }

    .nav-link-group {
        width: 100%;
        gap: 0;
        align-items: stretch;
    }

    .nav-link--services {
        width: 100%;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 20px;
        color: #111111 !important;
        text-shadow: none;
        flex: 1 1 auto;
    }

    .nav-dropdown-toggle {
        width: 56px;
        height: 54px;
        justify-content: center;
        align-items: center;
        color: #EB5202;
        flex: 0 0 56px;
    }

    .main-nav > a::after,
    .nav-link::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .nav-item {
        display: block;
    }

    .services-dropdown {
        position: static;
        min-width: 100%;
        border: 0;
        border-top: 1px solid #E7E7E7;
        box-shadow: none;
        background: #F8F8F8;
        max-height: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        overflow: hidden;
        transition: max-height 0.22s ease;
    }

        .services-dropdown::before {
            display: none;
        }

    .nav-item.is-open .services-dropdown {
        max-height: 500px;
    }

    .services-dropdown a {
        min-height: 50px;
        padding: 0 20px 0 36px;
        font-size: 16px;
        background: #F8F8F8;
    }

        .services-dropdown a:hover {
            padding-left: 36px;
        }

    .nav-item:hover .nav-link__chevron {
        transform: none;
    }

    .nav-item.is-open .nav-link__chevron {
        transform: rotate(180deg);
    }
}

@media (max-width: 640px) {
    .header-bottom {
        min-height: 102px;
    }

    .header-row {
        min-height: 72px;
        padding: 12px 26px 12px 26px;
        gap: 12px;
    }

    .header-logo img {
        max-width: 250px;
    }

    .nav-toggle {
        width: 32px;
        height: 32px;
    }

    .nav-toggle__icon,
    .nav-toggle__svg {
        width: 32px;
        height: 32px;
    }

    .main-nav {
        top: 100%;
    }

        .main-nav > a,
        .nav-link--services {
            min-height: 52px;
            padding-left: 16px;
            padding-right: 16px;
            font-size: 17px;
        }

    .nav-dropdown-toggle {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .services-dropdown a {
        min-height: 48px;
        padding: 0 16px 0 28px;
        font-size: 15px;
    }
}
/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #ffffff;
    padding-top: 37px;
}

.site-footer__top {
    position: relative;
}

.site-footer__card {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 389px;
    background: linear-gradient( 180deg, #EB5202 0%, #DD4E02 100% );
    border-radius: 18px;
    overflow: hidden;
    padding: 110px 0px 90px 80px;
}

.site-footer__bg-mark {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

    .site-footer__bg-mark img {
        position: absolute;
        left: 60px;
        top: 20px;
        width: 520px;
        height: auto;
        opacity: 1;
        display: block;
    }

.site-footer__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

.site-footer__brand-col {
    position: relative;
    z-index: 2;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    margin-bottom: 26px;
}

    .site-footer__logo img {
        width: auto;
        height: 42px;
        display: block;
    }

.site-footer__contact p,
.site-footer__contact a {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #ffffff;
    text-decoration: none;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

    .site-footer__socials a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #F35909;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
    }

        .site-footer__socials a:hover {
            transform: translateY(-2px);
        }

    .site-footer__socials img {
        width: 22px;
        height: 22px;
        display: block;
    }

/* LINK OSZLOPOK */

.site-footer__links {
    display: grid;
    grid-template-columns: 0.1fr 0.8fr 0.6fr 1fr;
    gap: 0;
    align-items: start;
}

.site-footer__col {
    min-height: 230px;
    padding: 0 28px;
    border-left: 1px solid #CC4802;
}

    .site-footer__col:first-child {
        border-left: none;
    }

    .site-footer__col h4 {
        margin: 0 0 14px;
        font-family: "Barlow", sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 2.8;
        letter-spacing: 0;
        text-transform: uppercase;
        color: #000000;
    }

    .site-footer__col ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .site-footer__col li {
        margin: 0;
    }

    .site-footer__col a {
        text-decoration: none;
        font-family: "Barlow", sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 2.8;
        letter-spacing: 0;
        color: #ffffff;
        transition: opacity 0.18s ease;
    }

        .site-footer__col a:hover {
            opacity: 0.8;
        }

/* WORDMARK */

.site-footer__wordmark-wrap {
    padding-top: 10px;
    padding-bottom: 15px;
}

.site-footer__wordmark {
    max-width: 1440px;
    margin: 0 auto;
    line-height: 0;
}

    .site-footer__wordmark img {
        width: 100%;
        height: auto;
        display: block;
    }

/* BOTTOM */

.site-footer__bottom {
    padding: 8px 0 16px;
}

.site-footer__copyright {
    margin: 0;
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #A5A5A5;
}

/* RESPONSIVE */

@media (max-width: 1280px) {
    .site-footer__card {
        padding: 60px 40px 42px;
    }

    .site-footer__grid {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .site-footer__bg-mark img {
        left: 40px;
        width: 400px;
    }

    .site-footer__col {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .site-footer__card {
        min-height: auto;
        padding: 48px 28px 36px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 26px;
    }

    .site-footer__col {
        min-height: auto;
    }

    .site-footer__bg-mark img {
        width: 320px;
        left: 28px;
        top: 28px;
        opacity: 0.5;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 18px;
        background: #ffffff;
    }

    .site-footer__top .container,
    .site-footer__wordmark-wrap .container,
    .site-footer__bottom .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .site-footer__card {
        width: 100%;
        max-width: none;
        min-height: auto;
        border-radius: 20px;
        padding: 40px 28px 34px;
    }

    .site-footer__grid {
        gap: 40px;
    }

    .site-footer__brand-col {
        width: 100%;
        padding-left: 40px;
    }

    .site-footer__logo {
        margin-bottom: 26px;
    }

        .site-footer__logo img {
            height: 34px;
        }

    .site-footer__contact p,
    .site-footer__contact a {
        font-size: 14px;
        line-height: 2;
        font-weight: 600;
    }

    .site-footer__socials {
        gap: 14px;
        margin-top: 26px;
    }

        .site-footer__socials a {
            width: 42px;
            height: 42px;
        }

    .site-footer__links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 34px;
        row-gap: 34px;
        align-items: start;
    }

    .site-footer__col {
        min-height: auto;
        padding: 0;
        border-left: none;
    }

        .site-footer__col h4 {
            margin: 0 0 16px;
            font-size: 14px;
            line-height: 1.45;
            font-weight: 700;
        }

        .site-footer__col a {
            font-size: 14px;
            line-height: 1.6;
            font-weight: 600;
        }

        .site-footer__col li + li {
            margin-top: 14px;
        }

    .site-footer__bg-mark img {
        width: 250px;
        left: 12px;
        top: 34px;
        opacity: 0.35;
    }

    .site-footer__wordmark-wrap {
        display: none;
    }

    .site-footer__bottom {
        padding: 12px 0 18px;
    }

    .site-footer__copyright {
        font-size: 13px;
        padding: 0 20px;
        text-align: center;
    }

    .site-footer__bg-mark img {
        opacity: 0.85;
        width: 320px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}




/* =========================================
   HOME HERO
========================================= */

.rt-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000000;
}

.rt-hero__slides {
    position: relative;
    min-height: 100vh;
}

.rt-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    background-image: var(--hero-bg-desktop);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

    .rt-hero__slide.is-active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

.rt-hero__content-wrap {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 130px;
    padding-bottom: 120px;
    overflow: visible;
}

.rt-hero__content {
    position: relative;
    width: 48%;
    min-width: 560px;
    margin-left: auto;
    padding-right: 36px;
    overflow: visible;
}

.rt-hero__title {
    margin: 0;
    width: max-content;
    max-width: none;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #000000;
    margin-left: -220px;
}

.rt-hero__subtitle {
    margin: 22px 0 0;
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    width: max-content;
    margin-left: 42px;
}

.rt-hero__controls-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 58px;
    z-index: 4;
}

.rt-hero__dots {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    width: fit-content;
    padding-right: 36px;
}

.rt-hero__dot {
    width: 11px;
    height: 11px;
    border: none;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

    .rt-hero__dot:hover {
        transform: scale(1.08);
    }

    .rt-hero__dot.is-active {
        background: #ffffff;
    }

@media (max-width: 1400px) {
    .rt-hero__content {
        width: 50%;
        min-width: 500px;
        padding-right: 20px;
    }

    .rt-hero__title {
        font-size: 68px;
    }

    .rt-hero__subtitle {
        font-size: 32px;
    }

    .rt-hero__dots {
        padding-right: 20px;
    }
}

@media (max-width: 1180px) {
    .rt-hero__content-wrap {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .rt-hero__content {
        width: 52%;
        min-width: 420px;
    }

    .rt-hero__title {
        width: auto;
        max-width: 100%;
        font-size: 56px;
    }

    .rt-hero__subtitle {
        font-size: 26px;
    }
}

@media (max-width: 980px) {
    .rt-hero,
    .rt-hero__slides,
    .rt-hero__content-wrap {
        min-height: 820px;
    }

    .rt-hero__content-wrap {
        align-items: flex-end;
        justify-content: center;
        padding-top: 140px;
        padding-bottom: 130px;
    }

    .rt-hero__content {
        max-width: 100%;
        min-width: 0;
        padding-right: 0;
    }

    .rt-hero__title {
        width: auto;
        max-width: 100%;
        font-size: 44px;
    }

    .rt-hero__subtitle {
        font-size: 22px;
        line-height: 1.35;
        margin-top: 16px;
    }

    .rt-hero__controls-wrap {
        bottom: 40px;
    }

    .rt-hero__dots {
        margin-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .rt-hero,
    .rt-hero__slides,
    .rt-hero__content-wrap {
        min-height: 100svh;
    }

    .rt-hero__slide {
        background-image: var(--hero-bg-mobile, var(--hero-bg-desktop));
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
    }

    .rt-hero__content-wrap {
        min-height: 100svh;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding-top: 110px;
        padding-bottom: 118px;
        padding-left: 28px;
        padding-right: 20px;
    }

    .rt-hero__content {
        width: 100%;
        min-width: 0;
        margin-left: 0;
        padding: 0;
        background: transparent;
    }

    .rt-hero__title {
        margin: 0;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        font-size: 31px;
        line-height: 1.04;
        letter-spacing: -0.04em;
        color: #000000;
    }

    .rt-hero__subtitle {
        margin: 18px 0 0;
        width: 100%;
        max-width: 265px;
        font-size: 17px;
        line-height: 1.12;
        color: #ffffff;
        margin-left: 0;
    }

    .rt-hero__controls-wrap {
        left: 0;
        right: 0;
        bottom: 26px;
    }

    .rt-hero__dots {
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 18px;
    }

    .rt-hero__dot {
        width: 13px;
        height: 13px;
        background: #000000;
    }

        .rt-hero__dot.is-active {
            background: #ffffff;
        }
}

@media (max-width: 640px) and (max-height: 740px) {
    .rt-hero,
    .rt-hero__slides,
    .rt-hero__content-wrap {
        min-height: 100svh;
    }

    .rt-hero__slide {
        background-position: center top;
    }

    .rt-hero__content-wrap {
        padding-top: 96px;
        padding-bottom: 82px;
        padding-left: 20px;
        padding-right: 20px;
        align-items: flex-end;
    }

    .rt-hero__content {
        width: 100%;
        max-width: 100%;
    }

    .rt-hero__title {
        font-size: 24px;
        line-height: 1.02;
        letter-spacing: -0.04em;
        max-width: 300px;
    }

    .rt-hero__subtitle {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.1;
        max-width: 210px;
    }

    .rt-hero__controls-wrap {
        bottom: 20px;
    }

    .rt-hero__dots {
        gap: 14px;
    }

    .rt-hero__dot {
        width: 12px;
        height: 12px;
    }
}
/* =========================================
   INTRO BLOKK (HERO ALATT)
========================================= */

.rt-intro {
    padding: 90px 0 80px;
    background: #ffffff;
}

.rt-intro__box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 65px;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 90px;
}

/* NARANCS SÁV - DESKTOP */

.rt-intro__line {
    position: absolute;
    left: 0;
    top: -22px;
    bottom: -22px;
    width: 12px;
    background: #EB5202;
}

/* SZÖVEG */

.rt-intro__content {
    max-width: 1440px;
}

.rt-intro__text {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #000000;
}

.rt-intro__link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #EB5202;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

    .rt-intro__link:hover {
        transform: translateX(4px);
    }

.rt-intro__arrow {
    display: inline-block;
    transition: transform 0.18s ease;
}

.rt-intro__link:hover .rt-intro__arrow {
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .rt-intro {
        padding: 56px 0 56px;
        background: #ffffff;
    }

        .rt-intro .container {
            padding-left: 20px;
            padding-right: 20px;
        }

    .rt-intro__box {
        position: relative;
        display: grid;
        grid-template-columns: 10px minmax(0, 1fr);
        column-gap: 22px;
        align-items: start;
        max-width: 100%;
        padding-left: 0;
    }

    .rt-intro__line {
        position: relative;
        left: auto;
        top: 0;
        bottom: auto;
        width: 10px;
        min-height: 100%;
        height: 100%;
        background: #EB5202;
    }

    .rt-intro__content {
        max-width: 100%;
    }

    .rt-intro__text {
        font-size: 19px;
        line-height: 1.85;
    }

    .rt-intro__link {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (max-width: 640px) {
    .rt-intro {
        padding: 36px 0 34px;
        background: #ffffff;
    }

        .rt-intro .container {
            padding-left: 18px;
            padding-right: 18px;
        }

    .rt-intro__box {
        grid-template-columns: 9px minmax(0, 1fr);
        column-gap: 24px;
        align-items: stretch;
    }

    .rt-intro__line {
        width: 11px; /* +1-2px szélesebb */
        height: auto;
        min-height: calc(100% + 12px); /* lejjebb nyúlik */
        margin-bottom: -12px; /* hogy tényleg kilógjon */
    }

    .rt-intro__text {
        font-size: 15px;
        line-height: 2.0;
    }

    .rt-intro__link {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.4;
        gap: 6px;
    }
}
/* =========================================
   MIÉRT VÁLASSZON MINKET
========================================= */

.rt-why-us {
    padding: 110px 0 120px;
    background: #ffffff;
}

.rt-why-us__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-why-us__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #EB5202;
}

.rt-why-us__grid {
    margin-top: 92px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
}

.rt-why-us__card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 4px 100px 0px #00000012;
    padding: 100px 44px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rt-why-us__icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #EB5202;
    box-shadow: 0px 4px 100px 0px #00000012;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
    flex: 0 0 auto;
}

    .rt-why-us__icon-wrap img {
        height: 36px;
        width: auto;
        display: block;
    }

.rt-why-us__card-title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    max-width: 420px;
}

.rt-why-us__text {
    margin: 28px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    max-width: 420px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .rt-why-us {
        padding: 90px 0 100px;
    }

    .rt-why-us__title {
        font-size: 46px;
    }

    .rt-why-us__grid {
        gap: 28px;
        margin-top: 72px;
    }

    .rt-why-us__card {
        padding: 80px 28px 56px;
    }
}

@media (max-width: 980px) {
    .rt-why-us__grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 60px auto 0;
    }

    .rt-why-us__title {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .rt-why-us {
        padding: 70px 0 80px;
    }

    .rt-why-us__title {
        font-size: 28px;
    }

    .rt-why-us__grid {
        margin-top: 42px;
        gap: 22px;
    }

    .rt-why-us__card {
        padding: 56px 22px 42px;
        border-radius: 18px;
    }

    .rt-why-us__icon-wrap {
        width: 72px;
        height: 72px;
        margin-bottom: 30px;
    }

        .rt-why-us__icon-wrap img {
            height: 32px;
        }

    .rt-why-us__card-title {
        font-size: 16px;
    }

    .rt-why-us__text {
        margin-top: 20px;
        font-size: 16px;
    }
}

/* =========================================
   MIVEL FOGLALKOZUNK
========================================= */

.rt-services-overview {
    padding: 20px 0 120px;
    background: #ffffff;
}

.rt-services-overview__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-services-overview__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #EB5202;
}

.rt-services-overview__list {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rt-service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.rt-service-row--reverse .rt-service-row__media {
    order: 2;
}

.rt-service-row--reverse .rt-service-row__content {
    order: 1;
}

.rt-service-row__media {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

    .rt-service-row__media img {
        display: block;
        width: 710px;
        object-fit: cover;
    }

.rt-service-row__content {
    max-width: 620px;
    padding-left: 30px;
}

.rt-service-row__title-primary {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #EB5202;
}

.rt-service-row__title-secondary {
    margin-top: 6px;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 20px; 
    line-height: 1.5;
    letter-spacing: -0.06em; 
    text-transform: uppercase;
    color: #000000;
}

.rt-service-row__title-primary {
    color: #EB5202;
}

.rt-service-row__title-secondary {
    color: #000000;
}

.rt-service-row__text {
    margin: 28px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .rt-services-overview {
        padding: 90px 0 100px;
    }

    .rt-services-overview__title {
        font-size: 46px;
    }

    .rt-service-row {
        gap: 40px;
    }

    .rt-service-row__media img {
        height: 400px;
    }

    .rt-service-row__content {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .rt-services-overview__title {
        font-size: 38px;
    }

    .rt-service-row,
    .rt-service-row--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

        .rt-service-row--reverse .rt-service-row__media,
        .rt-service-row--reverse .rt-service-row__content {
            order: initial;
        }

    .rt-service-row__media img {
        height: 340px;
    }

    .rt-service-row__content {
        max-width: 100%;
    }
}

@media (max-width: 640px) {

    .rt-service-row__content {
        padding-left: 0;
    }

    .rt-services-overview {
        padding: 30px 0 80px;
    }

    .rt-services-overview__title {
        font-size: 28px;
    }

    .rt-services-overview__list {
        margin-top: 40px;
        gap: 36px;
    }

    .rt-service-row__title-primary,
    .rt-service-row__title-secondary {
        font-size: 18px;
    }

    .rt-service-row__text {
        margin-top: 18px;
        font-size: 16px;
    }

    .rt-service-row__media img {
        height: 240px;
    }
}

/* =========================================
   ÖNÁLLÓ MÁRKÁINK
========================================= */

.rt-brands {
    padding: 110px 0 120px;
    background: #F6F6F6;
}

.rt-brands2 {
    padding: 110px 0 40px;
    background: #ffffff;
}

.rt-brands__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-brands__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #EB5202;
}

.rt-brands__subtitle {
    margin: 4px 0 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}

.rt-brands__grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.rt-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rt-brand-card__media {
    position: relative;
    display: block;
    width: 100%;
    min-height: 640px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0px 4px 4px 0px #00000026;
}

    .rt-brand-card__media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.rt-brand-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100% );
    pointer-events: none;
}

.rt-brand-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 2;
    padding: 0 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rt-brand-card__brand {
    min-height: 44px;
    padding: 0 16px;
    background: #EB5202;
    box-shadow: 0px 4px 4px 0px #00000040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.rt-brand-card__headline {
    margin: 18px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
}

.rt-brand-card__text {
    margin: 18px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    max-width: 320px;
}

.rt-brand-card__link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #EB5202;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

    .rt-brand-card__link:hover {
        transform: translateX(4px);
    }

.rt-brand-card__arrow {
    display: inline-block;
    transition: transform 0.18s ease;
}

.rt-brand-card__link:hover .rt-brand-card__arrow {
    transform: translateX(3px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .rt-brands {
        padding: 90px 0 100px;
    }

    .rt-brands__title {
        font-size: 46px;
    }

    .rt-brands__subtitle {
        font-size: 30px;
    }

    .rt-brands__grid {
        gap: 20px;
    }

    .rt-brand-card__media {
        min-height: 560px;
    }

    .rt-brand-card__content {
        padding: 0 24px;
    }

    .rt-brand-card__headline {
        font-size: 22px;
    }

    .rt-brand-card__text {
        font-size: 17px;
    }
}

@media (max-width: 980px) {
    .rt-brands__title {
        font-size: 38px;
    }

    .rt-brands__subtitle {
        font-size: 24px;
    }

    .rt-brands__grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 42px auto 0;
        gap: 28px;
    }

    .rt-brand-card__media {
        min-height: 580px;
    }
}

@media (max-width: 640px) {

    .rt-brands2 {
        padding: 110px 0 80px;
    }
    .rt-brands {
        padding: 70px 0 80px;
    }

    .rt-brands__title {
        font-size: 28px;
    }

    .rt-brands__subtitle {
        font-size: 20px;
        margin-top: 2px;
        padding-bottom: 30px;
    }

    .rt-brands__grid {
        margin-top: 32px;
        gap: 22px;
    }

    .rt-brand-card__media {
        min-height: 480px;
    }

    .rt-brand-card__content {
        bottom: 28px;
        padding: 0 20px;
    }

    .rt-brand-card__brand {
        min-height: 40px;
        font-size: 15px;
        padding: 0 14px;
    }

    .rt-brand-card__headline {
        margin-top: 14px;
        font-size: 20px;
    }

    .rt-brand-card__text {
        margin-top: 14px;
        font-size: 16px;
        max-width: 100%;
    }

    .rt-brand-card__link {
        font-size: 18px;
        padding-bottom: 45px;
    }
}

/* =========================================
   CÉGÜNK SZÁMOKBAN
========================================= */

.rt-stats {
    padding: 110px 0 120px;
    background: #ffffff;
}

.rt-stats__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-stats__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #EB5202;
}

.rt-stats__grid {
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
}

.rt-stats__card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 4px 100px 0px #00000012;
    padding: 90px 40px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* SZÁM */

.rt-stats__number {
    margin-bottom: 26px;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px #DADADA;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.09));
}

/* CÍM */

.rt-stats__card-title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}

/* SZÖVEG */

.rt-stats__text {
    margin: 22px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    max-width: 360px;
}

@media (max-width: 1200px) {
    .rt-stats__title {
        font-size: 46px;
    }

    .rt-stats__grid {
        margin-top: 70px;
        gap: 28px;
    }

    .rt-stats__card {
        padding: 70px 30px 50px;
    }

    .rt-stats__number {
        font-size: 64px;
    }
}

@media (max-width: 980px) {
    .rt-stats__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 60px auto 0;
    }
}

@media (max-width: 640px) {
    .rt-stats {
        padding: 70px 0 80px;
    }

    .rt-stats__title {
        font-size: 28px;
    }

    .rt-stats__grid {
        margin-top: 40px;
    }

    .rt-stats__number {
        font-size: 48px;
        -webkit-text-stroke: 1.5px #CACACA;
    }

    .rt-stats__card-title {
        font-size: 18px;
    }

    .rt-stats__text {
        font-size: 16px;
    }
}

/* =========================================
   REFERENCES SHOWCASE SECTION
========================================= */

.rt-references-section {
    padding: 110px 0 120px;
    overflow: hidden;
    background: #ffffff;
}

.rt-references-section__header {
    max-width: 1200px;
    margin: 0 auto 34px;
    padding: 0 24px;
    text-align: center;
}

.rt-references-section__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #EB5202;
}

.rt-references-section__intro {
    margin: 18px auto 0;
    max-width: 980px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.rt-references-slider {
    position: relative;
    width: 100%;
}

.rt-references-slider__track-wrap {
    position: relative;
    overflow: hidden;
    max-width: calc(1000px * 3 + 22px * 2);
    margin: 0 auto;
}

.rt-references-slider__track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    will-change: transform;
    transition: transform 0.5s ease;
    padding: 0;
}

.rt-references-slider__slide {
    width: 1000px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: #f6f6f6;
    flex: 0 0 auto;
}

    .rt-references-slider__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.rt-references-slider__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border: 2px solid #EB5202;
    border-radius: 50%;
    background: #ffffff;
    color: #EB5202;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.13s ease, border-color 0.2s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    padding: 0;
}

    .rt-references-slider__nav:hover {
        background: #EB5202;
        color: #ffffff;
        border-color: #EB5202;
    }

.rt-references-slider__nav-icon {
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
}

.rt-references-slider__nav.is-hiding {
    opacity: 0;
    pointer-events: none;
}

.rt-references-slider__nav.is-showing {
    opacity: 1;
}

.rt-references-section__content {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 0 24px;
    text-align: center;
}

.rt-references-section__subtitle {
    margin: 0 0 10px;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}

.rt-references-section__text {
    margin: 0 auto;
    max-width: 980px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.rt-references-slider__fade {
    display: none;
}

@media (min-width: 1930px) {
    .rt-references-slider__fade {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 160px;
        z-index: 4;
        pointer-events: none;
    }

    .rt-references-slider__fade--left {
        left: 0;
        background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
    }

    .rt-references-slider__fade--right {
        right: 0;
        background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
    }
}

/* LAPTOP */
@media (max-width: 1600px) {
    .rt-references-slider__slide {
        width: 880px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .rt-references-section {
        padding: 80px 0 90px;
    }

    .rt-references-section__title {
        font-size: 42px;
    }

    .rt-references-section__intro,
    .rt-references-section__text {
        font-size: 16px;
    }

    .rt-references-section__subtitle {
        font-size: 16px;
    }

    .rt-references-slider__slide {
        width: 78vw;
        max-width: 760px;
        border-radius: 10px;
    }

    .rt-references-slider__nav {
        width: 60px;
        height: 60px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .rt-references-section {
        padding: 30px 0 70px;
    }

    .rt-references-section__header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .rt-references-section__title {
        font-size: 28px;
    }

    .rt-references-section__intro {
        font-size: 15px;
        line-height: 1.65;
        margin-top: 14px;
    }

    .rt-references-section__subtitle {
        font-size: 15px;
    }

    .rt-references-section__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .rt-references-slider__slide {
        width: 82vw;
        border-radius: 10px;
    }

    .rt-references-slider__nav {
        width: 52px;
        height: 52px;
    }

    .rt-references-slider__nav-icon {
        font-size: 28px;
    }

    .rt-references-section__content {
        display: none;
    }

    .rt-references-section {
        padding-bottom: 60px;
    }
}


/* =========================================
   RÓLUNK HERO / NYITÓ BLOKK
========================================= */

.rt-about-hero {
    padding: 32px 0 40px;
    background: #ffffff;
}

.rt-about-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
}

/* BREADCRUMB */

.rt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

    .rt-breadcrumb a,
    .rt-breadcrumb span {
        font-family: "Barlow", sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.7;
        letter-spacing: 0;
        color: #949494;
        text-decoration: none;
    }

.rt-breadcrumb__arrow {
    color: #EB5202 !important;
}

/* CÍM */

.rt-about-hero__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

/* CÍM ALATTI NAGY SZÖVEG */

.rt-about-hero__lead {
    margin-top: 22px;
}

    .rt-about-hero__lead p {
        margin: 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.9;
        letter-spacing: 0;
        color: #000000;
    }

/* KÉP */

.rt-about-hero__image-wrap {
    margin-top: 34px;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.rt-about-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

/* KÉP ALATTI SZÖVEG */

.rt-about-hero__bottom-text {
    margin-top: 34px;
    max-width: 1440px; 
}

    .rt-about-hero__bottom-text p {
        margin: 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.7;
        letter-spacing: 0;
        color: #000000;
    }

/* RESPONSIVE */

@media (max-width: 1100px) {
    .rt-about-hero {
        padding: 24px 0 72px;
    }

    .rt-about-hero__title {
        font-size: 42px;
    }

    .rt-about-hero__lead p {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    .rt-about-hero {
        padding: 20px 0 0;
    }

    .rt-breadcrumb a,
    .rt-breadcrumb span {
        font-size: 14px;
    }

    .rt-about-hero__title {
        font-size: 28px;
    }

    .rt-about-hero__lead {
        margin-top: 16px;
    }

        .rt-about-hero__lead p {
            font-size: 18px;
            line-height: 1.7;
        }

    .rt-about-hero__image-wrap {
        margin-top: 24px;
        border-radius: 10px;
    }

    .rt-about-hero__bottom-text {
        margin-top: 22px;
    }

        .rt-about-hero__bottom-text p {
            font-size: 16px;
            line-height: 1.65;
        }
}


/* =========================================
   RÓLUNK – TÖRTÉNET / VÁLTOTT GRID
========================================= */

.rt-about-story {
    padding: 0 0 120px;
    background: #ffffff;
}

.rt-about-story__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-about-story__list {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ROW */

.rt-about-story__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.rt-about-story__row--reverse .rt-about-story__media {
    order: 2;
}

.rt-about-story__row--reverse .rt-about-story__content {
    order: 1;
}

/* IMAGE */

.rt-about-story__media {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

    .rt-about-story__media img {
        display: block;
        width: 710px;
        object-fit: cover;
    }

/* CONTENT */

.rt-about-story__content {
    max-width: 620px;
    padding-left: 30px;
}

/* TYPO – CÍM */

.rt-about-story__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

/* SZÖVEG */

.rt-about-story__text {
    margin: 28px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .rt-about-story {
        padding: 90px 0 100px;
    }

    .rt-about-story__row {
        gap: 40px;
    }

    .rt-about-story__media img {
        height: 400px;
    }

    .rt-about-story__content {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .rt-about-story__row,
    .rt-about-story__row--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

        .rt-about-story__row--reverse .rt-about-story__media,
        .rt-about-story__row--reverse .rt-about-story__content {
            order: initial;
        }

    .rt-about-story__media img {
        height: 340px;
    }

    .rt-about-story__content {
        max-width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .rt-about-story {
        padding: 70px 0 150px;
    }

    .rt-about-story__list {
        margin-top: 40px;
        gap: 36px;
    }

    .rt-about-story__title {
        font-size: 24px;
    }

    .rt-about-story__text {
        margin-top: 18px;
        font-size: 16px;
    }

    .rt-about-story__media img {
        height: 240px;
    }
}

/* =========================================
   ALAPÍTÓI / ÜGYVEZETŐI IDÉZET BLOKK
========================================= */

.rt-founder-quote {
    padding: 10px 0 0;
    background: #EEEFF0;
}

.rt-founder-quote__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

/* BAL OLDAL */

.rt-founder-quote__media {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rt-founder-quote__circle {
    position: absolute;
    width: 581px;
    height: 581px;
    border-radius: 50%;
    background: #AAADB2;
}

.rt-founder-quote__person {
    position: relative;
    width: 640px;
    height: auto;
    display: block;
    /* EZ A LÉNYEG */
    transform: translate(30px, -20px); /* feljebb húzza */

    filter: drop-shadow(0px 28px 26px rgba(0, 0, 0, 0.12));
}

/* JOBB OLDAL */

.rt-founder-quote__content {
    max-width: 560px;
}

.rt-founder-quote__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-founder-quote__text {
    margin-top: 24px;
}

    .rt-founder-quote__text p {
        margin: 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.7;
        letter-spacing: 0;
        color: #000000;
    }

.rt-founder-quote__signature {
    margin: 28px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .rt-founder-quote {
        padding: 80px 0 90px;
    }

    .rt-founder-quote__inner {
        gap: 20px;
    }

    .rt-founder-quote__media {
        min-height: 540px;
    }

    .rt-founder-quote__circle {
        left: 40px;
        top: 56px;
        width: 380px;
        height: 380px;
    }

    .rt-founder-quote__person {
        left: 40px;
        width: 450px;
    }

    .rt-founder-quote__content {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .rt-founder-quote {
        padding: 70px 0 80px;
    }

    .rt-founder-quote__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .rt-founder-quote__media {
        min-height: 520px;
    }

    .rt-founder-quote__circle {
        left: 50%;
        transform: translateX(-50%);
        top: 70px;
        width: 340px;
        height: 340px;
    }

    .rt-founder-quote__person {
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
    }

    .rt-founder-quote__content {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .rt-founder-quote {
        padding: 0 0 64px;
        overflow: visible;
    }

    .rt-founder-quote__inner {
        gap: 0;
        overflow: visible;
    }

    .rt-founder-quote__media {
        min-height: 440px;
        overflow: visible;
        align-items: flex-start;
        margin-top: -68px;
    }

    .rt-founder-quote__circle {
        top: 52px;
        left: 50%;
        transform: translateX(-50%);
        width: 320px;
        height: 320px;
    }

    .rt-founder-quote__person {
        left: 50%;
        width: 350px;
        transform: translate(-45%, -60px);
        filter: drop-shadow(0px 18px 18px rgba(0, 0, 0, 0.14));
    }

    .rt-founder-quote__content {
        max-width: 100%;
    }

    .rt-founder-quote__title {
        font-size: 24px;
    }

    .rt-founder-quote__text p,
    .rt-founder-quote__signature {
        font-size: 16px;
    }
}

/* =========================================
   CAREER CTA
========================================= */

.rt-career-cta {
    padding: 10px 0 40px;
    background: #ffffff; /* külső háttér */
}

.rt-career-cta__inner {
    max-width: 1440px;
    margin: 0 auto;
    background: #000000;
    border-radius: 20px;
    padding: 90px 40px 100px;
    text-align: center;
}

/* TITLE */

.rt-career-cta__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

/* SUBTITLE */

.rt-career-cta__subtitle {
    margin: 12px 0 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #ffffff; /* FIX: fekete nem látszana */
}

/* TEXT */

.rt-career-cta__text {
    margin: 28px auto 40px;
    max-width: 900px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
}

/* BUTTON */

.rt-career-cta__button {
    width: 288px;
    height: 52px;
    border-radius: 40px;
    border: 2px solid #F35909;
    background: #F35909;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
    transition: all 0.25s ease;
}

    /* arrow */

    .rt-career-cta__button svg {
        width: 20px;
        height: 20px;
        color: #ffffff;
        transition: color 0.25s ease, transform 0.2s ease;
    }

    /* HOVER */

    .rt-career-cta__button:hover {
        background: #ffffff;
        color: #F35909;
        border-color: #F35909;
    }

        .rt-career-cta__button:hover svg {
            color: #000000;
            transform: translateX(3px);
        }

/* RESPONSIVE */

@media (max-width: 980px) {
    .rt-career-cta__inner {
        padding: 70px 24px 80px;
    }

    .rt-career-cta__title {
        font-size: 40px;
    }

    .rt-career-cta__subtitle {
        font-size: 28px;
    }

    .rt-career-cta__text {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .rt-career-cta {
        padding: 60px 0;
    }

    .rt-career-cta__title {
        font-size: 28px;
    }

    .rt-career-cta__subtitle {
        font-size: 20px;
    }

    .rt-career-cta__button {
        width: 100%;
        max-width: 280px;
    }
}

/* --- CONTACT --- */

.contact-section {
    padding: 60px 20px 40px;
    background-color: #ffffff;
    color: #000000;
}

.contact-title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    text-align: center;
    font-size: 64px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 50px;
    color: #00A458;
}

.contact-subtitle {
    font-family: 'Barlow', sans-serif;
    text-align: center;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 400;
    color: #000000;
    margin-top: -25px;
    margin-bottom: 50px;
}

    .contact-subtitle::after {
        content: "";
        display: block;
        width: 240px;
        height: 4px;
        margin: 18px auto 32px;
        border-radius: 999px;
        background: linear-gradient( to right, rgba(206,240,224,0), #7ED9B3, #00A458, #7ED9B3, rgba(206,240,224,0) );
    }

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-form,
.contact-map {
    flex: 1 1 45%;
    min-width: 320px;
}

    .contact-form label {
        display: block;
        font-family: 'IBM Plex Sans Condensed', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.1;
        letter-spacing: -0.03em;
        margin-bottom: 8px;
        color: #000000;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #d9eee1;
        border-radius: 10px;
        font-size: 1rem;
        margin-bottom: 20px;
        font-family: 'Barlow', sans-serif;
        color: #000000;
        resize: none;
        background: #ffffff;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

        .contact-form input.error,
        .contact-form textarea.error {
            border: 2px solid #d93025;
            outline: none;
        }

        .contact-form input:focus:not(.error),
        .contact-form textarea:focus:not(.error) {
            border-color: #00A458;
            box-shadow: 0 0 0 4px rgba(0, 164, 88, 0.12);
            outline: none;
        }

        .contact-form input.error:focus,
        .contact-form textarea.error:focus {
            border-color: #b30000;
            box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12);
            outline: none;
        }

.submit-btn {
    min-height: 52px;
    padding: 0 28px;
    border: 2px solid #00A458;
    border-radius: 999px;
    background: transparent;
    color: #000000;
    cursor: pointer;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    margin-top: 16px;
}

    .submit-btn:hover {
        transform: translateY(-1px);
        background: #00A458;
        color: #ffffff;
    }

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.form-message {
    margin-top: 10px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: #0D472C;
}

/* TABLET */
@media (max-width: 1100px) {
    .contact-title {
        font-size: 48px;
    }

    .contact-subtitle {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-section {
        padding: 48px 16px 32px;
    }

    .contact-title {
        font-size: 38px;
        line-height: 1.08;
        margin-bottom: 34px;
    }

    .contact-subtitle {
        font-size: 16px;
        margin-top: -12px;
        margin-bottom: 34px;
    }

        .contact-subtitle::after {
            width: 140px;
            margin: 14px auto 22px;
        }

    .contact-form label {
        font-size: 22px;
    }

    .submit-btn {
        width: 100%;
    }
}

/* --- CONTACT --- */

.contact-section {
    padding: 60px 20px 40px;
    background-color: #ffffff;
    color: #000000;
}

.contact-title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    text-align: center;
    font-size: 64px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 50px;
    color: #EB5202; /* ✔ */
}

.contact-subtitle {
    font-family: 'Barlow', sans-serif;
    text-align: center;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 400;
    color: #000000;
    margin-top: -25px;
    margin-bottom: 50px;
}

    .contact-subtitle::after {
        content: "";
        display: block;
        width: 240px;
        height: 4px;
        margin: 18px auto 32px;
        border-radius: 999px;
        background: linear-gradient( to right, rgba(235, 82, 2, 0), #F78A4A, #EB5202, #F78A4A, rgba(235, 82, 2, 0) ); /* ✔ narancs gradient */
    }

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-form,
.contact-map {
    flex: 1 1 45%;
    min-width: 320px;
}

    .contact-form label {
        display: block;
        font-family: 'IBM Plex Sans Condensed', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.1;
        letter-spacing: -0.03em;
        margin-bottom: 8px;
        color: #000000;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #F5C1A5; /* ✔ világos narancs */
        border-radius: 10px;
        font-size: 1rem;
        margin-bottom: 20px;
        font-family: 'Barlow', sans-serif;
        color: #000000;
        resize: none;
        background: #ffffff;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

        .contact-form input.error,
        .contact-form textarea.error {
            border: 2px solid #d93025;
            outline: none;
        }

        .contact-form input:focus:not(.error),
        .contact-form textarea:focus:not(.error) {
            border-color: #EB5202; /* ✔ */
            box-shadow: 0 0 0 4px rgba(235, 82, 2, 0.15); /* ✔ */
            outline: none;
        }

        .contact-form input.error:focus,
        .contact-form textarea.error:focus {
            border-color: #b30000;
            box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12);
            outline: none;
        }

.submit-btn {
    min-height: 52px;
    padding: 0 28px;
    border: 2px solid #EB5202; /* ✔ */
    border-radius: 999px;
    background: transparent;
    color: #000000;
    cursor: pointer;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    margin-top: 16px;
}

    .submit-btn:hover {
        transform: translateY(-1px);
        background: #EB5202; /* ✔ */
        color: #ffffff;
    }

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.form-message {
    margin-top: 10px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: #7A2F0A; /* ✔ narancsos sötét */
}

/* =========================================
   SZOLGÁLTATÁSAINK – INTRO (RÓLUNK STYLE)
========================================= */

.rt-services-page-intro {
    padding: 32px 0 40px;
    background: #ffffff;
}

.rt-services-page-intro__inner {
    max-width: 1440px;
    margin: 0 auto;
}

/* BREADCRUMB – ugyanaz */

.rt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

    .rt-breadcrumb a,
    .rt-breadcrumb span {
        font-family: "Barlow", sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.7;
        color: #949494;
    }

.rt-breadcrumb__arrow {
    color: #EB5202;
}

/* CÍM – ugyanaz mint Rólunk */

.rt-services-page-intro__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

/* SZÖVEG – ugyanaz mint Rólunk */

.rt-services-page-intro__text {
    margin-top: 18px;
    max-width: 1440px;
}

    .rt-services-page-intro__text p {
        margin: 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.9;
        color: #000000;
    }

        .rt-services-page-intro__text p + p {
            margin-top: 0;
        }

/* RESPONSIVE */

@media (max-width: 1100px) {
    .rt-services-page-intro__title {
        font-size: 44px;
    }

    .rt-services-page-intro__text p {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    .rt-services-page-intro__title {
        font-size: 34px;
    }

    .rt-services-page-intro__text {
        margin-top: 14px;
    }

        .rt-services-page-intro__text p {
            font-size: 18px;
            line-height: 1.7;
        }
}

@media (max-width: 640px) {
    .rt-services-page-intro__title {
        font-size: 28px;
    }

    .rt-services-page-intro__text p {
        font-size: 16px;
    }
}


/* =========================================
   SZOLGÁLTATÁSOK – VÁLTOTT GRID
========================================= */

.rt-services {
    padding: 0 0 120px;
    background: #ffffff;
}

.rt-services__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-services__list {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ROW */

.rt-services__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.rt-services__row--reverse .rt-services__media {
    order: 2;
}

.rt-services__row--reverse .rt-services__content {
    order: 1;
}

/* IMAGE */

.rt-services__media {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

    .rt-services__media img {
        display: block;
        width: 710px;
        height: 360px;
        object-fit: cover;
    }

/* CONTENT */

.rt-services__content {
    max-width: 620px;
    padding-left: 30px;
}

.rt-services__eyebrow {
    margin: 0 0 10px;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #F35909;
}

/* TYPO – CÍM */

.rt-services__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

/* SZÖVEG */

.rt-services__text {
    margin: 28px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

.rt-services__link {
    display: inline-block;
    margin-top: 28px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    text-decoration: none;
}

    .rt-services__link:hover {
        opacity: 0.75;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .rt-services {
        padding: 90px 0 100px;
    }

    .rt-services__row {
        gap: 40px;
    }

    .rt-services__media img {
        width: 100%;
        height: 400px;
    }

    .rt-services__content {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .rt-services__row,
    .rt-services__row--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

        .rt-services__row--reverse .rt-services__media,
        .rt-services__row--reverse .rt-services__content {
            order: initial;
        }

    .rt-services__media img {
        width: 100%;
        height: 340px;
    }

    .rt-services__content {
        max-width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .rt-services {
        padding: 70px 0 80px;
    }

    .rt-services__list {
        margin-top: 40px;
        gap: 36px;
    }

    .rt-services__eyebrow {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .rt-services__title {
        font-size: 24px;
    }

    .rt-services__text {
        margin-top: 18px;
        font-size: 16px;
    }

    .rt-services__media img {
        height: 240px;
    }
}

/* =========================================
   KONTAKT CTA – FULL WIDTH (CAREER STYLE)
========================================= */

.rt-contact-cta {
    width: 100%;
    padding: 110px 20px 120px;
    background: #000000;
}

.rt-contact-cta__inner {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

/* TITLE */

.rt-contact-cta__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

/* TEXT */

.rt-contact-cta__text {
    margin: 28px auto 40px;
    max-width: 900px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
}

/* BUTTON – ugyanaz mint amit küldtél */

.rt-contact-cta__button {
    width: 288px;
    height: 52px;
    border-radius: 40px;
    border: 2px solid #F35909;
    background: #F35909;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
    transition: all 0.25s ease;
}

    /* arrow */

    .rt-contact-cta__button svg {
        width: 20px;
        height: 20px;
        color: #ffffff;
        transition: color 0.25s ease, transform 0.2s ease;
    }

    /* HOVER – ugyanaz */

    .rt-contact-cta__button:hover {
        background: #ffffff;
        color: #F35909;
        border-color: #F35909;
    }

        .rt-contact-cta__button:hover svg {
            color: #000000;
            transform: translateX(3px);
        }

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 980px) {
    .rt-contact-cta {
        padding: 90px 24px 100px;
    }

    .rt-contact-cta__title {
        font-size: 40px;
    }

    .rt-contact-cta__text {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .rt-contact-cta {
        padding: 70px 20px 80px;
    }

    .rt-contact-cta__title {
        font-size: 28px;
    }

    .rt-contact-cta__button {
        width: 100%;
        max-width: 280px;
    }
}

/* =========================================
   REFERENCIÁINK – INTRO (RÓLUNK / SZOLGÁLTATÁSOK STYLE)
========================================= */

.rt-references-page-intro {
    padding: 32px 0 40px;
    background: #ffffff;
}

.rt-references-page-intro__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BREADCRUMB – ugyanaz a logika */

.rt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

    .rt-breadcrumb a,
    .rt-breadcrumb span {
        font-family: "Barlow", sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.7;
        color: #949494;
    }

    .rt-breadcrumb a {
        text-decoration: none;
    }

.rt-breadcrumb__arrow {
    color: #EB5202;
}

/* CÍM */

.rt-references-page-intro__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

/* SZÖVEG */

.rt-references-page-intro__text {
    margin-top: 18px;
    max-width: 1440px;
}

    .rt-references-page-intro__text p {
        margin: 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.9;
        color: #000000;
    }

/* RESPONSIVE */

@media (max-width: 1100px) {
    .rt-references-page-intro__title {
        font-size: 44px;
    }

    .rt-references-page-intro__text p {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    .rt-references-page-intro__title {
        font-size: 34px;
    }

    .rt-references-page-intro__text {
        margin-top: 14px;
    }

        .rt-references-page-intro__text p {
            font-size: 18px;
            line-height: 1.7;
        }
}

@media (max-width: 640px) {
    .rt-references-page-intro__title {
        font-size: 28px;
    }

    .rt-references-page-intro__text p {
        font-size: 16px;
    }
}

/* =========================================
   ESETTANULMÁNYOK
========================================= */

.rt-case-studies {
    padding: 110px 0 120px;
    background: #ffffff;
}

.rt-case-studies__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px; /* fontos a konzisztenciához */
}

/* TITLE */

.rt-case-studies__title {
    margin: 0;
    text-align: center;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

/* GRID */

.rt-case-studies__grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

/* CARD */

.rt-case-card {
    display: flex;
    flex-direction: column;
}

/* IMAGE */

.rt-case-card__media {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}

    .rt-case-card__media img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

/* TITLE */

.rt-case-card__title {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
}

/* TEXT */

.rt-case-card__text {
    margin-top: 12px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
}

/* LINK */

.rt-case-card__link {
    margin-top: 14px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .rt-case-card__link:hover {
        color: #F35909;
        transform: translateX(2px);
    }

/* CTA */

.rt-case-studies__cta {
    margin-top: 40px;
    text-align: center;
}

.rt-case-studies__button {
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    border: 2px solid #F35909;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .rt-case-studies__button:hover {
        background: #F35909;
        color: #ffffff;
    }



/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .rt-case-studies__title {
        font-size: 44px;
    }

    .rt-case-studies__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rt-case-studies {
        padding: 80px 0 90px;
    }

    .rt-case-studies__title {
        font-size: 34px;
    }

    .rt-case-studies__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .rt-case-studies__title {
        font-size: 28px;
    }

    .rt-case-card__text {
        font-size: 15px;
    }
}

/* =========================================
   REFERENCIÁK – PARTNEREK
========================================= */

.rt-partners-section {
    padding: 20px 0 40px;
    background: #ffffff;
}

/* CÍM – változatlan */

.rt-partners-section__title {
    margin: 0 0 46px;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #F35909;
}

/* GRID – FLEX */

.rt-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
}

/* KÁRTYA */

.rt-partner-card {
    flex: 0 0 318px;
    height: 115px;
    background: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* LOGÓ */

    .rt-partner-card img {
        max-width: 200px;
        max-height: 70px;
        object-fit: contain;
        opacity: 0.75;
        filter: grayscale(100%);
        transition: opacity 0.2s ease, filter 0.2s ease;
    }

    /* HOVER */

    .rt-partner-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

        .rt-partner-card:hover img {
            opacity: 1;
            filter: grayscale(0%);
        }

/* TABLET */

@media (max-width: 1100px) {
    .rt-partners-section__title {
        font-size: 44px;
    }

    .rt-partners-grid {
        gap: 20px;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .rt-partners-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .rt-partners-section__title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .rt-partners-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 6px 0;
        margin: 0;
        scrollbar-width: none;
    }

        .rt-partners-grid::-webkit-scrollbar {
            display: none;
        }

    .rt-partner-card {
        flex: 0 0 82%;
        height: 80px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

        .rt-partner-card img {
            max-width: 100px;
            max-height: 30px;
        }
}

/* =========================================
   REFERENCIÁK – ÜGYFÉLVÉLEMÉNYEK
========================================= */

.rt-reviews-section {
    padding: 96px 0 88px;
    background: #F7F7F7;
}

.rt-reviews-section__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.rt-reviews-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.rt-reviews-section__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #F35909;
}

/* FULLBLEED GRID */

.rt-reviews-fullbleed {
    width: 100%;
    max-width: 1930px;
    margin: 0 auto;
}

.rt-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

/* CARD */

.rt-review-card {
    display: flex;
    flex-direction: column;
}

.rt-review-card__bubble {
    position: relative;
    background: #EFEFEF;
    border-radius: 14px;
    min-height: 320px;
    padding: 46px 34px 40px;
    margin-bottom: 26px;
}

    .rt-review-card__bubble::after {
        content: "";
        position: absolute;
        left: 56px;
        bottom: -12px;
        width: 24px;
        height: 24px;
        background: #EFEFEF;
        transform: rotate(45deg);
        border-radius: 4px;
    }

/* QUOTE */

.rt-review-card__quote {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    font-style: italic;
    color: #2A2A2A;
}

/* AUTHOR */

.rt-review-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
}

.rt-review-card__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #D9D9D9;
}

    .rt-review-card__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.rt-review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rt-review-card__name {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: #111111;
}

.rt-review-card__role {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    color: #444444;
}

/* FOOTER */

.rt-reviews-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}

.rt-reviews-section__button {
    min-height: 52px;
    padding: 0 28px;
    border: 2px solid #F35909;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    background: transparent;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .rt-reviews-section__button:hover {
        background: #F35909;
        color: #ffffff;
        transform: translateY(-1px);
    }

/* 1930 alatt a két szélső buborék külső oldala legyen levágva */
@media (max-width: 1929px) {
    .rt-review-card__bubble--left {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .rt-review-card__bubble--right {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* LAPTOP */
@media (max-width: 1400px) {
    .rt-reviews-section__title {
        font-size: 44px;
    }

    .rt-reviews-grid {
        gap: 16px;
    }

    .rt-review-card__bubble {
        min-height: 250px;
        padding: 38px 28px 34px;
    }

    .rt-review-card__quote {
        font-size: 15px;
        line-height: 1.8;
    }

    .rt-review-card__author {
        padding: 0 20px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .rt-reviews-section {
        padding: 76px 0 72px;
    }

    .rt-reviews-section__header {
        margin-bottom: 34px;
    }

    .rt-reviews-section__title {
        font-size: 34px;
    }

    .rt-reviews-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 0 24px;
    }

    .rt-review-card__bubble,
    .rt-review-card__bubble--left,
    .rt-review-card__bubble--right {
        border-radius: 14px;
        min-height: auto;
    }

    .rt-review-card__author {
        padding: 0;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .rt-reviews-section {
        padding: 56px 0 56px;
    }

    .rt-reviews-section__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .rt-reviews-section__header {
        margin-bottom: 26px;
    }

    .rt-reviews-grid {
        padding: 0 16px;
    }

    .rt-review-card__bubble,
    .rt-review-card__bubble--left,
    .rt-review-card__bubble--right {
        padding: 28px 20px 24px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

        .rt-review-card__bubble::after {
            left: 34px;
            width: 18px;
            height: 18px;
            bottom: -9px;
        }

    .rt-review-card__quote {
        font-size: 15px;
        line-height: 1.75;
    }

    .rt-review-card__avatar {
        width: 48px;
        height: 48px;
    }

    .rt-review-card__name,
    .rt-review-card__role {
        font-size: 14px;
    }

    .rt-reviews-section__button {
        width: 100%;
        max-width: 280px;
        font-size: 17px;
    }
}

.sr-product-offer-notice {
    margin: 48px auto 0;
    max-width: 780px;
    padding: 20px 28px;
    border-radius: 999px;
    background: rgba(235, 82, 2, 0.08); /* halvány narancs */
    color: #EB5202;
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    border: 1px solid rgba(235, 82, 2, 0.18);
}

.cookie-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 9999;
    width: min(720px, calc(100% - 32px));
    transform: translate(-50%, calc(100% + 40px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

    .cookie-bar.is-visible {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: auto;
    }

    .cookie-bar.is-hiding {
        transform: translate(-50%, calc(100% + 40px));
        opacity: 0;
        pointer-events: none;
    }

.cookie-bar__inner {
    min-height: 46px;
    padding: 8px 12px 8px 18px;
    border-radius: 999px;
    background: #f4e7b8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-bar__text {
    margin: 0;
    color: #000000;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.cookie-bar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-bar__accept {
    border: 0;
    border-radius: 999px;
    padding: 8px 18px;
    background: #000000;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .cookie-bar__accept:hover {
        background: #222222;
        transform: translateY(-1px);
    }

.cookie-bar__close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .cookie-bar__close:hover {
        background: rgba(0, 0, 0, 0.14);
        transform: translateY(-1px);
    }

@media (max-width: 767px) {
    .cookie-bar {
        bottom: 14px;
        width: calc(100% - 24px);
    }

    .cookie-bar__inner {
        border-radius: 22px;
        padding: 10px 10px 10px 16px;
        gap: 12px;
    }

    .cookie-bar__text {
        font-size: 14px;
    }

    .cookie-bar__accept {
        padding: 8px 14px;
        font-size: 13px;
    }

    .cookie-bar__close {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
}

/* =========================================
   SERVICE DETAIL PAGE
========================================= */

.rt-service-detail-hero {
    padding: 32px 0 54px;
    background: #ffffff;
}

.rt-service-detail-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-service-detail-hero__title {
    margin: 0;
    max-width: 1180px;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-service-detail-hero__lead {
    margin-top: 24px;
    max-width: 1440px;
}

    .rt-service-detail-hero__lead p {
        margin: 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.9;
        color: #000000;
    }

        .rt-service-detail-hero__lead p + p {
            margin-top: 22px;
        }

.rt-service-detail {
    padding: 40px 0 70px;
    background: #ffffff;
}

.rt-service-detail--why {
    padding: 110px 0 120px;
}

.rt-service-detail__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-service-detail-block {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding: 64px 56px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0px 4px 100px 0px #00000012;
}

    .rt-service-detail-block + .rt-service-detail-block {
        margin-top: 34px;
    }

.rt-service-detail-block--dark {
    background: #000000;
    box-shadow: none;
}

.rt-service-detail-block__eyebrow {
    display: none;
}

.rt-service-detail-block__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.35;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-service-detail-block--dark .rt-service-detail-block__title {
    color: #ffffff;
}

.rt-service-detail-block__content p {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    color: #000000;
}

    .rt-service-detail-block__content p + p {
        margin-top: 24px;
    }

.rt-service-detail-block--dark .rt-service-detail-block__content p {
    color: #ffffff;
}

/* =========================================
   FEATURE LIST
========================================= */

.rt-feature-list {
    list-style: none;
    margin: 34px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 44px;
    row-gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

    .rt-feature-list li {
        position: relative;
        min-height: 58px;
        padding: 16px 0 16px 34px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        font-family: "Barlow", sans-serif;
        font-weight: 600;
        font-size: 17px;
        line-height: 1.45;
        color: #000000;
    }

        .rt-feature-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 24px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #F35909;
        }

.rt-feature-list--dark {
    border-top-color: rgba(255, 255, 255, 0.18);
}

    .rt-feature-list--dark li {
        border-bottom-color: rgba(255, 255, 255, 0.18);
        color: #ffffff;
    }

        .rt-feature-list--dark li::before {
            color: #F35909;
        }

/* =========================================
   REUSABLE PROCESS FLOW
========================================= */

.rt-process-section {
    padding: 110px 0 120px;
    background: #F7F7F7;
    overflow: hidden;
}

.rt-process-section__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-process-section__header {
    max-width: 960px;
    margin: 0 auto 74px;
    text-align: center;
}

.rt-process-section__eyebrow {
    display: none;
}

.rt-process-section__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-process-section__intro {
    margin: 18px auto 0;
    max-width: 820px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

.rt-process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.rt-process-flow__line {
    position: absolute;
    left: calc((100% / 8) + 43px);
    right: calc((100% / 8) + 43px);
    top: 43px;
    height: 2px;
    background: rgba(235, 82, 2, 0.24);
    overflow: hidden;
}

    .rt-process-flow__line::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #F35909;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 2.2s linear 0.6s;
    }

.rt-process-flow.is-visible .rt-process-flow__line::after {
    transform: scaleX(1);
}

.rt-process-flow__item {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease 0.25s, transform 0.85s ease 0.25s;
}

    .rt-process-flow__item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.rt-process-flow__number {
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #F35909;
    color: #F35909;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.08em;
    box-shadow: 0px 18px 38px rgba(0, 0, 0, 0.12);
}

.rt-process-flow__card {
    min-height: 230px;
    padding: 34px 24px 30px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0px 4px 80px 0px #00000010;
    text-align: center;
}

    .rt-process-flow__card h3 {
        margin: 0;
        min-height: 46px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        font-family: "Syncopate", sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.45;
        letter-spacing: -0.08em;
        text-transform: uppercase;
        color: #000000;
    }

    .rt-process-flow__card p {
        margin: 18px 0 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.65;
        color: #000000;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .rt-service-detail-hero__title,
    .rt-process-section__title {
        font-size: 44px;
    }

    .rt-service-detail-hero__lead p {
        font-size: 21px;
    }

    .rt-service-detail-block {
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 44px;
        padding: 58px 42px;
    }

    .rt-service-detail-block__title {
        font-size: 28px;
    }

    .rt-process-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 38px;
    }

    .rt-process-flow__line {
        display: none;
    }
}

@media (max-width: 980px) {
    .rt-service-detail-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rt-feature-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .rt-process-flow {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
        gap: 22px;
    }

    .rt-process-flow__item {
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 18px;
        align-items: stretch;
    }

    .rt-process-flow__number {
        margin: 0;
    }

    .rt-process-flow__card {
        min-height: auto;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .rt-service-detail-hero {
        padding: 20px 0 36px;
    }

    .rt-service-detail-hero__title,
    .rt-process-section__title {
        font-size: 28px;
    }

    .rt-service-detail-hero__lead {
        margin-top: 16px;
    }

        .rt-service-detail-hero__lead p {
            font-size: 16px;
            line-height: 1.75;
        }

    .rt-service-detail {
        padding: 24px 0 46px;
    }

    .rt-service-detail--why {
        padding: 70px 0 80px;
    }

    .rt-service-detail-block {
        padding: 38px 22px;
        border-radius: 18px;
    }

    .rt-service-detail-block__title {
        font-size: 23px;
    }

    .rt-service-detail-block__content p {
        font-size: 16px;
    }

    .rt-feature-list {
        margin: 24px 0;
    }

        .rt-feature-list li {
            min-height: 52px;
            padding: 15px 0 15px 32px;
            font-size: 15px;
        }

            .rt-feature-list li::before {
                top: 15px;
                font-size: 18px;
            }

    .rt-process-section {
        padding: 70px 0 80px;
    }

    .rt-process-section__header {
        margin-bottom: 42px;
    }

    .rt-process-section__intro {
        font-size: 16px;
    }

    .rt-process-flow__item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 14px;
    }

    .rt-process-flow__number {
        width: 64px;
        height: 64px;
        font-size: 15px;
    }

    .rt-process-flow__card {
        padding: 24px 18px 22px;
        border-radius: 16px;
    }

        .rt-process-flow__card h3 {
            font-size: 15px;
        }

        .rt-process-flow__card p {
            font-size: 15px;
            line-height: 1.6;
        }
}

/* =========================================
   SERVICE DETAIL HERO
========================================= */

.rt-service-detail-hero {
    padding: 32px 0 64px;
    background: #ffffff;
}

.rt-service-detail-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-service-detail-hero__title {
    margin: 0;
    max-width: 1180px;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-service-detail-hero__lead {
    margin-top: 24px;
    max-width: 1440px;
}

    .rt-service-detail-hero__lead p {
        margin: 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.9;
        color: #000000;
    }

.rt-service-detail-hero__image-wrap {
    margin-top: 38px;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.rt-service-detail-hero__image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* =========================================
   SERVICE ROWS
========================================= */

.rt-service-rows {
    padding: 30px 0 110px;
    background: #ffffff;
}

.rt-service-rows__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-service-rows__list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.rt-service-row-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.rt-service-row-detail--reverse .rt-service-row-detail__content {
    order: 2;
}

.rt-service-row-detail--reverse .rt-service-row-detail__media {
    order: 1;
}

.rt-service-row-detail__content {
    max-width: 640px;
    padding-left: 34px;
}

.rt-service-row-detail--reverse .rt-service-row-detail__content {
    padding-left: 0;
    padding-right: 34px;
    margin-left: auto;
}

.rt-service-row-detail__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.45;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-service-row-detail__text {
    margin: 26px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    color: #000000;
}

.rt-service-row-detail__media {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

    .rt-service-row-detail__media img {
        display: block;
        width: 100%;
        height: 390px;
        object-fit: cover;
    }

/* =========================================
   SERVICE BENEFITS
========================================= */

.rt-service-benefits {
    padding: 110px 0 120px;
    background: #000000;
}

.rt-service-benefits__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-service-benefits__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
    gap: 34px;
    align-items: stretch;
}

.rt-service-benefits__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-service-benefits__grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rt-service-benefit-card {
    position: relative;
    min-height: 245px;
    padding: 34px 26px 32px;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
}


.rt-service-benefit-card h3 {
    margin: 0;
    min-height: 52px;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.45;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #000000;
}

.rt-service-benefit-card p {
    margin: 18px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: #000000;
}

.rt-service-benefits__media {
    border-radius: 18px;
    overflow: hidden;
    min-height: 100%;
    line-height: 0;
}

    .rt-service-benefits__media img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 620px;
        object-fit: cover;
    }

/* =========================================
   REUSABLE PROCESS FLOW
========================================= */

.rt-process-section {
    padding: 110px 0 120px;
    background: #F7F7F7;
    overflow: hidden;
}

.rt-process-section__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-process-section__header {
    max-width: 1060px;
    margin: 0 auto 74px;
    text-align: center;
}

.rt-process-section__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-process-section__intro {
    margin: 18px auto 0;
    max-width: 820px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

.rt-process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.rt-process-flow--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1240px;
    margin: 0 auto;
}

.rt-process-flow__line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 43px;
    height: 2px;
    background: rgba(235, 82, 2, 0.24);
    overflow: hidden;
}

    .rt-process-flow__line::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #F35909;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 2.2s linear 0.6s;
    }

.rt-process-flow.is-visible .rt-process-flow__line::after {
    transform: scaleX(1);
}

.rt-process-flow__item {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease 0.25s, transform 0.85s ease 0.25s;
}

    .rt-process-flow__item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.rt-process-flow__number {
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #F35909;
    color: #F35909;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.08em;
    box-shadow: 0px 18px 38px rgba(0, 0, 0, 0.12);
}

.rt-process-flow__card {
    min-height: 250px;
    padding: 34px 24px 30px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0px 4px 80px 0px #00000010;
    text-align: center;
}

    .rt-process-flow__card h3 {
        margin: 0;
        font-family: "Syncopate", sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.45;
        letter-spacing: -0.08em;
        text-transform: uppercase;
        color: #000000;
    }

    .rt-process-flow__card p {
        margin: 18px 0 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.65;
        color: #000000;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .rt-service-detail-hero__title,
    .rt-service-benefits__title,
    .rt-process-section__title {
        font-size: 44px;
    }

    .rt-service-detail-hero__lead p {
        font-size: 21px;
    }

    .rt-service-detail-hero__image {
        height: 440px;
    }

    .rt-service-row-detail {
        gap: 40px;
    }

    .rt-service-row-detail__content,
    .rt-service-row-detail--reverse .rt-service-row-detail__content {
        padding-left: 0;
        padding-right: 0;
    }

    .rt-service-row-detail__title {
        font-size: 28px;
    }

    .rt-service-benefits__layout {
        grid-template-columns: 1fr;
    }

    .rt-service-benefits__media img {
        min-height: 420px;
    }

    .rt-process-flow,
    .rt-process-flow--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 820px;
        row-gap: 38px;
    }

    .rt-process-flow__line {
        display: none;
    }
}

@media (max-width: 980px) {
    .rt-service-row-detail,
    .rt-service-row-detail--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

        .rt-service-row-detail--reverse .rt-service-row-detail__content,
        .rt-service-row-detail--reverse .rt-service-row-detail__media {
            order: initial;
        }

    .rt-service-row-detail__content {
        max-width: 100%;
    }

    .rt-service-row-detail__media img {
        height: 340px;
    }

    .rt-process-flow,
    .rt-process-flow--four {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
        gap: 22px;
    }

    .rt-process-flow__item {
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 18px;
        align-items: stretch;
    }

    .rt-process-flow__number {
        margin: 0;
    }

    .rt-process-flow__card {
        min-height: auto;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .rt-service-detail-hero {
        padding: 20px 0 44px;
    }

    .rt-service-detail-hero__title,
    .rt-service-benefits__title,
    .rt-process-section__title {
        font-size: 28px;
    }

    .rt-service-detail-hero__lead {
        margin-top: 16px;
    }

        .rt-service-detail-hero__lead p {
            font-size: 16px;
            line-height: 1.75;
        }

    .rt-service-detail-hero__image-wrap {
        margin-top: 26px;
        border-radius: 10px;
    }

    .rt-service-detail-hero__image {
        height: 260px;
    }

    .rt-service-rows {
        padding: 20px 0 80px;
    }

    .rt-service-rows__list {
        gap: 38px;
    }

    .rt-service-row-detail__title {
        font-size: 24px;
    }

    .rt-service-row-detail__text {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.7;
    }

    .rt-service-row-detail__media img {
        height: 240px;
    }

    .rt-service-benefits {
        padding: 70px 0 80px;
    }

    .rt-service-benefits__grid {
        margin-top: 42px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rt-service-benefit-card {
        min-height: auto;
        padding: 34px 22px 32px;
        border-radius: 16px;
    }

    .rt-service-benefit-card__number {
        margin-bottom: 24px;
        font-size: 38px;
    }

    .rt-service-benefit-card h3 {
        min-height: auto;
        font-size: 16px;
    }

    .rt-service-benefit-card p {
        font-size: 15px;
    }

    .rt-service-benefits__media img {
        min-height: 260px;
    }

    .rt-process-section {
        padding: 70px 0 80px;
    }

    .rt-process-section__header {
        margin-bottom: 42px;
    }

    .rt-process-section__intro {
        font-size: 16px;
    }

    .rt-process-flow__item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 14px;
    }

    .rt-process-flow__number {
        width: 64px;
        height: 64px;
        font-size: 15px;
    }

    .rt-process-flow__card {
        padding: 24px 18px 22px;
        border-radius: 16px;
    }

        .rt-process-flow__card h3 {
            font-size: 15px;
        }

        .rt-process-flow__card p {
            font-size: 15px;
            line-height: 1.6;
        }
}

.rt-process-flow--four .rt-process-flow__line {
    left: calc(12.5% + 23px);
    right: calc(12.5% + 23px);
}

/* =========================================
   SERVICE INTRO SPLIT
========================================= */

.rt-service-intro-split {
    padding: 30px 0 110px;
    background: #ffffff;
}

.rt-service-intro-split__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

.rt-service-intro-split__media {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

    .rt-service-intro-split__media img {
        display: block;
        width: 100%;
        height: 480px;
        object-fit: cover;
    }

.rt-service-intro-split__content {
    max-width: 660px;
}

    .rt-service-intro-split__content h2 {
        margin: 0;
        font-family: "Syncopate", sans-serif;
        font-weight: 700;
        font-size: 34px;
        line-height: 1.35;
        letter-spacing: -0.08em;
        text-transform: uppercase;
        color: #F35909;
    }

    .rt-service-intro-split__content p {
        margin: 26px 0 0;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.75;
        color: #000000;
    }

/* =========================================
   FLIP PILLARS
========================================= */

.rt-flip-pillars {
    padding: 110px 0 120px;
    background: #000000;
}

.rt-flip-pillars__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.rt-flip-pillars__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.3;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
    color: #F35909;
}

.rt-flip-pillars__grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rt-flip-card {
    min-height: 270px;
    perspective: 1200px;
}

.rt-flip-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 270px;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.rt-flip-card:hover .rt-flip-card__inner {
    transform: rotateY(180deg);
}

.rt-flip-card__face {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    backface-visibility: hidden;
    overflow: hidden;
}

.rt-flip-card__face--front {
    padding: 48px 34px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .rt-flip-card__face--front span {
        display: block;
        font-family: "Syncopate", sans-serif;
        font-weight: 700;
        font-size: 72px;
        line-height: 1;
        letter-spacing: -0.08em;
        color: transparent;
        -webkit-text-stroke: 1.4px #F35909;
    }

    .rt-flip-card__face--front h3 {
        margin: 0;
        font-family: "Syncopate", sans-serif;
        font-weight: 700;
        font-size: 26px;
        line-height: 1.35;
        letter-spacing: -0.08em;
        text-transform: uppercase;
        color: #000000;
    }

.rt-flip-card__face--back {
    padding: 44px 34px;
    background: #F35909;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
}

    .rt-flip-card__face--back p {
        margin: 0;
        font-family: "Barlow", sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.75;
        color: #ffffff;
    }

/* =========================================
   SERVICE WHY IMAGE
========================================= */

.rt-service-why-image {
    padding: 110px 0 120px;
    background: #ffffff;
}

.rt-service-why-image__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

.rt-service-why-image__content h2 {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.35;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-service-why-image__content p {
    margin: 28px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.8;
    color: #000000;
}

.rt-service-why-image__media {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

    .rt-service-why-image__media img {
        display: block;
        width: 100%;
        height: 480px;
        object-fit: cover;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .rt-service-intro-split__inner,
    .rt-service-why-image__inner {
        gap: 40px;
    }

    .rt-flip-pillars__title {
        font-size: 44px;
    }

    .rt-flip-card__face--front h3 {
        font-size: 22px;
    }

    .rt-service-why-image__content h2 {
        font-size: 34px;
    }
}

@media (max-width: 980px) {
    .rt-service-intro-split__inner,
    .rt-service-why-image__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rt-service-intro-split__content {
        max-width: 100%;
    }

    .rt-flip-pillars__grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .rt-flip-card,
    .rt-flip-card__inner {
        min-height: 300px;
    }

    .rt-service-why-image__media {
        order: -1;
    }
}

@media (max-width: 640px) {
    .rt-service-intro-split {
        padding: 20px 0 80px;
    }

    .rt-service-intro-split__media img,
    .rt-service-why-image__media img {
        height: 260px;
    }

    .rt-service-intro-split__content h2,
    .rt-service-why-image__content h2 {
        font-size: 24px;
    }

    .rt-service-intro-split__content p,
    .rt-service-why-image__content p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.7;
    }

    .rt-flip-pillars {
        padding: 70px 0 80px;
    }

    .rt-flip-pillars__title {
        font-size: 28px;
    }

    .rt-flip-pillars__grid {
        margin-top: 42px;
        gap: 18px;
    }

    .rt-flip-card,
    .rt-flip-card__inner {
        min-height: 200px;
    }

    .rt-flip-card__face--front,
    .rt-flip-card__face--back {
        padding: 12px 24px;
    }

        .rt-flip-card__face--front span {
            font-size: 48px;
        }

        .rt-flip-card__face--front h3 {
            font-size: 20px;
        }

        .rt-flip-card__face--back p {
            font-size: 16px;
            line-height: 1.65;
        }

    .rt-service-why-image {
        padding: 70px 0 80px;
    }
}

/* =========================================
   SERVICE REDIRECT SECTION
========================================= */

.rt-service-redirect {
    padding: 110px 0 120px;
    background: #000000;
    overflow: hidden;
}

.rt-service-redirect__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 80px;
    border-radius: 28px;
    background: linear-gradient(180deg, #111111 0%, #000000 100%);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
}

    .rt-service-redirect__inner::before {
        content: "";
        position: absolute;
        right: -120px;
        top: 50%;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(243, 89, 9, 0.08);
        transform: translateY(-50%);
        pointer-events: none;
    }

.rt-service-redirect__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.rt-service-redirect__title {
    margin: 0;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.35;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: #F35909;
}

.rt-service-redirect__text {
    margin: 28px 0 0;
    font-family: "Barlow", sans-serif;
    font-size: 19px;
    line-height: 1.8;
    color: #ffffff;
}

.rt-service-redirect__button {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    min-width: 320px;
    height: 78px;
    padding: 0 34px;
    border-radius: 999px;
    background: #F35909;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

    .rt-service-redirect__button svg {
        width: 24px;
        height: 24px;
    }

    .rt-service-redirect__button:hover {
        background: #ffffff;
        color: #000000;
        transform: translateY(-2px);
    }

@media (max-width: 980px) {
    .rt-service-redirect__inner {
        padding: 54px 38px;
        flex-direction: column;
        align-items: flex-start;
        gap: 42px;
    }

    .rt-service-redirect__button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .rt-service-redirect {
        padding: 70px 0 80px;
    }

    .rt-service-redirect__inner {
        padding: 38px 24px;
        border-radius: 22px;
    }

    .rt-service-redirect__title {
        font-size: 26px;
    }

    .rt-service-redirect__text {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.75;
    }

    .rt-service-redirect__button {
        min-width: 0;
        width: 100%;
        height: 64px;
        font-size: 15px;
    }
}