@font-face {
    font-family: 'Graphik';
    src: url('/assets/fonts/graphik/Graphik-Regular.woff2') format('woff2'),
         url('/assets/fonts/graphik/Graphik-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphik';
    src: url('/assets/fonts/graphik/Graphik-Medium.woff2') format('woff2'),
         url('/assets/fonts/graphik/Graphik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Freight Text Pro';
    src: url('/assets/fonts/freight/FreightTextProBook-Regular.woff2') format('woff2'),
         url('/assets/fonts/freight/FreightTextProBook-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Freight Text Pro';
    src: url('/assets/fonts/freight/FreightTextProMedium-Regular.woff2') format('woff2'),
         url('/assets/fonts/freight/FreightTextProMedium-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --graphite: #101418;
    --graphite-2: #151b20;
    --steel: #23445c;
    --green: #3f7d5c;
    --green-soft: rgba(63,125,92,.14);
    --sand: #d8c7a3;
    --bg: #f5f3ee;
    --white: #ffffff;
    --muted: #65727b;
    --line: rgba(255,255,255,.14);
    --dark-line: rgba(16,20,24,.12);
    --shadow: 0 24px 70px rgba(16,20,24,.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Graphik', Arial, sans-serif;
    background: var(--bg);
    color: var(--graphite);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 400;
}

main {
    flex: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: 'Graphik', Arial, sans-serif;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background:
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,0)),
        rgba(10,14,17,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.11);
    box-shadow:
        0 18px 55px rgba(0,0,0,.32),
        0 1px 0 rgba(255,255,255,.06) inset;
    transition:
        background .32s ease,
        box-shadow .32s ease,
        border-color .32s ease;
}

.site-header.is-scrolled {
    background: rgba(10,14,17,.68);
    backdrop-filter: blur(24px);
    border-bottom-color: rgba(255,255,255,.07);
    box-shadow:
        0 22px 65px rgba(0,0,0,.42),
        0 1px 0 rgba(255,255,255,.04) inset;
}

.site-header.is-scrolled .language-dropdown {
    opacity: 0;
    visibility: hidden;
    width: 0;
    pointer-events: none;
    transform: translateY(-4px);
    overflow: hidden;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    flex: 0 0 auto;
}

.brand-mark {
    border: 1px solid rgba(255,255,255,.32);
    color: var(--white);
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .12em;
    font-weight: 500;
}

.brand-text {
    font-size: 13px;
    letter-spacing: .18em;
    color: rgba(255,255,255,.88);
    font-weight: 500;
}

/* NAV */

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    font-size: 13px;
    color: rgba(255,255,255,.78);
    font-weight: 400;
}

.main-nav > a,
.nav-item > a {
    position: relative;
    padding: 4px 11px;
    border-right: 1px solid rgba(255,255,255,.18);
    transition: color .25s ease;
    white-space: nowrap;
}

.main-nav > a:first-child {
    border-left: 1px solid rgba(255,255,255,.18);
}

.main-nav > a::after,
.nav-item > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -9px;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.main-nav > a:hover,
.nav-item > a:hover {
    color: var(--white);
}

.main-nav > a:hover::after,
.nav-item > a:hover::after {
    transform: scaleX(1);
}

/* NAV DROPDOWN */

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-arrow {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    transition: transform .25s ease;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 245px;
    background: rgba(18,24,28,.94);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 10px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(63,125,92,.15), transparent 70%);
    z-index: -1;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    border: 0;
    font-size: 13px;
    color: rgba(255,255,255,.78);
    transition: background .2s ease, color .2s ease;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
}

/* LANGUAGE */

.language-dropdown {
    position: relative;
    transition: opacity .25s ease, visibility .25s ease, width .25s ease, transform .25s ease;
}

.language-current {
    height: 38px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.88);
    border-radius: 999px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(16px);
    transition: background .25s ease, border-color .25s ease;
}

.language-current:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.26);
}

.globe-icon {
    width: 17px;
    height: 17px;
    display: inline-flex;
    color: #fff;
}

.globe-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-name {
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.language-arrow {
    color: rgba(255,255,255,.58);
    font-size: 14px;
    margin-left: 1px;
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(18,24,28,.88);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 70px rgba(0,0,0,.34);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.language-dropdown.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 11px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    transition: background .22s ease, color .22s ease;
}

.language-menu a:hover {
    background: rgba(255,255,255,.09);
    color: #fff;
}

/* FLAGS */

.flag {
    width: 20px;
    height: 14px;
    display: inline-block;
    border-radius: 2px;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.18),
        0 2px 6px rgba(0,0,0,.35);
}

.flag-gb {
    background-color: #012169;
    background-image:
        linear-gradient(26deg, transparent 43%, #ffffff 43%, #ffffff 57%, transparent 57%),
        linear-gradient(-26deg, transparent 43%, #ffffff 43%, #ffffff 57%, transparent 57%),
        linear-gradient(26deg, transparent 47%, #c8102e 47%, #c8102e 53%, transparent 53%),
        linear-gradient(-26deg, transparent 47%, #c8102e 47%, #c8102e 53%, transparent 53%),
        linear-gradient(90deg, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%),
        linear-gradient(0deg, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%),
        linear-gradient(90deg, transparent 46%, #c8102e 46%, #c8102e 54%, transparent 54%),
        linear-gradient(0deg, transparent 46%, #c8102e 46%, #c8102e 54%, transparent 54%);
}

.flag-de {
    background: linear-gradient(to bottom, #000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.flag-fr {
    background: linear-gradient(to right, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.flag-es {
    background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

/* BUTTONS */

.btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(63,125,92,.28);
}

.btn-primary:hover {
    background: #4c906c;
}

.btn-light {
    background: var(--white);
    color: var(--graphite);
}

.btn-login {
    border: 1px solid rgba(255,255,255,.20);
    color: rgba(255,255,255,.84);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(14px);
}

.btn-login:hover {
    border-color: rgba(255,255,255,.34);
    color: #fff;
    background: rgba(255,255,255,.095);
}

/* MOBILE TOGGLE */

.mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.mobile-toggle span {
    width: 16px;
    height: 1px;
    background: #fff;
    display: block;
}

/* TYPOGRAPHY */

h1,
h2,
h3 {
    font-family: 'Freight Text Pro', Georgia, serif;
    font-weight: 400;
    letter-spacing: -.02em;
}

p {
    line-height: 1.7;
}

/* HERO BASE */

.hero,
.home-hero,
.slider,
.hero-section {
    background: linear-gradient(135deg, #101418 0%, #18242d 55%, #23445c 100%);
    color: var(--white);
}

.hero h1,
.home-hero h1,
.slider h1,
.hero-section h1 {
    font-family: 'Freight Text Pro', Georgia, serif !important;
    font-weight: 400 !important;
    color: var(--white);
}

.hero p,
.home-hero p,
.slider p,
.hero-section p {
    color: rgba(255,255,255,.76);
}

.hero .accent,
.home-hero .accent,
.slider .accent {
    color: var(--green);
}

/* FOOTER */

.site-footer {
    background: var(--graphite);
    color: rgba(255,255,255,.80);
    padding: 70px 28px 24px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand strong {
    display: block;
    color: var(--white);
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -.01em;
    margin-bottom: 14px;
}

.site-footer h4 {
    color: var(--white);
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 0 0 9px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.6;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1320px;
    margin: 44px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    color: rgba(255,255,255,.50);
}

/* INQUIRY MODAL */

.inquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}

.inquiry-modal.is-open {
    display: block;
}

.inquiry-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16,20,24,.68);
}

.inquiry-box {
    position: relative;
    max-width: 520px;
    margin: 8vh auto;
    background: var(--white);
    padding: 34px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.inquiry-box h3 {
    margin: 0 0 10px;
    font-size: 34px;
    color: var(--graphite);
}

.inquiry-box p {
    margin-top: 0;
    color: var(--muted);
}

.inquiry-close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    color: var(--graphite);
}

.inquiry-form {
    display: grid;
    gap: 14px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid var(--dark-line);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: inherit;
    background: #fff;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px var(--green-soft);
}

.inquiry-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* COOKIE */

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 180;
    background: rgba(16,20,24,.96);
    color: var(--white);
    border-radius: 16px;
    padding: 18px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.12);
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
}

/* REVEAL */

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1280px) {
    .main-nav > a,
    .nav-item > a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }

    .language-name {
        display: none;
    }
}

@media (max-width: 1100px) {
    .header-inner {
        padding: 11px 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 66px;
        left: 18px;
        right: 18px;
        background: rgba(13,18,22,.97);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 24px 70px rgba(0,0,0,.32);
        backdrop-filter: blur(22px);
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a,
    .main-nav > a:first-child,
    .nav-item > a {
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.10);
        padding: 13px 4px;
        font-size: 14px;
    }

    .main-nav > a::after,
    .nav-item > a::after {
        display: none;
    }

    .nav-item {
        display: block;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: rgba(255,255,255,.055);
    }

    .nav-item:hover .nav-dropdown {
        display: block;
    }

    .mobile-toggle {
        display: inline-flex;
    }

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

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .inquiry-box {
        margin: 5vh 16px;
        padding: 28px;
    }
}

@media (max-width: 680px) {
    .header-inner {
        padding: 10px 16px;
        gap: 12px;
    }

    .brand-text {
        display: none;
    }

    .header-actions .btn-primary,
    .btn-login {
        display: none;
    }

    .language-current {
        height: 36px;
        padding: 0 10px;
    }

    .language-menu {
        right: -48px;
    }
}

.language-menu a:hover .flag-svg {
    transform: scale(1.06);
    transition: transform .2s ease;
}
.flag-svg {
    width: 20px;
    height: 14px;
    display: inline-flex;
    border-radius: 3px;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.18),
        0 2px 6px rgba(0,0,0,.35);
}

.flag-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}
.brand-logo {
    height: 32px;
    width: auto;
    display: block;
}

@media (max-width: 680px) {
    .brand-logo {
        height: 26px;
    }
}
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.icon-login {
    width: 15px;
    height: 15px;
    fill: currentColor;
    opacity: 0.9;
}

.login-label {
    font-size: 12px;
}
@media (max-width: 1200px) {
    .login-label {
        display: none;
    }
}
/* HOME HERO */

.home-hero {
    position: relative;
    height: 600px; /* fiksno */
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,12,15,.88) 0%, rgba(8,12,15,.68) 36%, rgba(8,12,15,.28) 72%, rgba(8,12,15,.10) 100%),
        radial-gradient(circle at 22% 45%, rgba(63,125,92,.25), transparent 38%);
    z-index: 1;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .32;
    z-index: 2;
    pointer-events: none;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.32));
    z-index: 3;
}

