:root {
    --bg-corporate: #3b3c3e;
    --bg-darker: #222325;
    --bg-card: #2f3032;
    --corp-cyan: #00BCEB;
    --corp-yellow: #FFB800;
    --text-light: #F8F9FA;
    --text-muted: #B0B3B8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth[data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (pointer: fine) {
    * {
        cursor: none;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-corporate);
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a, a:link, a:visited, a:active {
    color: #fff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.text-cyan {
    color: var(--corp-cyan);
}

.text-yellow {
    color: var(--corp-yellow);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--corp-cyan);
    color: #111;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    position: relative;
}

.btn-primary:hover {
    background: var(--corp-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 184, 0, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--corp-cyan);
    color: var(--corp-cyan);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

.btn-outline i {
    transition: transform 0.3s;
}

header {
    position: fixed;
    top: 20px;
    left: 5vw;
    width: 90vw;
    background: rgba(34, 35, 37, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1005;
    transition: transform 0.4s ease;
}

header.hide {
    transform: translateY(-150%);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 5px;
    align-items: baseline;
    font-family: var(--font-heading);
    position: relative;
}

.logo span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--corp-yellow);
}

.desktop-nav ul {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--corp-cyan);
}

.desktop-nav a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
    color: var(--corp-yellow);
    text-decoration: none;
}

.burger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 9px;
}

.burger span:nth-child(3) {
    top: 18px;
}

.burger.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.burger.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 35, 37, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1004;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--corp-cyan);
}

@media (max-width: 900px) {
    header {
        padding: 1rem 1.5rem;
    }

    .desktop-nav {
        display: none;
    }

    .burger {
        display: block;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--corp-yellow);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--corp-cyan);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

@media (max-width: 900px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    background: var(--bg-darker);
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #111 url("../img/slides/slide01.jpg") center center / cover no-repeat;
}

.hero-video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 16, 18, 0.34) 0%, rgba(15, 16, 18, 0.18) 42%, rgba(15, 16, 18, 0.42) 100%),
        linear-gradient(180deg, rgba(15, 16, 18, 0.36) 0%, rgba(15, 16, 18, 0.2) 38%, rgba(15, 16, 18, 0.52) 100%);
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.corporate-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
}

.corporate-svg {
    width: 100%;
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
    z-index: 5;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.page-home .swiper-slide {
    background: transparent;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.1);
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 10vh 5vw;
    z-index: 20;
    text-align: right;
}

