﻿@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
:root {
    --rt-accent: #D47328;
    --rt-accent-rgb: 212, 115, 40;
    --rt-dark: #2e2e2e;
    --rt-dark-2: #2e2e2e;
    --rt-light: #fdfdfd;
    --rt-light-2: #f4f4f2;
    --rt-gray: #888;
    --rt-radius: 28px;
    --rt-radius-sm: 16px;
    --rt-font-body: "Host Grotesk", sans-serif;
    --rt-font-disp: serif, sans-serif;
    --rt-ease: cubic-bezier(0.23, 1, 0.32, 1);
    --rt-section-pad: 120px;
    --rt-section-gap: 70px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: var(--rt-dark);
    color: var(--rt-light);
    font-family: var(--rt-font-body);
    overflow-x: hidden;
    line-height: 1.6;
}
.rt-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 6%;
}
.rt-about-premium {
    border-radius: 4rem !important;
    margin-top: -3.3rem !important;
    margin-bottom: -4rem !important;
    padding-top: 60px !important;
    position: relative;
    z-index: 12 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}
.rt-eyebrow {
    display: block;
    font-family: var(--rt-font-body);
    color: var(--rt-accent);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.rt-section-title {
    font-family: var(--rt-font-disp);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}
.rt-section-lead {
    font-family: var(--rt-font-body);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    opacity: 0.75;
    max-width: 800px;
}
.rt-hero__title, .rt-section-title, .rt-cta__heading {
    overflow: visible !important;
}
.rt-hero__title div, 
.rt-section-title div, 
.rt-cta__heading div {
    display: inline-block !important;
    white-space: pre;
}
.rt-hero__title span, 
.rt-section-title span, 
.rt-cta__heading span {
    display: inline-block !important;
    white-space: pre;
}
.rt-hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--rt-dark);
    padding-bottom: 120px;
}
.rt-hero__visual {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.rt-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.3) saturate(0.8);
}
.rt-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(15, 15, 15, 1) 0%, rgba(15, 15, 15, 0.85) 45%, rgba(15, 15, 15, 0.2) 100%),
        linear-gradient(to top, rgba(15, 15, 15, 0.85) 0%, transparent 45%);
}
.rt-hero__inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.rt-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
}
.rt-hero__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}
.rt-hero__tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rt-accent);
    flex-shrink: 0;
    animation: rt-blink 2.8s ease-in-out infinite;
}
@keyframes rt-blink {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(212, 115, 40, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 7px rgba(212, 115, 40, 0);
    }
}
.rt-hero__tag span:last-child {
    font-family: var(--rt-font-disp);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--rt-accent);
}
.rt-hero__tag-text {
    font-family: var(--rt-font-disp);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0 !important;
    color: var(--rt-accent);
}
.rt-hero__title {
    font-family: var(--rt-font-disp);
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em;
    text-transform: capitalize;
    color: var(--rt-light);
    margin-bottom: 24px;
}
.rt-hero__title em {
    font-style: normal;
    color: var(--rt-accent);
}
.rt-hero__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}
.rt-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.rt-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}
.rt-hero__link ion-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.rt-hero__link:hover {
    color: #fff;
}
.rt-hero__link:hover ion-icon {
    transform: translateY(3px);
}
.rt-hero__scroll-hint {
    position: absolute;
    bottom: 80px;
    right: 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.rt-hero__scroll-bar {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.menu-right {
    flex: 0.85;
    position: relative;
    height: 100%;
    border-radius: 3rem;
    overflow: hidden;
    display: flex !important;
    z-index: 10;
}
.rt-hero__scroll-bar span {
    display: block;
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--rt-accent);
    border-radius: 2px;
    animation: rt-scrollbar 2.2s ease-in-out infinite;
}
@keyframes rt-scrollbar {
    0% {
        top: -50%;
    }
    100% {
        top: 150%;
    }
}
.rt-hero__scroll-hint p {
    font-family: var(--rt-font-disp);
    font-size: 0.52rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}
.rt-cta-wrapper {
    background: var(--rt-dark);
    width: 100%;
}
.rt-contact-wrapper {
    background: var(--rt-accent);
    width: 100%;
}
.rt-section {
    padding: var(--rt-section-pad) 0;
    position: relative;
}
.rt-section--light {
    background: var(--rt-light);
    color: var(--rt-dark);
}
.rt-section--dark {
    background: var(--rt-dark);
    color: var(--rt-light);
}
.rt-section--dark-2 {
    background: var(--rt-dark-2);
    color: var(--rt-light);
}
.rt-section__header {
    margin-bottom: var(--rt-section-gap);
}
.rt-section__header.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rt-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.rt-bento__card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--rt-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.6s var(--rt-ease), box-shadow 0.6s var(--rt-ease);
    min-height: 240px;
}
.rt-bento__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}
.rt-bento__card:hover .rt-bento__icon {
    transform: scale(1.1);
}
.rt-bento__card--featured {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--rt-dark);
    color: var(--rt-light);
    padding: 60px 50px;
    min-height: auto;
    justify-content: flex-start;
}
.rt-bento__card--accent {
    background: var(--rt-accent);
    color: #fff;
    border-color: transparent;
}
.rt-bento__card--accent .rt-bento__icon {
    color: #fff;
}
.rt-bento__card--accent .rt-bento__text {
    color: rgba(255, 255, 255, 0.9);
}
.rt-bento__card--wide {
    grid-column: span 4;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    padding: 32px 40px;
    gap: 24px;
}
.rt-bento__card--wide .rt-bento__icon {
    margin-bottom: 0;
    flex-shrink: 0;
}
.rt-bento__icon {
    font-size: 2.2rem;
    color: var(--rt-accent);
    line-height: 1;
    transition: transform 0.6s var(--rt-ease);
}
.rt-bento__label {
    display: block;
    font-family: var(--rt-font-disp);
    color: var(--rt-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
}
.rt-bento__heading {
    font-family: var(--rt-font-disp);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rt-dark);
}
.rt-bento__card--featured .rt-bento__heading {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
    color: var(--rt-light);
    margin-bottom: 2rem;
}
.rt-bento__card--accent .rt-bento__heading {
    color: #fff;
}
.rt-section--light .rt-section-title {
    color: var(--rt-dark);
}
.rt-bento__text {
    font-size: 0.92rem;
    line-height: 1.6;
    opacity: 0.6;
    color: var(--rt-dark);
}
.rt-bento__card--featured .rt-bento__text {
    color: var(--rt-light);
}
.rt-bento__steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.rt-bento__step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.rt-bento__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.rt-bento__step-num {
    font-family: var(--rt-font-disp);
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--rt-accent);
    padding-top: 4px;
    flex-shrink: 0;
    letter-spacing: 0.1em;
}
.rt-bento__step-text {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}
.rt-objective {
    margin-top: 60px;
    padding: 55px 60px;
    background: #fff;
    border-radius: var(--rt-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 60px;
    align-items: flex-start;
    transition: transform 0.6s var(--rt-ease), box-shadow 0.6s var(--rt-ease);
}
.rt-objective:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}
.rt-objective__label {
    font-family: var(--rt-font-disp);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--rt-accent);
    flex-shrink: 0;
    padding-top: 6px;
}
.rt-objective__heading {
    font-family: var(--rt-font-disp);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--rt-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.rt-objective__text {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(15, 15, 15, 0.65);
    max-width: 800px;
}
.rt-scope {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--rt-radius);
    overflow: hidden;
}
.rt-scope__item {
    padding: 48px 44px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s var(--rt-ease), background 0.6s var(--rt-ease), box-shadow 0.6s var(--rt-ease);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rt-scope__item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.rt-scope__num {
    font-family: var(--rt-font-disp);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rt-accent);
    letter-spacing: 0.1em;
}
.rt-scope__title {
    font-family: var(--rt-font-disp);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--rt-light);
    line-height: 1.4;
}
.rt-scope__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}
.rt-phases {
    position: relative;
    background: var(--rt-dark);
}
.rt-phases__header {
    padding: 100px 6% 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.rt-phases__header .rt-section-title  {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--rt-light);
}
.rt-phases__header .rt-section-lead {
    text-align: center;
    color: var(--rt-light);
}
.rt-phases__header .rt-section-lead-dark {
    text-align: center;
    color: var(--rt-dark-2);
}
.rt-phase {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--rt-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.rt-phase__num {
    position: absolute;
    left: 8%;
    font-family: var(--rt-font-disp);
    font-size: clamp(12rem, 22vw, 22rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.025);
    z-index: 1;
    user-select: none;
}
.rt-phase__content {
    max-width: 640px;
    margin-left: auto;
    margin-right: 10%;
    position: relative;
    z-index: 10;
}
.rt-phase__card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 55px;
    border-radius: var(--rt-radius);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rt-phase__label {
    font-family: var(--rt-font-disp);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--rt-accent);
}
.rt-phase__title {
    font-family: var(--rt-font-disp);
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--rt-light);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.rt-phase__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}
.rt-cta {
    padding: 120px 0;
    background: var(--rt-accent);
    text-align: center;
    border-radius: 4rem 4rem 0 0;
    position: relative;
    overflow: hidden;
}
.rt-cta__heading {
    font-family: var(--rt-font-disp);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.rt-cta__text {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    max-width: 720px;
    margin: 0 auto 44px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}
.rt-cta__btn {
    background: #fff !important;
    color: var(--rt-accent) !important;
    border: none !important;
    margin: 0 auto !important;
    display: inline-flex !important;
}
.rt-cta__btn .btn-icon {
    background: var(--rt-accent) !important;
    color: #fff !important;
}
@media (max-width: 1024px) {
    :root {
        --rt-section-pad: 100px;
    }
    .rt-container {
        padding: 0 5%;
    }
    .rt-hero {
        min-height: 80vh;
    }
    .rt-hero__title {
        font-size: 3.5rem;
    }
    .rt-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .rt-bento__card--featured {
        grid-column: span 2;
        text-align: center;
        align-items: center;
    }
    .rt-bento__card--featured .rt-bento__steps {
        align-items: center;
        text-align: center;
    }
    .rt-bento__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .rt-bento__card--wide {
        grid-column: span 2;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .rt-scope {
        grid-template-columns: repeat(2, 1fr);
    }
    .rt-phase__num {
        font-size: 15rem;
        left: 5%;
    }
    .rt-phase__content {
        margin-right: 5%;
    }
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 2rem;
    }
}
@media (max-width: 900px) {
    .rt-bento {
        grid-template-columns: 1fr;
    }
    .rt-bento__card--featured {
        grid-column: 1;
    }
    .rt-bento__card--wide {
        grid-column: 1;
    }
    .rt-scope {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    :root {
        --rt-section-pad: 80px;
    }
    .rt-hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }
    .rt-hero__inner {
        padding-top: 0;
    }
    .rt-hero__title {
        font-size: 2.8rem;
    }
    .rt-hero__desc {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 40px;
    }
    .rt-hero__cta {
        flex-direction: column;
        gap: 20px;
    }
    .btn.primary-btn {
        justify-content: space-between;
        padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    }
    .rt-hero__scroll-hint {
        display: none;
    }
    .rt-section__header {
        margin-bottom: 50px;
    }
    .rt-section-title {
        font-size: 2.2rem;
    }
    .rt-section-lead {
        font-size: 1.1rem;
    }
    .rt-bento {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rt-bento__card {
        min-height: auto;
        padding: 30px 25px;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    .rt-bento__card--featured {
        padding: 40px 25px;
    }
    .rt-bento__card--featured .rt-bento__steps {
        align-items: center;
        text-align: center;
    }
    .rt-bento__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .rt-bento__card--wide {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        gap: 15px;
    }
    .rt-bento__heading {
        font-size: 1.15rem;
    }
    .rt-bento__icon {
        font-size: 2.8rem;
        margin-bottom: 5px;
    }
    .rt-bento__text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .rt-objective {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }
    .rt-objective__label {
        padding-top: 0;
    }
    .rt-objective__text {
        text-align: center;
    }
    .rt-scope {
        grid-template-columns: 1fr;
        border: none;
        gap: 15px;
    }
    .rt-scope__item {
        border-radius: var(--rt-radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 35px 30px;
    }
    .rt-phase {
        height: auto;
        min-height: unset;
        padding: 60px 0;
    }
    .rt-phase__num {
        display: none;
    }
    .rt-phase__content {
        margin: 0 auto;
        width: 100%;
        padding: 0 5%;
    }
    .rt-phase__card {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }
    .rt-cta {
        border-radius: 2.5rem 2.5rem 0 0;
        padding: 80px 0;
    }
    .rt-cta__heading {
        font-size: 2.2rem;
    }
    .contact-section-premium {
        padding: 5rem 1.5rem;
        border-radius: 2.5rem !important;
        margin: 0 !important;
    }
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }
    .contact-info {
        text-align: center;
        max-width: 100%;
    }
    .contact-title {
        font-size: 2.5rem;
    }
    .form-row {
        flex-direction: column;
        gap: 2rem;
    }
    .form-footer-action {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .btn.form-submit-btn {
        width: 100%;
        justify-content: space-between;
        min-width: unset;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        padding: 5rem 1.5rem 3rem;
        text-align: right;
    }
    .footer-col {
        text-align: right;
        align-items: flex-start;
    }
    .footer-about {
        text-align: right;
        margin-inline-end: auto;
        margin-inline-start: 0;
        font-size: 0.95rem;
    }
    .footer-links {
        align-items: flex-start;
    }
    .col-contact .contact-item {
        justify-content: flex-start;
        text-align: right;
    }
    .footer-social-wrapper {
        align-items: flex-start;
    }
    .footer-bottom {
        padding: 2rem 1.5rem;
        font-size: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}
@media (max-width: 480px) {
    .rt-hero__title {
        font-size: 2.2rem;
    }
    .rt-section-title {
        font-size: 1.8rem;
    }
    .rt-phase__card {
        padding: 35px 25px;
    }
    .btn-label span {
        font-size: 0.85rem;
    }
}
        .consent-text a {
            color: var(--nw-acc);
            text-decoration: none;
            font-weight: 600;
        }
        .consent-text a:hover {
            text-decoration: underline;
        }
        .rt-hero__title-em {
            font-style: normal !important;
            color: var(--nw-acc) !important;
        }
        @media (hover: hover) and (pointer: fine) {
            body, body * { cursor: none !important; }
        }
        @media (hover: none) {
            .nw-cursor-dot, .nw-cursor-ring { display:none !important; }
            body, body * { cursor: auto !important; }
        }