.home-hero-inner {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;

    display: flex;
    align-items: center; /* ovo centrira tekst */
}

.home-hero-content {
    max-width: 880px;
}
.home-hero-content {
    letter-spacing: -0.01em;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--green);
}

.home-hero h1 {
    margin: 0;
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -.03em;
    color: #fff;
}

.home-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 38px;
}

.hero-btn {
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: 14px 22px;
    font-size: 13px;
    box-shadow: 0 18px 45px rgba(63,125,92,.34);
}

.hero-btn:hover {
    background: #4c906c;
}

@media (max-width: 760px) {
    .home-hero {
        min-height: 680px;
    }

    .home-hero-inner {
        padding: 110px 22px 90px;
    }

    .home-hero h1 {
        font-size: clamp(46px, 14vw, 70px);
    }

    .home-hero p {
        font-size: 16px;
    }
}
/* HOME PILLARS */

.home-pillars {
    background: #f5f3ee;
    padding: 78px 28px;
}

.home-pillars-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.pillar-card {
    position: relative;
    padding: 42px 34px 44px;
    min-height: 285px;
    transition: transform .32s ease, background .32s ease;
}

.pillar-card:not(:last-child) {
    border-right: 1px solid rgba(16,20,24,.12);
}

.pillar-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.52);
}

.pillar-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 30px;
    color: #b15a05;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 46px;
    height: 46px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar-card h3 {
    margin: 0 0 16px;
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
    color: #101418;
    letter-spacing: -.025em;
}

.pillar-card p {
    margin: 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.72;
    font-weight: 400;
}

@media (max-width: 1050px) {
    .home-pillars-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar-card:nth-child(2) {
        border-right: 0;
    }

    .pillar-card:nth-child(1),
    .pillar-card:nth-child(2) {
        border-bottom: 1px solid rgba(16,20,24,.12);
    }
}

@media (max-width: 620px) {
    .home-pillars {
        padding: 56px 22px;
    }

    .home-pillars-inner {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        padding: 34px 4px 36px;
        min-height: auto;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(16,20,24,.12);
    }

    .pillar-card:last-child {
        border-bottom: 0;
    }
}
/* HOME FOCUS SPLIT */

.home-focus {
    background: #fff;
    padding: 92px 28px;
}

.home-focus-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: stretch; /* KLJUČNO */
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #b15a05;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 42px;
    height: 1px;
    background: #b15a05;
}

.home-focus h2 {
    margin: 0 0 24px;
    max-width: 720px;
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.035em;
    color: #101418;
}

.home-focus p {
    max-width: 660px;
    margin: 0 0 24px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
    font-weight: 400;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 30px;
    border-top: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.focus-list li {
    position: relative;
    padding: 16px 0 16px 34px;
    color: #20282e;
    font-size: 15px;
    line-height: 1.55;
    border-bottom: 1px solid rgba(16,20,24,.10);
}

.focus-list li:last-child {
    border-bottom: 0;
}

.focus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 21px;
    width: 14px;
    height: 14px;
    border: 1px solid #b15a05;
    border-radius: 50%;
}

.focus-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 26px;
    width: 4px;
    height: 4px;
    background: #b15a05;
    border-radius: 50%;
}

.home-focus-image {

    position: relative;

    height: 100%;
border-radius: 10px;
    display: flex;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 32px 80px rgba(16,20,24,.18);
}

.home-focus-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16,20,24,.04), rgba(16,20,24,.28)),
        radial-gradient(circle at 20% 20%, rgba(177,90,5,.22), transparent 36%);
    z-index: 2;
    pointer-events: none;
}

.home-focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform .9s ease;
    border-radius: 10px;
}
.home-focus-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-focus-image:hover img {
    transform: scale(1.07);
}

@media (max-width: 980px) {
    .home-focus {
        padding: 72px 22px;
    }

    .home-focus-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .home-focus-image,
    .home-focus-image img {
        min-height: 380px;
    }
}
/* HOME DARK CTA */

.home-dark-cta {
    position: relative;
    min-height: 560px;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.home-dark-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.92) 0%, rgba(6,9,11,.78) 45%, rgba(6,9,11,.48) 100%),
        radial-gradient(circle at 24% 45%, rgba(177,90,5,.24), transparent 36%);
    z-index: 1;
}

.home-dark-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 86px 86px;
    opacity: .22;
    z-index: 2;
    pointer-events: none;
}

.home-dark-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38));
    z-index: 3;
}

.home-dark-cta-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 96px 28px;
}

.dark-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.dark-kicker::before {
    content: "";
    width: 44px;
    height: 1px;
    background: #b15a05;
}

.home-dark-cta h2 {
    max-width: 980px;
    margin: 0;
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: clamp(48px, 6vw, 86px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.04em;
    color: #fff;
}

.home-dark-cta p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.78;
}

.dark-actions {
    margin-top: 38px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.dark-btn {
    background: var(--green);
    color: #fff;
    border-radius: 9px;
    padding: 15px 26px;
    font-size: 14px;
    box-shadow: 0 18px 45px rgba(63,125,92,.32);
}

.dark-btn-outline {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 9px;
    padding: 15px 26px;
    font-size: 14px;
    backdrop-filter: blur(14px);
}

.dark-btn-outline:hover {
    background: rgba(255,255,255,.14);
}

@media (max-width: 760px) {
    .home-dark-cta {
        min-height: 520px;
    }

    .home-dark-cta-inner {
        padding: 76px 22px;
    }

    .home-dark-cta h2 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .home-dark-cta p {
        font-size: 16px;
    }
}
/* HOME PROCESS */

.home-process {
    background: #f5f3ee;
    padding: 90px 28px;
}

.home-process-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.process-intro {
    max-width: 780px;
    margin-bottom: 60px;
}

.process-intro h2 {
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: -.03em;
    margin: 0 0 20px;
}

.process-intro p {
    color: #5f686e;
    font-size: 16px;
    line-height: 1.75;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.process-step {
    padding: 40px 30px;
    position: relative;
    transition: transform .3s ease, background .3s ease;
}

.process-step:not(:last-child) {
    border-right: 1px solid rgba(16,20,24,.12);
}

.process-step:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.6);
}