.slide-title {
    font-size: clamp(3rem, 6vw, 6.5rem);
    text-transform: uppercase;
    max-width: 1000px;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.line-wrapper {
    display: block;
    overflow: hidden;
}

.line-text {
    display: block;
    transform: translateY(110%);
}

.stats-bar {
    background: #2f3032;
    color: #a4a4a4;
    padding: 4rem 5vw;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 30;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.services {
    position: relative;
    padding: 15vh 5vw;
    background:
        radial-gradient(circle at 18% 12%, rgba(0, 188, 235, 0.06) 0%, rgba(0, 188, 235, 0) 30%),
        linear-gradient(180deg, #3b3c3e 0%, #353638 100%);
    overflow: hidden;
    isolation: isolate;
}

.inner-page .hero-slider {
    height: 100vh;
    min-height: 100svh;
}

.inner-page .slide-content {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    padding: 12vh 5vw 10vh;
}

.inner-page .slide-title {
    width: min(42vw, 760px);
    max-width: 100%;
    margin-bottom: 1.25rem;
    font-size: clamp(2.8rem, 5.5vw, 5.4rem);
    margin-left: auto;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    max-width: 760px;
}

.inner-page .hero-copy {
    width: min(38vw, 640px);
    max-width: 100%;
    align-items: flex-end;
    margin-left: auto;
}

.hero-subtitle {
    max-width: 760px;
    color: rgba(248, 249, 250, 0.86);
    font-size: 1.12rem;
    line-height: 1.75;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.inner-main {
    background: var(--bg-corporate);
}

.inner-section {
    padding: 12vh 5vw;
}

.inner-section--alt {
    background: var(--bg-darker);
}

.inner-section--compact {
    padding-top: 8vh;
    padding-bottom: 8vh;
}

.inner-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4vw;
    align-items: center;
}

.inner-grid--top {
    align-items: start;
}

.inner-copy h2,
.inner-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.inner-copy h3,
.inner-section h3 {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    margin-bottom: 1rem;
}

.eyebrow {
    color: var(--corp-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}

.lead {
    font-size: 1.18rem;
    line-height: 1.8;
    color: rgba(248, 249, 250, 0.9);
}

.inner-copy p,
.inner-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.content-stack {
    display: grid;
    gap: 1.25rem;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.panel-card {
    background: var(--bg-card);
    padding: 2rem;
    border-top: 4px solid var(--corp-cyan);
    -webkit-border-top-right-radius: 32px;
    -webkit-border-bottom-left-radius: 32px;
    -moz-border-radius-topright: 32px;
    -moz-border-radius-bottomleft: 32px;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.panel-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.panel-card p {
    margin-bottom: 0;
}

.detail-stack {
    display: grid;
    gap: 8vh;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    align-items: center;
}

.detail-row:nth-child(even) {
    direction: rtl;
}

.detail-row:nth-child(even) > * {
    direction: ltr;
}

.detail-media {
    position: relative;
    min-width: 0;
}

.detail-media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    -webkit-border-top-right-radius: 80px;
    -webkit-border-bottom-left-radius: 80px;
    -moz-border-radius-topright: 80px;
    -moz-border-radius-bottomleft: 80px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 4px solid var(--corp-yellow);
    border-bottom: 4px solid var(--corp-cyan);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.detail-copy {
    min-width: 0;
}

.detail-copy p + p {
    margin-top: 1rem;
}

.check-list,
.info-list {
    list-style: none;
    display: grid;
    gap: 0.95rem;
    margin: 2rem 0 0;
}

.check-list li,
.info-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    color: #fff;
    line-height: 1.7;
}

.check-list li::before,
.info-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 0.55rem;
    flex-shrink: 0;
    background: var(--corp-yellow);
    box-shadow: 0 0 0 6px rgba(255, 184, 0, 0.12);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-left: 4px solid var(--corp-yellow);
}

.step-card .step-index {
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--corp-cyan);
    margin-bottom: 1rem;
}

.quote-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--corp-cyan);
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
}

.quote-box p {
    color: rgba(248, 249, 250, 0.88);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4vw;
    align-items: start;
}

.contact-panel,
.form-panel {
    background: var(--bg-card);
    padding: 2rem;
    -webkit-border-top-right-radius: 40px;
    -webkit-border-bottom-left-radius: 40px;
    -moz-border-radius-topright: 40px;
    -moz-border-radius-bottomleft: 40px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-panel h3,
.form-panel h3 {
    margin-bottom: 1rem;
}

.contact-points {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-points li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    color: #fff;
    line-height: 1.7;
}

.contact-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 0.55rem;
    flex-shrink: 0;
    background: var(--corp-cyan);
    box-shadow: 0 0 0 6px rgba(0, 188, 235, 0.12);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(248, 249, 250, 0.78);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: 0.95rem 1rem;
    font: inherit;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}

.form-field select option {
    color: #111;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--corp-cyan);
    background: rgba(255, 255, 255, 0.06);
}

.form-field textarea {
    min-height: 180px;
    resize: vertical;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.consent-row input[type="checkbox"] {
    width: auto;
    flex: 0 0 auto;
    margin: 0;
    margin-top: 0.25rem;
    padding: 0;
    border: none;
    background: transparent;
    accent-color: var(--corp-cyan);
}

.consent-row span {
    flex: 0 1 auto;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-status {
    display: none;
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    background: rgba(0, 188, 235, 0.12);
    color: #dff8ff;
    border: 1px solid rgba(0, 188, 235, 0.28);
}

.form-status.is-error {
    background: rgba(255, 184, 0, 0.12);
    color: #fff4d1;
    border: 1px solid rgba(255, 184, 0, 0.28);
}

.faq-list {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-border-top-right-radius: 28px;
    -webkit-border-bottom-left-radius: 28px;
    -moz-border-radius-topright: 28px;
    -moz-border-radius-bottomleft: 28px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 28px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    text-align: left;
    padding: 1.35rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font: inherit;
    cursor: pointer;
}

.faq-question span:first-child {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq-question-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question-icon {
    transform: rotate(45deg);
    border-color: var(--corp-cyan);
    color: var(--corp-cyan);
}

.faq-answer {
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-inner p,
.faq-answer-inner li {
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer-inner ul {
    margin: 1rem 0 0 1.2rem;
}

.cta-band {
    display: grid;
    gap: 1rem;
    justify-items: start;
}

.services-graphics {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.services-graphics::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59, 60, 62, 0.76) 0%, rgba(59, 60, 62, 0.26) 24%, rgba(59, 60, 62, 0.18) 76%, rgba(59, 60, 62, 0.72) 100%);
    z-index: 0;
}

.services-content {
    position: relative;
    z-index: 1;
}

.services-orbit {
    position: absolute;
    width: var(--orbit-size);
    opacity: var(--orbit-opacity);
    transform: translate3d(0, 0, 0);
    transform-origin: center;
    z-index: 1;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 20px rgba(0, 188, 235, 0.06));
    will-change: transform;
}

.services-orbit--one {
    top: 0.5rem;
    left: -1.5rem;
    --orbit-size: 92rem;
    --orbit-opacity: 1;
    --outer-stroke: rgba(0, 188, 235, 0.31);
    --inner-stroke: rgba(248, 249, 250, 0.2);
    --curve-stroke: rgba(255, 184, 0, 0.31);
}

.services-orbit--two {
    top: 16%;
    right: -38rem;
    --orbit-size: 92rem;
    --orbit-opacity: 0.9;
    --outer-stroke: rgba(0, 188, 235, 0.24);
    --inner-stroke: rgba(248, 249, 250, 0.14);
    --curve-stroke: rgba(255, 184, 0, 0.22);
}

.services-orbit--three {
    top: 54%;
    right: 8%;
    --orbit-size: 30rem;
    --orbit-opacity: 0.94;
    --outer-stroke: rgba(0, 188, 235, 0.24);
    --inner-stroke: rgba(248, 249, 250, 0.18);
}

.services-corporate-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.services-orbit--two .services-corporate-svg {
    transform: scaleX(-1);
    transform-origin: center;
}

.services-circle {
    fill: none;
    vector-effect: non-scaling-stroke;
    transform-origin: 50% 50%;
}

.services-circle--outer {
    stroke: var(--outer-stroke);
    stroke-width: 30;
}

.services-circle--inner {
    stroke: var(--inner-stroke);
    stroke-width: 12;
}

.services-curve {
    fill: none;
    stroke: var(--curve-stroke);
    stroke-width: 10;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.services-graphic--rings .services-corporate-svg {
    overflow: visible;
}

.services-graphic--hero .services-circle--outer {
    stroke-width: 34;
}

.services-graphic--hero .services-circle--inner {
    stroke-width: 14;
}

.services-graphic--hero .services-curve {
    stroke-width: 12;
}

.services-graphic--sweep .services-circle--outer {
    stroke-width: 32;
}

.services-graphic--sweep .services-circle--inner {
    stroke-width: 13;
}

.services-graphic--sweep .services-curve {
    stroke-width: 11;
}

.services-graphic--rings .services-circle--outer {
    stroke-width: 28;
}

.services-graphic--rings .services-circle--inner {
    stroke-width: 10;
}

.service-row--revamping {
    position: relative;
    isolation: isolate;
}

.service-row--revamping > .service-image-container,
.service-row--revamping > .service-text {
    position: relative;
    z-index: 2;
}

.service-wide-graphic {
    position: absolute;
    top: -7rem;
    left: 50%;
    width: min(118vw, 1600px);
    height: clamp(18rem, 33vw, 30rem);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.92;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 24px rgba(0, 188, 235, 0.05));
    will-change: transform;
}

.service-wide-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.service-wide-circle {
    fill: none;
    vector-effect: non-scaling-stroke;
    transform-origin: 1530px 358px;
}

.service-wide-circle--outer {
    stroke: rgba(0, 188, 235, 0.16);
    stroke-width: 28;
}

.service-wide-circle--inner {
    stroke: rgba(248, 249, 250, 0.12);
    stroke-width: 10;
}

.service-wide-curve {
    fill: none;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.service-wide-curve--primary {
    stroke: rgba(255, 184, 0, 0.22);
    stroke-width: 10;
}

.service-wide-curve--secondary {
    stroke: rgba(0, 188, 235, 0.13);
    stroke-width: 7;
}

.section-header {
    text-align: center;
    margin-bottom: 10vh;
}

.section-header p {
    color: var(--corp-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: center;
    margin-bottom: 15vh;
}

.service-row:nth-child(even) {
    direction: rtl;
}

.service-row:nth-child(even) > * {
    direction: ltr;
}

.service-image-container {
    width: 100%;
    height: 70vh;
    /*border-radius: 24px;*/
    -webkit-border-top-right-radius: 80px;
    -webkit-border-bottom-left-radius: 80px;
    -moz-border-radius-topright: 80px;
    -moz-border-radius-bottomleft: 80px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-darker);
    border-right: 4px solid #FFB800;
    border-bottom: 4px solid #00BCEB;
}

.service-image-container img {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
}

.service-text {
    padding: 2rem 0;
    min-width: 0;
}

.service-text h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.service-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 3rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(0, 188, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--corp-cyan);
    flex-shrink: 0;
}

.process {
    position: relative;
    padding: 15vh 5vw;
    background: var(--bg-darker);
    overflow: hidden;
    isolation: isolate;
}

.process-background {
    position: absolute;
    inset: -12% 0;
    background: url("../img/road.jpg") center center / cover no-repeat;
    transform: scale(1.08);
    z-index: 0;
}

.process-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34, 35, 37, 0.58) 0%, rgba(34, 35, 37, 0.68) 100%);
}