.process-icon {
    color: #b15a05;
    margin-bottom: 22px;
}

.process-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
}

.process-step h3 {
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 12px;
}

.process-step p {
    font-size: 14px;
    color: #5f686e;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-step:nth-child(2) {
        border-right: 0;
    }

    .process-step:nth-child(1),
    .process-step:nth-child(2) {
        border-bottom: 1px solid rgba(16,20,24,.12);
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(16,20,24,.12);
    }

    .process-step:last-child {
        border-bottom: 0;
    }
}
/* HOME FAQ PIANO */

.home-faq {
    background: #fff;
    padding: 92px 28px;
}

.home-faq-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.faq-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    color: #101418;
}

.faq-head p {
    margin: 0;
    max-width: 520px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.75;
}

.faq-piano {
    border-top: 1px solid rgba(16,20,24,.14);
}

.faq-item {
    border-bottom: 1px solid rgba(16,20,24,.14);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    min-height: 78px;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #101418;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -.02em;
}

.faq-item summary em {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(177,90,5,.65);
    border-radius: 50%;
    flex: 0 0 auto;
}

.faq-item summary em::before,
.faq-item summary em::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 1px;
    background: #b15a05;
    transform: translate(-50%, -50%);
    transition: transform .28s ease;
}

.faq-item summary em::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary em::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .42s ease;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 70px 28px 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.78;
}

.faq-item:hover summary span {
    color: #b15a05;
}

@media (max-width: 980px) {
    .home-faq-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .faq-item summary span {
        font-size: 25px;
    }

    .faq-answer p {
        padding-right: 0;
    }
}
/* FINAL CTA */

.home-final-cta {
    background: #f5f3ee;
    padding: 110px 28px 120px;
    text-align: center;
}

.home-final-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.home-final-cta h2 {
    margin: 0;
    font-family: 'Freight Text Pro', Georgia, serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.035em;
    color: #101418;
}

.home-final-cta p {
    margin: 30px auto 0;
    max-width: 720px;
    font-size: 17px;
    line-height: 1.8;
    color: #5f686e;
}

.final-cta-actions {
    margin-top: 46px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* DUGMAD */

.final-btn-primary {
    background: var(--green);
    color: #fff;
    padding: 18px 34px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 0 20px 55px rgba(63,125,92,.32);
}

.final-btn-primary:hover {
    background: #4c906c;
}

.final-btn-outline {
    background: transparent;
    border: 1px solid rgba(16,20,24,.18);
    color: #101418;
    padding: 18px 34px;
    font-size: 15px;
    border-radius: 10px;
}

.final-btn-outline:hover {
    background: rgba(16,20,24,.06);
}

@media (max-width: 760px) {
    .home-final-cta {
        padding: 80px 22px;
    }

    .home-final-cta h2 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .home-final-cta p {
        font-size: 16px;
    }
}
/* PREMIUM FOOTER */

.site-footer-pro {
    position: relative;
    overflow: hidden;
    background: #080b0d;
    color: rgba(255,255,255,.76);
    padding: 86px 28px 34px;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,11,13,.96), rgba(8,11,13,.90)),
        url('/assets/img/000.jpg') center/cover no-repeat;
    opacity: 1;
    z-index: 1;
}

.site-footer-pro::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(177,90,5,.18), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.035), transparent);
    z-index: 2;
    pointer-events: none;
}

.footer-pro-inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.55fr .85fr .75fr .75fr;
    gap: 54px;
}

.footer-logo {
    max-width: 190px;
    height: auto;
    display: block;
    margin-bottom: 22px;
}

.footer-slogan {
    max-width: 420px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
}

.footer-rating {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    max-width: 380px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 14px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(16px);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.footer-rating:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.085);
    border-color: rgba(255,255,255,.22);
}

.footer-rating-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-stars {
    color: #f2a600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-rating-text strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.footer-rating-text span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.footer-col {
    border-left: 1px solid rgba(255,255,255,.13);
    padding-left: 28px;
}

.footer-col h4 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,.64);
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 12px;
    transition: color .22s ease, transform .22s ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom-pro {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 58px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.footer-copy {
    margin: 0 0 16px;
    color: rgba(255,255,255,.70);
    font-size: 13px;
}

.footer-legal-note {
    max-width: 1180px;
    margin: 0;
    color: rgba(255,255,255,.46);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 980px) {
    .footer-pro-inner {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .site-footer-pro {
        padding: 66px 22px 30px;
    }

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

    .footer-col {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,.13);
        padding-top: 26px;
    }

    .footer-rating {
        align-items: flex-start;
    }

    .footer-rating-img {
        width: 62px;
        height: 62px;
    }

    .footer-rating-text strong {
        font-size: 19px;
    }
}
/* SECURE BADGE */

.footer-secure {
    display: inline-block;
    margin-top: 10px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.footer-secure img {
    width: 110px;
    opacity: 0.85;

    transition: opacity .25s ease, transform .25s ease;
    max-width: 100%;
    border-radius: 10px; /* blago obli */
    display: block;
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.footer-secure:hover img {

    opacity: 1;

}

.footer-secure:hover {
    transform: translateY(-3px);
}

.footer-secure:hover img {
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
/* FOOTER BADGES */

.footer-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
}

.footer-badge-static img {
    width: 110px;
    border-radius: 10px;
    opacity: 0.9;
}

/* postojeći */

.footer-secure img {
    width: 110px;
    border-radius: 10px;
}
.footer-badges {
    padding: 10px;
   
}
/* INNER PAGE HERO */

.inner-hero {
    position: relative;
    height: 350px;
    
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,10,12,.92), rgba(7,10,12,.70), rgba(7,10,12,.36)),
        radial-gradient(circle at 24% 50%, rgba(177,90,5,.20), transparent 38%);
    z-index: 1;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 78px 78px;
    opacity: .22;
    z-index: 2;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.34));
    z-index: 3;
}

.inner-hero-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    
   
}

.inner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255,255,255,.76);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.inner-kicker::before {
    content: "";
    width: 42px;
    height: 1px;
    background: #b15a05;
}

.inner-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -.025em;
    color: #fff;
}

.inner-hero p {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.55;
}
/* SERVICES DEEP SECTION */

.services-deep {
    background: #fff;
    padding: 100px 28px;
}

.services-deep-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: stretch;
}

.services-deep-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-deep h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.services-deep p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.services-deep-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    border-top: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.services-deep-list li {
    position: relative;
    padding: 16px 0 16px 34px;
    font-size: 15px;
    color: #20282e;
    border-bottom: 1px solid rgba(16,20,24,.10);
}

.services-deep-list li:last-child {
    border-bottom: 0;
}

.services-deep-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 14px;
    height: 14px;
    border: 1px solid #b15a05;
    border-radius: 50%;
}

.services-deep-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 25px;
    width: 4px;
    height: 4px;
    background: #b15a05;
    border-radius: 50%;
}

.services-deep-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(16,20,24,.18);
}

.services-deep-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.services-deep-image:hover img {
    transform: scale(1.06);
}

@media (max-width: 980px) {
    .services-deep-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
/* SERVICES GRID */

.services-grid-section {
    background: #f5f3ee;
    padding: 96px 28px;
}

.services-grid-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.services-grid-head {
    max-width: 800px;
    margin-bottom: 58px;
}

.services-grid-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.services-grid-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.service-card {
    min-height: 300px;
    padding: 34px 32px 36px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.38);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.service-number {
    display: block;
    margin-bottom: 34px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .18em;
}

.service-card h3 {
    margin: 0 0 18px;
    font-size: 31px;
    line-height: 1.05;
    color: #101418;
}

.service-card p {
    margin: 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.72;
}

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

@media (max-width: 620px) {
    .services-grid-section {
        padding: 72px 22px;
    }

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

    .service-card {
        min-height: auto;
        padding: 32px 24px;
    }
}
/* SERVICES TRIO */

.services-trio {
    background: #fff;
    padding: 104px 28px;
}

.services-trio-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    gap: 74px;
}