.process-content {
    position: relative;
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
    margin-top: 8vh;
}

.process-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    /*border-radius: 16px;*/
    -webkit-border-top-right-radius: 16px;
    -webkit-border-bottom-left-radius: 16px;
    -moz-border-radius-topright: 16px;
    -moz-border-radius-bottomleft: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-top: 4px solid transparent;
    transition: all 0.3s;
    border-bottom: 4px solid #00BCEB;
}

.process-card:hover {
    border-color: var(--corp-yellow);
    transform: translateY(-10px);
}

.process-card .step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    font-weight: 800;
}

.process-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--corp-yellow);
    position: relative;
    z-index: 2;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

footer {
    padding: 10vh 5vw 2vh;
    background:
        linear-gradient(180deg, rgba(59, 60, 62, 0.05) 0%, rgba(59, 60, 62, 0.88) 100%),
        url("../img/footer.jpg") center bottom / cover no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4vw;
    align-items: stretch;
    margin-bottom: 8vh;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-info h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.language-switcher-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

.language-switcher-buttons {
    display: flex;
    gap: 0.65rem;
}

.language-switcher-buttons a {
    min-width: 48px;
    height: 42px;
    padding: 0 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}

.language-switcher-buttons a:hover {
    text-decoration: none;
    border-color: var(--corp-cyan);
    color: var(--corp-cyan);
    transform: translateY(-2px);
}

.language-switcher-buttons a.is-active,
.language-switcher-buttons a[aria-current="page"] {
    background: var(--corp-yellow);
    border-color: var(--corp-yellow);
    color: #111;
}

.language-switcher-buttons a.is-active:hover,
.language-switcher-buttons a[aria-current="page"]:hover {
    color: #111;
    border-color: var(--corp-yellow);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--corp-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--corp-yellow);
}