.trio-row {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: stretch;
    padding-bottom: 74px;
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.trio-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.trio-row-reverse {
    grid-template-columns: .9fr 1fr;
}

.trio-row-reverse .trio-content {
    order: 2;
}

.trio-row-reverse .trio-image {
    order: 1;
}

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

.trio-number {
    display: block;
    margin-bottom: 18px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .18em;
}

.trio-content h2 {
    margin: 0 0 22px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    color: #101418;
}

.trio-content p {
    margin: 0 0 28px;
    max-width: 680px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.trio-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(16,20,24,.12);
    max-width: 660px;
}

.trio-content li {
    position: relative;
    padding: 15px 0 15px 32px;
    border-bottom: 1px solid rgba(16,20,24,.10);
    color: #20282e;
    font-size: 15px;
    line-height: 1.55;
}

.trio-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 21px;
    width: 13px;
    height: 13px;
    border: 1px solid #b15a05;
    border-radius: 50%;
}

.trio-content li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 26px;
    width: 3px;
    height: 3px;
    background: #b15a05;
    border-radius: 50%;
}

.trio-image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 28px 72px rgba(16,20,24,.16);
}

.trio-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16,20,24,.02), rgba(16,20,24,.22)),
        radial-gradient(circle at 24% 20%, rgba(177,90,5,.18), transparent 36%);
    pointer-events: none;
}

.trio-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.trio-image:hover img {
    transform: scale(1.055);
}

@media (max-width: 980px) {
    .services-trio {
        padding: 78px 22px;
    }

    .trio-row,
    .trio-row-reverse {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .trio-row-reverse .trio-content,
    .trio-row-reverse .trio-image {
        order: initial;
    }

    .trio-image,
    .trio-image img {
        min-height: 360px;
    }
}
/* SERVICES SPLIT */

.services-split {
    background: #f5f3ee;
    padding: 100px 28px;
}

.services-split-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 76px;
    align-items: stretch;
}

.services-split-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 28px 72px rgba(16,20,24,.16);
}

.services-split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform .85s ease;
}

.services-split-image:hover img {
    transform: scale(1.055);
}

.services-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-split-text h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.services-split-text p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.services-split-note {
    margin-top: 18px;
    padding: 24px 26px;
    border-left: 2px solid #b15a05;
    background: rgba(255,255,255,.65);
    color: #20282e;
    font-size: 16px;
    line-height: 1.7;
}

/* SERVICES DARK CTA */

.services-dark-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.services-dark-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.92), rgba(6,9,11,.74), rgba(6,9,11,.42)),
        radial-gradient(circle at 25% 45%, rgba(177,90,5,.22), transparent 36%);
    z-index: 1;
}

.services-dark-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .22;
    z-index: 2;
}

.services-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.36));
    z-index: 3;
}

.services-dark-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 28px;
}

.services-dark-inner h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .98;
    color: #fff;
}

.services-dark-inner p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.78;
}

/* SERVICES MINI FAQ */

.services-mini-faq {
    background: #fff;
    padding: 92px 28px;
}

.services-mini-faq-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.services-mini-faq-head h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.02;
    color: #101418;
}

.faq-piano-compact .faq-item summary {
    min-height: 70px;
    padding: 20px 0;
}

.faq-piano-compact .faq-item summary span {
    font-size: 27px;
}

@media (max-width: 980px) {
    .services-split,
    .services-mini-faq {
        padding: 76px 22px;
    }

    .services-split-inner,
    .services-mini-faq-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .services-split-image,
    .services-split-image img {
        min-height: 360px;
    }

    .services-dark-inner {
        padding: 76px 22px;
    }
}
/* FACILITY DEEP */

.facility-deep {
    background: #fff;
    padding: 100px 28px;
}

.facility-deep-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: stretch;
}

.facility-deep-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-deep h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.facility-deep p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.facility-deep-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    border-top: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.facility-deep-list li {
    position: relative;
    padding: 16px 0 16px 34px;
    font-size: 15px;
    color: #20282e;
    border-bottom: 1px solid rgba(16,20,24,.10);
}

.facility-deep-list li:last-child {
    border-bottom: 0;
}

.facility-deep-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 14px;
    height: 14px;
    border: 1px solid #b15a05;
    border-radius: 50%;
}

.facility-deep-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 25px;
    width: 4px;
    height: 4px;
    background: #b15a05;
    border-radius: 50%;
}

.facility-deep-image {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(16,20,24,.18);
}

.facility-deep-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform .85s ease;
}

.facility-deep-image:hover img {
    transform: scale(1.055);
}

/* FACILITY GRID */

.facility-grid-section {
    background: #f5f3ee;
    padding: 96px 28px;
}

.facility-grid-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.facility-grid-head {
    max-width: 840px;
    margin-bottom: 58px;
}

.facility-grid-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.facility-grid-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.facility-card {
    min-height: 310px;
    padding: 34px 32px 36px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.38);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.facility-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.facility-number {
    display: block;
    margin-bottom: 34px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .18em;
}

.facility-card h3 {
    margin: 0 0 18px;
    font-size: 31px;
    line-height: 1.05;
    color: #101418;
}

.facility-card p {
    margin: 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.72;
}

/* FACILITY SPLIT */

.facility-split {
    background: #fff;
    padding: 100px 28px;
}

.facility-split-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 76px;
    align-items: stretch;
}

.facility-split-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 28px 72px rgba(16,20,24,.16);
}

.facility-split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform .85s ease;
}

.facility-split-image:hover img {
    transform: scale(1.055);
}

.facility-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-split-text h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.facility-split-text p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.facility-split-note {
    margin-top: 18px;
    padding: 24px 26px;
    border-left: 2px solid #b15a05;
    background: rgba(245,243,238,.78);
    color: #20282e;
    font-size: 16px;
    line-height: 1.7;
}

/* FACILITY DARK CTA */

.facility-dark-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.facility-dark-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.92), rgba(6,9,11,.74), rgba(6,9,11,.42)),
        radial-gradient(circle at 25% 45%, rgba(177,90,5,.22), transparent 36%);
    z-index: 1;
}

.facility-dark-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .22;
    z-index: 2;
}

.facility-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.36));
    z-index: 3;
}

.facility-dark-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 28px;
}

.facility-dark-inner h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .98;
    color: #fff;
}

.facility-dark-inner p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.78;
}

@media (max-width: 980px) {
    .facility-deep,
    .facility-grid-section,
    .facility-split {
        padding: 76px 22px;
    }

    .facility-deep-inner,
    .facility-split-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-deep-image,
    .facility-deep-image img,
    .facility-split-image,
    .facility-split-image img {
        min-height: 360px;
    }

    .facility-dark-inner {
        padding: 76px 22px;
    }
}

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

    .facility-card {
        min-height: auto;
        padding: 32px 24px;
    }
}
/* FACILITY NEXT LINKS */

.facility-next-links {
    background: #f5f3ee;
    padding: 96px 28px;
}

.facility-next-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.facility-next-head {
    max-width: 780px;
    margin-bottom: 54px;
}

.facility-next-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    color: #101418;
}

.facility-next-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.facility-next-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.facility-next-card {
    min-height: 320px;
    padding: 42px 38px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.42);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.facility-next-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.next-number {
    display: block;
    margin-bottom: 36px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .18em;
}

.facility-next-card h3 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.02;
    color: #101418;
}

.facility-next-card p {
    max-width: 560px;
    margin: 0 0 30px;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.74;
}

.facility-next-card em {
    font-style: normal;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .facility-next-links {
        padding: 72px 22px;
    }

    .facility-next-grid {
        grid-template-columns: 1fr;
    }

    .facility-next-card {
        min-height: auto;
        padding: 34px 26px;
    }
}
/* CORPORATE DEEP */

.corporate-deep {
    background: #fff;
    padding: 100px 28px;
}

.corporate-deep-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: stretch;
}

.corporate-deep-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corporate-deep h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.corporate-deep p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.corporate-deep-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    border-top: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.corporate-deep-list li {
    position: relative;
    padding: 16px 0 16px 34px;
    font-size: 15px;
    color: #20282e;
    border-bottom: 1px solid rgba(16,20,24,.10);
}

.corporate-deep-list li:last-child {
    border-bottom: 0;
}

.corporate-deep-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 14px;
    height: 14px;
    border: 1px solid #b15a05;
    border-radius: 50%;
}

.corporate-deep-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 25px;
    width: 4px;
    height: 4px;
    background: #b15a05;
    border-radius: 50%;
}

.corporate-deep-image {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(16,20,24,.18);
}

.corporate-deep-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform .85s ease;
}

.corporate-deep-image:hover img {
    transform: scale(1.055);
}

@media (max-width: 980px) {
    .corporate-deep {
        padding: 76px 22px;
    }

    .corporate-deep-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .corporate-deep-image,
    .corporate-deep-image img {
        min-height: 360px;
    }
}
/* CORPORATE GRID */

.corporate-grid-section {
    background: #f5f3ee;
    padding: 96px 28px;
}

.corporate-grid-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.corporate-grid-head {
    max-width: 840px;
    margin-bottom: 58px;
}

.corporate-grid-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.corporate-grid-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.corporate-card {
    min-height: 310px;
    padding: 34px 32px 36px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.38);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.corporate-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.corporate-number {
    display: block;
    margin-bottom: 34px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .18em;
}

.corporate-card h3 {
    margin: 0 0 18px;
    font-size: 31px;
    line-height: 1.05;
    color: #101418;
}

.corporate-card p {
    margin: 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.72;
}

/* CORPORATE SPLIT */

.corporate-split {
    background: #fff;
    padding: 100px 28px;
}

.corporate-split-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 76px;
    align-items: stretch;
}

.corporate-split-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 28px 72px rgba(16,20,24,.16);
}

.corporate-split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform .85s ease;
}

.corporate-split-image:hover img {
    transform: scale(1.055);
}

.corporate-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corporate-split-text h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.corporate-split-text p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.corporate-split-note {
    margin-top: 18px;
    padding: 24px 26px;
    border-left: 2px solid #b15a05;
    background: rgba(245,243,238,.78);
    color: #20282e;
    font-size: 16px;
    line-height: 1.7;
}

/* CORPORATE DARK CTA */

.corporate-dark-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.corporate-dark-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.92), rgba(6,9,11,.74), rgba(6,9,11,.42)),
        radial-gradient(circle at 25% 45%, rgba(177,90,5,.22), transparent 36%);
    z-index: 1;
}

.corporate-dark-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .22;
    z-index: 2;
}

.corporate-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.36));
    z-index: 3;
}

.corporate-dark-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 28px;
}

.corporate-dark-inner h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .98;
    color: #fff;
}

.corporate-dark-inner p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.78;
}

/* CORPORATE NEXT LINKS */

.corporate-next-links {
    background: #f5f3ee;
    padding: 96px 28px;
}

.corporate-next-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.corporate-next-head {
    max-width: 780px;
    margin-bottom: 54px;
}

.corporate-next-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    color: #101418;
}

.corporate-next-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.corporate-next-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.corporate-next-card {
    min-height: 320px;
    padding: 42px 38px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.42);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.corporate-next-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.corporate-next-card h3 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.02;
    color: #101418;
}

.corporate-next-card p {
    max-width: 560px;
    margin: 0 0 30px;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.74;
}

.corporate-next-card em {
    font-style: normal;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .corporate-grid-section,
    .corporate-split,
    .corporate-next-links {
        padding: 76px 22px;
    }

    .corporate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-split-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .corporate-split-image,
    .corporate-split-image img {
        min-height: 360px;
    }

    .corporate-dark-inner {
        padding: 76px 22px;
    }
}

@media (max-width: 620px) {
    .corporate-grid,
    .corporate-next-grid {
        grid-template-columns: 1fr;
    }

    .corporate-card,
    .corporate-next-card {
        min-height: auto;
        padding: 32px 24px;
    }
}
/* GLOBAL DEEP */

.global-deep {
    background: #fff;
    padding: 100px 28px;
}

.global-deep-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: stretch;
}

.global-deep-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.global-deep h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.global-deep p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.global-deep-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    border-top: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.global-deep-list li {
    position: relative;
    padding: 16px 0 16px 34px;
    font-size: 15px;
    color: #20282e;
    border-bottom: 1px solid rgba(16,20,24,.10);
}

.global-deep-list li:last-child {
    border-bottom: 0;
}

.global-deep-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 14px;
    height: 14px;
    border: 1px solid #b15a05;
    border-radius: 50%;
}

.global-deep-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 25px;
    width: 4px;
    height: 4px;
    background: #b15a05;
    border-radius: 50%;
}

.global-deep-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(16,20,24,.18);
}

.global-deep-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 520px;
    transition: transform .85s ease;
}

.global-deep-image:hover img {
    transform: scale(1.055);
}

@media (max-width: 980px) {
    .global-deep {
        padding: 76px 22px;
    }

    .global-deep-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .global-deep-image,
    .global-deep-image img {
        min-height: 360px;
    }
}
/* GLOBAL GRID */

.global-grid-section {
    background: #f5f3ee;
    padding: 96px 28px;
}

.global-grid-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.global-grid-head {
    max-width: 840px;
    margin-bottom: 58px;
}

.global-grid-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.global-grid-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.global-card {
    min-height: 310px;
    padding: 34px 32px 36px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.38);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.global-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.global-number {
    display: block;
    margin-bottom: 34px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .18em;
}

.global-card h3 {
    margin: 0 0 18px;
    font-size: 31px;
    line-height: 1.05;
    color: #101418;
}

.global-card p {
    margin: 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.72;
}

/* GLOBAL SPLIT */

.global-split {
    background: #fff;
    padding: 100px 28px;
}

.global-split-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 76px;
    align-items: stretch;
}

.global-split-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 28px 72px rgba(16,20,24,.16);
}

.global-split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform .85s ease;
}

.global-split-image:hover img {
    transform: scale(1.055);
}

.global-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.global-split-text h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.global-split-text p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.global-split-note {
    margin-top: 18px;
    padding: 24px 26px;
    border-left: 2px solid #b15a05;
    background: rgba(245,243,238,.78);
    color: #20282e;
    font-size: 16px;
    line-height: 1.7;
}

/* GLOBAL DARK CTA */

.global-dark-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.global-dark-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.92), rgba(6,9,11,.74), rgba(6,9,11,.42)),
        radial-gradient(circle at 25% 45%, rgba(177,90,5,.22), transparent 36%);
    z-index: 1;
}

.global-dark-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .22;
    z-index: 2;
}

.global-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.36));
    z-index: 3;
}

.global-dark-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 28px;
}

.global-dark-inner h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .98;
    color: #fff;
}

.global-dark-inner p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.78;
}

/* GLOBAL NEXT LINKS */

.global-next-links {
    background: #f5f3ee;
    padding: 96px 28px;
}

.global-next-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.global-next-head {
    max-width: 780px;
    margin-bottom: 54px;
}

.global-next-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    color: #101418;
}

.global-next-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.global-next-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.global-next-card {
    min-height: 320px;
    padding: 42px 38px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.42);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.global-next-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.global-next-card h3 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.02;
    color: #101418;
}

.global-next-card p {
    max-width: 560px;
    margin: 0 0 30px;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.74;
}

.global-next-card em {
    font-style: normal;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .global-grid-section,
    .global-split,
    .global-next-links {
        padding: 76px 22px;
    }

    .global-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .global-split-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .global-split-image,
    .global-split-image img {
        min-height: 360px;
    }

    .global-dark-inner {
        padding: 76px 22px;
    }
}

@media (max-width: 620px) {
    .global-grid,
    .global-next-grid {
        grid-template-columns: 1fr;
    }

    .global-card,
    .global-next-card {
        min-height: auto;
        padding: 32px 24px;
    }
}
/* PARTNERS DEEP CTA */

.partners-deep-cta {
    background: #f5f3ee;
    padding: 110px 28px;
}

.partners-deep-inner {
    max-width: 980px;
    margin: 0 auto;
}

.partners-deep-cta h2 {
    margin: 0 0 26px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.02;
    color: #101418;
}

.partners-deep-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #20282e;
    margin-bottom: 32px;
}