.contact-text h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 1.2rem;
}

.footer-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    /* border-radius: 24px; */
    overflow: hidden;
    /*background: var(--bg-darker);*/
    -webkit-border-top-right-radius: 80px;
    -webkit-border-bottom-left-radius: 80px;
    -moz-border-radius-topright: 80px;
    -moz-border-radius-bottomleft: 80px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-darker);
    border-right: 4px solid #FFB800;
    border-bottom: 4px solid #00BCEB;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) hue-rotate(180deg);
    border: none;
}

.legal {
    text-align: right;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal .legal-credit {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .page-home .hero-slider {
        height: 75vh;
        min-height: 75svh;
    }

    .page-home .slide-content {
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        padding: 18vh 6vw 10vh;
    }

    .services-orbit--one {
        top: 1.5rem;
        left: -1.5rem;
        --orbit-size: 64rem;
    }

    .services-orbit--two {
        top: 21%;
        right: -26rem;
        --orbit-size: 58rem;
    }

    .services-orbit--three {
        top: 57%;
        right: 2%;
        --orbit-size: 20rem;
    }

    .service-wide-graphic {
        top: -4rem;
        width: 132vw;
        height: 18rem;
    }

    .service-row,
    .service-row:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        margin-bottom: 8vh;
    }

    .service-image-container {
        height: 40vh;
    }

    .service-text h3 {
        font-size: 2.35rem;
        line-height: 1.05;
    }

    .inner-page .hero-slider {
        height: 100vh;
        min-height: 100svh;
    }

    .inner-page .slide-content {
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        padding: 18vh 6vw 9vh;
    }

    .hero-copy {
        align-items: center;
    }

    .inner-page .slide-title,
    .inner-page .hero-copy {
        width: 100%;
    }

    .inner-page .hero-copy {
        align-items: center;
    }

    .inner-grid,
    .detail-row,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .detail-row:nth-child(even) {
        direction: ltr;
    }

    .panel-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .detail-media img {
        min-height: 320px;
    }

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

    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-map {
        height: 350px;
        min-height: 350px;
    }

    .language-switcher {
        justify-content: center;
    }

    .legal {
        text-align: center;
        line-height: 1.7;
    }

    .slide-content {
        align-items: center;
        text-align: center;
        padding: 5vh 5vw;
        justify-content: center;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-fade-up {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-home .hero-slider {
        height: 75vh;
        min-height: 75svh;
    }

    .page-home .slide-content {
        justify-content: flex-end;
        padding: 16vh 6vw 11vh;
    }

    .services-orbit--one {
        top: 3rem;
        left: -1rem;
        --orbit-size: 46rem;
    }

    .services-orbit--two {
        top: 28%;
        right: -18rem;
        --orbit-size: 40rem;
    }

    .services-orbit--three {
        top: 60%;
        right: 0.5rem;
        --orbit-size: 15rem;
    }

    .service-wide-graphic {
        top: -2rem;
        width: 148vw;
        height: 14rem;
    }

    .service-text h3 {
        font-size: 1.95rem;
        line-height: 1.04;
    }

    .inner-page .hero-slider {
        min-height: 100svh;
    }

    .inner-page .slide-title {
        font-size: 2.35rem;
    }

    .hero-subtitle,
    .lead {
        font-size: 1rem;
    }

    .inner-section {
        padding: 9vh 5vw;
    }

    .panel-card,
    .contact-panel,
    .form-panel,
    .step-card {
        padding: 1.4rem;
    }

    .faq-question {
        padding: 1.1rem 1.15rem;
    }

    .faq-question span:first-child {
        font-size: 1.02rem;
    }

    .faq-answer-inner {
        padding: 0 1.15rem 1.15rem;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .stats-bar {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    header {
        padding: 1rem;
        width: 96vw;
        left: 2vw;
    }
}

.sp_form1 { opacity:0; width:2px; }
.sp_form2 { visibility: hidden; width: 4px; }