.partners-deep-text p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #5f686e;
}

.partners-deep-actions {
    margin-top: 42px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.partners-btn {
    background: #b15a05;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: all .25s ease;
}

.partners-btn:hover {
    background: #c96a12;
    transform: translateY(-2px);
}

.partners-btn-outline {
    border: 1px solid #101418;
    color: #101418;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: transparent;
    transition: all .25s ease;
}

.partners-btn-outline:hover {
    background: #101418;
    color: #fff;
}
/* PARTNERS NETWORK */

.partners-network {
    background: #f5f3ee;
    padding: 100px 28px;
}

.partners-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.partners-head {
    max-width: 820px;
    margin-bottom: 60px;
}

.partners-head h2 {
    margin: 0 0 22px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.02;
    color: #101418;
}

.partners-head p {
    margin: 0 0 26px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.75;
}

.partners-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partners-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #20282e;
}

.partners-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #b15a05;
    border-radius: 50%;
}

/* GRID */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.partner-card {
    padding: 28px 22px 30px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.5);
    text-align: left;
    transition: all .3s ease;
}

.partner-card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(16,20,24,.10);
}

.partner-card img {
    height: 34px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.1);
    opacity: .8;
    transition: .3s;
}

.partner-card:hover img {
    filter: none;
    opacity: 1;
}

.partner-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #101418;
    font-weight: 500;
}

.partner-card p {
    margin: 0;
    font-size: 14px;
    color: #5f686e;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}
/* PARTNERS WORK */

.partners-work {
    background: #fff;
    padding: 96px 28px;
}

.partners-work-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.partners-work-head {
    max-width: 820px;
    margin-bottom: 58px;
}

.partners-work-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.partners-work-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.partners-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.partners-work-card {
    min-height: 300px;
    padding: 36px 30px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(245,243,238,.52);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.partners-work-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.partners-work-number {
    display: block;
    margin-bottom: 32px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .18em;
}

.partners-work-card h3 {
    margin: 0 0 16px;
    font-size: 29px;
    line-height: 1.05;
    color: #101418;
}

.partners-work-card p {
    margin: 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.72;
}

/* PARTNERS FINAL CTA */

.partners-final-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.partners-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.92), rgba(6,9,11,.74), rgba(6,9,11,.42)),
        radial-gradient(circle at 25% 45%, rgba(177,90,5,.22), transparent 36%);
    z-index: 1;
}

.partners-final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .22;
    z-index: 2;
}

.partners-final-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.36));
    z-index: 3;
}

.partners-final-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 28px;
}

.partners-final-inner h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .98;
    color: #fff;
}

.partners-final-inner p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.78;
}

@media (max-width: 980px) {
    .partners-work {
        padding: 76px 22px;
    }

    .partners-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-final-inner {
        padding: 76px 22px;
    }
}

@media (max-width: 620px) {
    .partners-work-grid {
        grid-template-columns: 1fr;
    }

    .partners-work-card {
        min-height: auto;
        padding: 32px 24px;
    }
}
/* ABOUT DEEP */

.about-deep {
    background: #fff;
    padding: 100px 28px;
}

.about-deep-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: stretch;
}

.about-deep-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-deep h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.about-deep p {
    margin: 0 0 22px;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.8;
}

.about-deep-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    border-top: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
}

.about-deep-list li {
    position: relative;
    padding: 16px 0 16px 34px;
    font-size: 15px;
    color: #20282e;
    border-bottom: 1px solid rgba(16,20,24,.10);
}

.about-deep-list li:last-child {
    border-bottom: 0;
}

.about-deep-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 14px;
    height: 14px;
    border: 1px solid #b15a05;
    border-radius: 50%;
}

.about-deep-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 25px;
    width: 4px;
    height: 4px;
    background: #b15a05;
    border-radius: 50%;
}

.about-deep-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(16,20,24,.18);
}

.about-deep-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform .85s ease;
}

.about-deep-image:hover img {
    transform: scale(1.055);
}

@media (max-width: 980px) {
    .about-deep {
        padding: 76px 22px;
    }

    .about-deep-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-deep-image,
    .about-deep-image img {
        min-height: 360px;
    }
}
/* ABOUT STATS */

.about-stats {
    background: #f5f3ee;
    padding: 100px 28px;
}

.about-stats-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.about-stats-head {
    max-width: 720px;
    margin-bottom: 60px;
}

.about-stats-head h2 {
    margin: 0 0 20px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    color: #101418;
}

.about-stats-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.75;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.stat-box {
    padding: 40px 30px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.5);
    transition: all .3s ease;
}

.stat-box:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(16,20,24,.10);
}

.stat-number {
    display: block;
    font-size: 52px;
    color: #b15a05;
    margin-bottom: 18px;
    font-family: 'Freight Text Pro', serif;
}

.stat-box h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #101418;
}

.stat-box p {
    margin: 0;
    font-size: 14px;
    color: #5f686e;
    line-height: 1.6;
}

/* responsive */

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

@media (max-width: 520px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ABOUT VALUES */

.about-values {
    background: #fff;
    padding: 100px 28px;
}

.about-values-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.about-values-head {
    max-width: 820px;
    margin-bottom: 58px;
}

.about-values-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.about-values-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.about-value-card {
    min-height: 320px;
    padding: 38px 30px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(245,243,238,.45);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.about-value-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.about-value-number {
    display: block;
    margin-bottom: 34px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .18em;
}

.about-value-card h3 {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.05;
    color: #101418;
}

.about-value-card p {
    margin: 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.72;
}

@media (max-width: 980px) {
    .about-values {
        padding: 76px 22px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: auto;
        padding: 32px 24px;
    }
}
/* ABOUT WHY */

.about-why {
    background: #f5f3ee;
    padding: 110px 28px;
}

.about-why-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.about-why-head {
    max-width: 780px;
    margin-bottom: 70px;
}

.about-why-head h2 {
    margin: 0 0 22px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.02;
    color: #101418;
}

.about-why-head p {
    margin: 0;
    color: #5f686e;
    font-size: 17px;
    line-height: 1.75;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16,20,24,.14);
    border-left: 1px solid rgba(16,20,24,.14);
}

.about-why-card {
    min-height: 340px;
    padding: 44px 32px;
    border-right: 1px solid rgba(16,20,24,.14);
    border-bottom: 1px solid rgba(16,20,24,.14);
    background: rgba(255,255,255,.55);
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

.about-why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(177,90,5,.12), transparent 60%);
    opacity: 0;
    transition: opacity .4s ease;
}

.about-why-card:hover::before {
    opacity: 1;
}

.about-why-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 30px 80px rgba(16,20,24,.12);
}

.about-why-number {
    display: block;
    margin-bottom: 30px;
    color: #b15a05;
    font-size: 13px;
    letter-spacing: .2em;
}

.about-why-card h3 {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.05;
    color: #101418;
}

.about-why-card p {
    margin: 0;
    font-size: 15px;
    color: #5f686e;
    line-height: 1.75;
}

/* responsive */

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

@media (max-width: 620px) {
    .about-why-grid {
        grid-template-columns: 1fr;
    }
}
/* ABOUT FINAL CTA */

.about-final-cta {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.about-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.94), rgba(6,9,11,.78), rgba(6,9,11,.45)),
        radial-gradient(circle at 20% 40%, rgba(177,90,5,.25), transparent 45%);
    z-index: 1;
}

.about-final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .25;
    z-index: 2;
}

.about-final-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.4));
    z-index: 3;
}

.about-final-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    margin: 0 auto;
    padding: 90px 28px;
}

.about-final-inner h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(50px, 6vw, 86px);
    line-height: .98;
    color: #fff;
}

.about-final-inner p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.8;
}
/* ABOUT WHY - CLEAN LIST */

.about-why {
    background: #f5f3ee;
    padding: 110px 28px;
}

.about-why-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-why-head {
    margin-bottom: 70px;
}

.about-why-head h2 {
    margin: 0 0 22px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.02;
    color: #101418;
}

.about-why-head p {
    margin: 0;
    color: #5f686e;
    font-size: 17px;
    line-height: 1.75;
}

/* LIST */

.about-why-list {
    border-top: 1px solid rgba(16,20,24,.14);
}

.about-why-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(16,20,24,.14);
    align-items: start;
    transition: all .3s ease;
}

.about-why-item:hover {
    transform: translateX(6px);
}

/* NUMBER */

.about-why-index {
    font-size: 55px;
    letter-spacing: .18em;
    color: #b15a0575;
    margin-top: 1px;
}

/* CONTENT */

.about-why-content h3 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #101418;
}

.about-why-content p {
    margin: 0;
    font-size: 15px;
    color: #5f686e;
    line-height: 1.7;
}

/* subtle line accent */

.about-why-item::before {
    content: "";
    position: absolute;
    left: 0;
    height: 0;
    width: 2px;
    background: #b15a054a;
    transition: height .35s ease;
}

.about-why-item:hover::before {
    height: 100%;
}

/* responsive */

@media (max-width: 640px) {
    .about-why-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-why-index {
        margin-bottom: 8px;
    }
}
/* ABOUT LEGAL LINKS */

.about-legal-links {
    background: #fff;
    padding: 100px 28px 120px;
}

.about-legal-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-legal-head {
    margin-bottom: 60px;
}

.about-legal-head h2 {
    margin: 0 0 18px;
    font-size: clamp(40px, 5vw, 64px);
    color: #101418;
}

.about-legal-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.7;
}

/* LIST */

.about-legal-list {
    border-top: 1px solid rgba(16,20,24,.12);
}

.about-legal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(16,20,24,.12);
    color: #101418;
    font-size: 17px;
    transition: all .25s ease;
}

.about-legal-item span {
    letter-spacing: .02em;
}

.about-legal-item em {
    font-style: normal;
    color: #b15a05;
    transition: transform .25s ease;
}

.about-legal-item:hover {
    transform: translateX(6px);
}

.about-legal-item:hover em {
    transform: translateX(6px);
}

/* responsive */

@media (max-width: 640px) {
    .about-legal-links {
        padding: 80px 20px 100px;
    }

    .about-legal-item {
        font-size: 15px;
    }
}
.contact-section {
    background: #f5f3ee;
    padding: 100px 28px;
}

.contact-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 76px;
    align-items: start;
}

.contact-info h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.contact-info p {
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.contact-company {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(16,20,24,.14);
}

.contact-company p {
    margin: 0 0 9px;
}

.contact-form {
    background: #fff;
    padding: 38px;
    border-radius: 10px;
    box-shadow: 0 28px 72px rgba(16,20,24,.12);
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(16,20,24,.14);
    border-radius: 8px;
    padding: 15px 16px;
    font-size: 15px;
    color: #101418;
    background: #fff;
}

.contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #b15a05;
    box-shadow: 0 0 0 4px rgba(177,90,5,.10);
}

.contact-submit {
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    padding: 15px 24px;
    font-size: 14px;
    justify-self: start;
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }
}
.contact-status {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid;
}

.contact-status.is-success {
    background: rgba(63,125,92,.10);
    border-color: rgba(63,125,92,.35);
    color: #204c24;
}

.contact-status.is-error {
    background: rgba(185,28,28,.10);
    border-color: rgba(185,28,28,.35);
    color: #7f1d1d;
}
/* LOGIN CTA */

.login-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.login-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.95), rgba(6,9,11,.75), rgba(6,9,11,.45)),
        radial-gradient(circle at 20% 40%, rgba(177,90,5,.25), transparent 45%);
    z-index: 1;
}

.login-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .25;
    z-index: 2;
}

.login-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.4));
    z-index: 3;
}

.login-cta-inner {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    margin: 0 auto;
    padding: 90px 28px;
}

.login-cta-inner h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(48px, 6vw, 82px);
    line-height: .98;
}

.login-cta-inner p {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.75;
}
/* CONTACT LINKS */

.contact-links {
    background: #fff;
    padding: 90px 28px;
}

.contact-links-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-links-head {
    margin-bottom: 50px;
}

.contact-links-head h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    color: #101418;
}

/* LIST */

.contact-links-list {
    border-top: 1px solid rgba(16,20,24,.12);
}

.contact-link-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(16,20,24,.12);
    transition: all .25s ease;
}

.contact-link-item:hover {
    transform: translateX(6px);
}

/* ICON */

.contact-link-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(16,20,24,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link-icon svg {
    width: 18px;
    height: 18px;
    stroke: #b15a05;
    stroke-width: 1.6;
    fill: none;
}

/* TEXT */

.contact-link-item strong {
    display: block;
    font-size: 17px;
    color: #101418;
}

.contact-link-item p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #5f686e;
}

.contact-link-item em {
    color: #b15a05;
    font-style: normal;
    transition: transform .25s ease;
}

.contact-link-item:hover em {
    transform: translateX(6px);
}

/* responsive */

@media (max-width: 640px) {
    .contact-link-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
/* PARTNER LOGIN PAGE */

.partner-login-section {
    background: #f5f3ee;
    padding: 100px 28px;
}

.partner-login-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.partner-login-head {
    max-width: 840px;
    margin-bottom: 58px;
}

.partner-login-head h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    color: #101418;
}

.partner-login-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.78;
}

.partner-login-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(16,20,24,.12);
    border-left: 1px solid rgba(16,20,24,.12);
}

.partner-bank-card {
    appearance: none;
    border: 0;
    text-align: left;
    min-height: 280px;
    padding: 34px 30px 36px;
    border-right: 1px solid rgba(16,20,24,.12);
    border-bottom: 1px solid rgba(16,20,24,.12);
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.partner-bank-card:hover {
    background: #fff;
    transform: translateY(-7px);
    box-shadow: 0 24px 70px rgba(16,20,24,.10);
}

.partner-bank-card img {
    height: 36px;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 34px;
    filter: grayscale(100%) contrast(1.1);
    opacity: .82;
    transition: filter .3s ease, opacity .3s ease;
}

.partner-bank-card:hover img {
    filter: none;
    opacity: 1;
}

.partner-bank-card h3 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.08;
    color: #101418;
    font-family: 'Freight Text Pro', Georgia, serif;
    font-weight: 400;
}

.partner-bank-card p {
    margin: 0;
    color: #5f686e;
    font-size: 14px;
    line-height: 1.65;
}

/* BANK CONNECT MODAL */

.bank-connect-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
}

.bank-connect-modal.is-open {
    display: block;
}

.bank-connect-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,14,17,.72);
    backdrop-filter: blur(10px);
}

.bank-connect-box {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 12vh auto 0;
    padding: 42px 44px 38px;
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 38px 100px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.6);
    text-align: center;
}

.bank-connect-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(16,20,24,.12);
    background: #fff;
    color: #101418;
    border-radius: 10px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.bank-connect-logo {
    max-height: 54px;
    max-width: 230px;
    object-fit: contain;
    margin: 8px auto 28px;
    display: block;
}

.bank-connect-box h3 {
    margin: 0 0 12px;
    font-size: 30px;
    color: #101418;
    font-family: 'Freight Text Pro', Georgia, serif;
    font-weight: 400;
}

.bank-connect-box p {
    margin: 0;
    color: #6b7480;
    font-size: 15px;
    line-height: 1.6;
}

.bank-connect-progress {
    width: 100%;
    height: 32px;
    margin: 34px 0 18px;
    background: rgba(16,20,24,.10);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(16,20,24,.12);
}

.bank-connect-progress span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: 999px;

    background: linear-gradient(90deg,
        #3f7d5c 0%,
        #b15a05 50%,
        #3f7d5c 100%
    );

    box-shadow:
        inset 0 2px 6px rgba(0,0,0,.15),
        0 4px 12px rgba(177,90,5,.25);

    animation: bankProgress 2.6s ease forwards;
}

@keyframes bankProgress {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes bankWave {
    from { background-position: 0% 50%; }
    to { background-position: 200% 50%; }
}

.bank-connect-status {
    font-size: 14px !important;
    color: #6b7480 !important;
}

.bank-connect-secure {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(16,20,24,.12);
    color: #6b7480;
    font-size: 14px;
}

.bank-connect-secure span {
    color: #3f7d5c;
    margin-right: 8px;
    font-weight: 600;
}

@media (max-width: 980px) {
    .partner-login-section {
        padding: 76px 22px;
    }

    .partner-login-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bank-connect-box {
        margin: 10vh 18px 0;
    }
}

@media (max-width: 620px) {
    .partner-login-grid {
        grid-template-columns: 1fr;
    }

    .partner-bank-card {
        min-height: auto;
        padding: 32px 24px;
    }

    .bank-connect-box {
        padding: 38px 24px 32px;
    }
}
/* LOGIN EXTRA CTA */

.login-extra-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.login-extra-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,9,11,.95), rgba(6,9,11,.75), rgba(6,9,11,.45)),
        radial-gradient(circle at 20% 40%, rgba(177,90,5,.25), transparent 50%);
    z-index: 1;
}

.login-extra-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.5));
    z-index: 2;
}

.login-extra-inner {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 28px;
}

.login-extra-inner h2 {
    font-size: clamp(48px, 6vw, 82px);
    line-height: .98;
    margin: 0;
}

.login-extra-inner p {
    margin: 24px 0 0;
    max-width: 700px;
    font-size: 17px;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
}

/* BUTTONS */

.login-extra-actions {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-ghost-light {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    background: transparent;
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,.12);
}
/* LOGIN SECURITY NOTICE */

.login-security {
    background: #f5f3ee;
    padding: 90px 28px;
}

.login-security-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.login-security-head {
    max-width: 760px;
    margin-bottom: 46px;
}

.login-security-head h2 {
    margin: 0 0 18px;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.03;
    color: #101418;
}

.login-security-head p {
    margin: 0;
    color: #5f686e;
    font-size: 16px;
    line-height: 1.75;
}

.login-security-list {
    border-top: 1px solid rgba(16,20,24,.14);
}

.login-security-list div {
    display: grid;
    grid-template-columns: .42fr 1fr;
    gap: 36px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(16,20,24,.14);
}

.login-security-list strong {
    color: #101418;
    font-size: 18px;
    font-weight: 500;
}

.login-security-list p {
    margin: 0;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.72;
}

@media (max-width: 700px) {
    .login-security-list div {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
/* LEGAL HERO */

.legal-hero {
    height: 200px;
    display: flex;
    align-items: center;
    background: #0b1116;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(177,90,5,.25), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.6));
    z-index: 1;
}

.legal-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

.legal-kicker {
    display: block;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 6px;
}

.legal-hero h1 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    color: #fff;
    font-weight: 400;
}

.legal-hero p {
    margin: 6px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}
/* LEGAL HERO */

.legal-hero {
    height: 200px;
    display: flex;
    align-items: center;
    background: #0b1116;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(177,90,5,.25), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.65));
    z-index: 1;
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .28;
    z-index: 2;
}

.legal-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

.legal-kicker {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    color: #fff;
    font-weight: 400;
}

.legal-hero p {
    max-width: 680px;
    margin: 8px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.6;
}

/* LEGAL LAYOUT */

.legal-layout {
    background: #f5f3ee;
    padding: 92px 28px 110px;
}

.legal-layout-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 76px;
    align-items: start;
}

/* LEGAL CONTENT */

.legal-content {
    background: #fff;
    padding: 52px 56px;
    border-radius: 10px;
    box-shadow: 0 28px 72px rgba(16,20,24,.10);
}

.legal-content h2 {
    margin: 0 0 34px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    color: #101418;
}

.legal-content h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.08;
    color: #101418;
}

.legal-content p {
    margin: 0 0 14px;
    color: #5f686e;
    font-size: 15px;
    line-height: 1.78;
}

.legal-content a {
    color: #b15a05;
}

.legal-block {
    padding: 28px 0;
    border-top: 1px solid rgba(16,20,24,.12);
}

.legal-block:first-of-type {
    border-top: 0;
    padding-top: 0;
}

/* LEGAL SIDEBAR RIGHT */

.legal-sidebar {
    position: sticky;
    top: 110px;
}

.legal-sidebar-box {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(16,20,24,.12);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(16,20,24,.08);
}

.legal-sidebar-box > span {
    display: block;
    margin-bottom: 18px;
    color: #b15a05;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-sidebar a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-top: 1px solid rgba(16,20,24,.10);
    color: #5f686e;
    font-size: 14px;
    transition: color .25s ease, transform .25s ease;
}

.legal-sidebar a::after {
    content: "→";
    color: #b15a05;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .25s ease, transform .25s ease;
}

.legal-sidebar a:hover,
.legal-sidebar a.is-active {
    color: #101418;
    transform: translateX(4px);
}

.legal-sidebar a:hover::after,
.legal-sidebar a.is-active::after {
    opacity: 1;
    transform: translateX(0);
}

/* LEGAL CTA */

.legal-cta-box {
    margin-top: 34px;
    padding: 32px;
    border-radius: 10px;
    background: #101418;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.legal-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(177,90,5,.28), transparent 55%);
}

.legal-cta-box h3,
.legal-cta-box p,
.legal-cta-box a {
    position: relative;
    z-index: 2;
}

.legal-cta-box h3 {
    color: #fff;
    margin-bottom: 12px;
}

.legal-cta-box p {
    color: rgba(255,255,255,.72);
}

.legal-btn {
    margin-top: 14px;
    display: inline-flex;
    background: #b15a05;
    color: #fff !important;
    border-radius: 8px;
    padding: 13px 22px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .legal-layout {
        padding: 72px 22px 90px;
    }

    .legal-layout-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-sidebar {
        position: static;
        order: -1;
    }

    .legal-content {
        padding: 38px 28px;
    }
}
/* COOKIE PRO */

.cookie-pro {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 500;
    max-width: 980px;
    margin: 0 auto;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(16, 20, 24, 0.65), rgba(24,32,38,.97)), radial-gradient(circle at 10% 20%, rgba(177,90,5,.24), transparent 45%);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 30px 90px rgba(0,0,0,.38);
    border-radius: 14px;
    padding: 26px 28px;
    color: #fff;
}

.cookie-pro.is-visible {
    display: grid;
}

.cookie-pro-text span {
    display: block;
    margin-bottom: 8px;
    color: #fde6d0;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cookie-pro-text h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
    line-height: 1.05;
}

.cookie-pro-text p {
    margin: 0;
    max-width: 720px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.65;
}

.cookie-pro-text a {
    display: inline-block;
    margin-top: 12px;
    color: #fde6d0;
    font-size: 13px;
}

.cookie-accept {
    background: #b15a05;
    color: #fff;
    border-radius: 8px;
    padding: 14px 24px;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #c66a10;
}

@media (max-width: 760px) {
    .cookie-pro {
        left: 16px;
        right: 16px;
        bottom: 16px;
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .cookie-accept {
        width: 100%;
    }
}
.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.2);
    margin-left: 10px;
}

.cookie-reject:hover {
    border-color: #b15a05;
    color: #fff;
}
/* COOKIE APPLE STYLE ANIMATION */

.cookie-pro {
    opacity: 0;
    transform: translateY(24px) scale(.98);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition:
        opacity .45s ease,
        transform .45s ease;
}

.cookie-pro.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cookie-pro::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04)),
        radial-gradient(circle at 15% 20%, rgba(177,90,5,.20), transparent 45%);
    pointer-events: none;
    z-index: -1;
}

.cookie-pro::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,.035);
    pointer-events: none;
}
.cookie-pro {
    position: fixed;
    overflow: hidden;
}
/* 404 PAGE */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(11,17,22,.94), rgba(16,24,30,.88)),
        radial-gradient(circle at 20% 35%, rgba(177,90,5,.28), transparent 45%);
    color: #fff;
    padding: 120px 28px;
}

.error-page-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.error-page h1 {
    margin: 0;
    font-size: clamp(54px, 8vw, 110px);
    line-height: .95;
    color: #fff;
}

.error-page p {
    max-width: 680px;
    margin: 26px auto 0;
    color: rgba(255,255,255,.74);
    font-size: 17px;
    line-height: 1.75;
}

.error-actions {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.error-btn-primary {
    background: #b15a05;
    color: #fff;
    border-radius: 8px;
    padding: 14px 24px;
}

.error-btn-outline {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    border-radius: 8px;
    padding: 14px 24px;
    background: transparent;
}

.error-btn-outline:hover {
    background: rgba(255,255,255,.12);
}
.contact-form-wrap {
    width: 100%;
}

.contact-status {
    width: 100%;
    margin-bottom: 18px;
}
