@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('../fonts/BricolageGrotesque/BricolageGrotesque.ttf') format('truetype');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans/InstrumentSans.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --cc-ink: #150a19;
    --cc-ink-soft: #1d0e23;
    --cc-plum: #2b1129;
    --cc-berry: #430a35;
    --cc-cream: #f6f0ea;
    --cc-sand: #ecdfd2;
    --cc-orange: #ed5627;
    --cc-red: #ce343c;
    --cc-magenta: #a2045a;
    --cc-line-dark: rgba(246, 240, 234, 0.13);
    --cc-line-light: rgba(21, 10, 25, 0.12);
    --cc-text-dark: #f6ece6;
    --cc-text-dark-muted: rgba(246, 236, 230, 0.68);
    --cc-text-light: #24121f;
    --cc-text-light-muted: rgba(33, 33, 33, 0.9);
    --cc-gradient: linear-gradient(115deg, #ed5627 0%, #ce343c 48%, #a2045a 100%);
    --cc-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
    --cc-body: "Instrument Sans", "Segoe UI", sans-serif;
    --cc-header-h: 92px;
    --cc-radius: 24px;
    --cc-radius-sm: 16px;
    --cc-shadow: 0 30px 70px -34px rgba(12, 4, 16, 0.8);
}

* {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--cc-body);
    font-size: 1.03rem;
    line-height: 1.75;
    color: var(--cc-text-dark);
    background-color: var(--cc-ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-family: var(--cc-display);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.06;
    margin: 0;
}

h1 {
    font-size: clamp(2.5rem, 5.6vw, 4.7rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(1.9rem, 3.7vw, 3.05rem);
}

h3 {
    font-size: clamp(1.2rem, 1.9vw, 1.52rem);
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1.15rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

::selection {
    background: var(--cc-magenta);
    color: #fff;
}

.cc-container {
    width: 100%;
    max-width: 1340px;
    padding-left: 26px;
    padding-right: 26px;
    margin: 0 auto;
}

.cc-section {
    position: relative;
    padding: clamp(78px, 9vw, 140px) 0;
    overflow: hidden;
    isolation: isolate;
}

.cc-section::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.cc-inner {
    position: relative;
    z-index: 3;
}

.cc-ink {
    background-color: var(--cc-ink);
}

.cc-ink-soft {
    background-color: var(--cc-ink-soft);
}

.cc-berry {
    background-color: var(--cc-berry);
}

.cc-cream {
    background-color: var(--cc-cream);
    color: var(--cc-text-light);
}

.cc-sand {
    background-color: var(--cc-sand);
    color: var(--cc-text-light);
}

.cc-cream p,
.cc-sand p {
    color: var(--cc-text-light-muted);
}

.cc-ink p,
.cc-ink-soft p,
.cc-plum p,
.cc-berry p {
    color: var(--cc-text-dark-muted);
}

.edge-slant-flip {
    clip-path: polygon(0 0, 100% 3.5vw, 100% 100%, 0 100%);
    margin-top: -3.5vw;
    padding-top: clamp(96px, 11vw, 172px);
}

.bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-shapes span {
    position: absolute;
    display: block;
}

.bg-orbits span:nth-child(1) {
    width: 46vw;
    height: 26vw;
    min-width: 380px;
    min-height: 210px;
    top: -8%;
    right: -10%;
    border: clamp(26px, 3vw, 46px) solid rgba(237, 86, 39, 0.13);
    border-radius: 999px;
    transform: rotate(-24deg);
}

.bg-orbits span:nth-child(2) {
    width: 30vw;
    height: 17vw;
    min-width: 260px;
    min-height: 150px;
    bottom: -12%;
    left: -8%;
    border: clamp(18px, 2vw, 32px) solid rgba(162, 4, 90, 0.16);
    border-radius: 999px;
    transform: rotate(18deg);
}

.bg-orbits span:nth-child(3) {
    width: 40vw;
    height: 40vw;
    top: 20%;
    right: 12%;
    background: radial-gradient(circle, rgba(206, 52, 60, 0.4), transparent 66%);
    filter: blur(90px);
}

.cc-cream .bg-orbits span:nth-child(1),
.cc-sand .bg-orbits span:nth-child(1) {
    border-color: rgba(206, 52, 60, 0.14);
}

.cc-cream .bg-orbits span:nth-child(2),
.cc-sand .bg-orbits span:nth-child(2) {
    border-color: rgba(162, 4, 90, 0.12);
}

.cc-cream .bg-orbits span:nth-child(3),
.cc-sand .bg-orbits span:nth-child(3) {
    background: radial-gradient(circle, rgba(237, 86, 39, 0.22), transparent 68%);
}

.bg-aurora span {
    border-radius: 50%;
    filter: blur(100px);
    animation: cc-drift 22s ease-in-out infinite;
}

.bg-aurora span:nth-child(1) {
    width: 44vw;
    height: 44vw;
    top: -14%;
    left: -6%;
    background: radial-gradient(circle, rgba(237, 86, 39, 0.5), transparent 66%);
}

.bg-aurora span:nth-child(2) {
    width: 38vw;
    height: 38vw;
    bottom: -18%;
    right: -6%;
    background: radial-gradient(circle, rgba(162, 4, 90, 0.55), transparent 66%);
    animation-delay: -7s;
}

.bg-aurora span:nth-child(3) {
    width: 26vw;
    height: 26vw;
    top: 32%;
    left: 46%;
    background: radial-gradient(circle, rgba(206, 52, 60, 0.4), transparent 68%);
    animation-delay: -13s;
}

.cc-cream .bg-aurora span,
.cc-sand .bg-aurora span {
    opacity: 0.42;
}

.bg-petals span:nth-child(1) {
    width: clamp(220px, 26vw, 460px);
    height: clamp(220px, 26vw, 460px);
    top: -6%;
    left: -4%;
    border-radius: 0 0 100% 0;
    background: linear-gradient(140deg, rgba(237, 86, 39, 0.22), transparent 70%);
}

.bg-petals span:nth-child(2) {
    width: clamp(220px, 26vw, 460px);
    height: clamp(220px, 26vw, 460px);
    right: -6%;
    bottom: -10%;
    border-radius: 100% 0 0 0;
    background: linear-gradient(320deg, rgba(162, 4, 90, 0.26), transparent 70%);
}

.bg-halo span:nth-child(1) {
    width: clamp(320px, 40vw, 720px);
    height: clamp(320px, 40vw, 720px);
    top: -22%;
    right: -12%;
    border: 1px solid rgba(237, 86, 39, 0.3);
    border-radius: 50%;
}

.bg-halo span:nth-child(2) {
    width: clamp(220px, 28vw, 520px);
    height: clamp(220px, 28vw, 520px);
    top: -8%;
    right: -2%;
    border: 1px solid rgba(162, 4, 90, 0.34);
    border-radius: 50%;
}

.bg-halo span:nth-child(3) {
    width: clamp(260px, 32vw, 560px);
    height: clamp(260px, 32vw, 560px);
    bottom: -26%;
    left: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162, 4, 90, 0.5), transparent 68%);
    filter: blur(80px);
}

@keyframes cc-drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(4%, -5%, 0) scale(1.12);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 8px;
    border-radius: 999px;
    background: var(--cc-gradient);
}

.eyebrow-gradient {
    background: var(--cc-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead-text {
    font-size: clamp(1.06rem, 1.35vw, 1.1rem);
    line-height: 1.55;
}

.section-head {
    max-width: 1200px;
}

.btn-cc {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 34px;
    border: 0;
    border-radius: 999px;
    background: var(--cc-gradient);
    background-size: 200% 100%;
    color: #fff;
    font-family: var(--cc-body);
    font-size: 0.95rem;
    font-weight: 600;
    overflow: hidden;
    transition: background-position 0.6s ease, transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 20px 36px -18px rgba(162, 4, 90, 0.95);
}

.btn-cc:hover,
.btn-cc:focus {
    background-position: 100% 0;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 26px 44px -18px rgba(237, 86, 39, 0.9);
}

.btn-cc i {
    transition: transform 0.35s ease;
}

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

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    border: 0;
    border-radius: 999px;
    background-color: #fff;
    color: var(--cc-magenta);
    font-family: var(--cc-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
    box-shadow: 0 20px 36px -20px rgba(12, 4, 16, 0.6);
}

.btn-light:hover {
    transform: translateY(-3px);
    color: var(--cc-orange);
}

.btn-light i {
    transition: transform 0.35s ease;
}

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

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 999px;
    border: 1px solid currentColor;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

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

.cc-ink .btn-ghost:hover,
.cc-ink-soft .btn-ghost:hover,
.cc-plum .btn-ghost:hover,
.cc-berry .btn-ghost:hover,
.page-hero .btn-ghost:hover {
    background-color: var(--cc-cream);
    color: var(--cc-ink);
}

.cc-cream .btn-ghost:hover,
.cc-sand .btn-ghost:hover {
    background-color: var(--cc-ink);
    color: var(--cc-cream);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
}

.link-arrow span {
    background: var(--cc-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.link-arrow i {
    font-size: 0.8rem;
    color: var(--cc-orange);
    transition: transform 0.35s ease;
}

.link-arrow:hover i {
    transform: translateX(6px);
}

.img-ph {
    position: relative;
    overflow: hidden;
    background-color: #9c94a1;
    background-image: linear-gradient(135deg, #a79eab 0%, #8d8494 100%);
}

.img-ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-ph-ratio {
    aspect-ratio: 4 / 3;
}

.img-ph-tall {
    aspect-ratio: 3 / 4;
}

.media-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 22px 0;
    transition: padding 0.4s ease;
}

.site-header.is-stuck {
    padding: 12px 0;
    background-color: #21162d45;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-bottom: 1px solid var(--cc-line-dark);
}

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

.brand {
    position: relative;
    z-index: 2;
}

.brand img {
    height: 64px;
    width: auto;
    transition: height 0.4s ease;
}

.site-header.is-stuck .brand img {
    height: 52px;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border-radius: 999px;
    border: 1px solid rgba(246, 240, 234, 0.16);
    background-color: rgba(21, 10, 25, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background-color 0.4s ease;
}

.site-header.is-stuck .header-tools {
    background-color: rgba(21, 10, 25, 0.85);
}

.lang-switch {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 0;
    background-color: transparent;
    color: var(--cc-text-dark);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lang-toggle:hover {
    background-color: rgba(246, 240, 234, 0.1);
}

.lang-toggle i {
    font-size: 0.6rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.lang-switch.is-open .lang-toggle i {
    transform: rotate(180deg);
}

.lang-flag {
    display: block;
    width: 30px;
    height: 21px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(246, 240, 234, 0.3);
    flex-shrink: 0;
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid var(--cc-line-dark);
    background-color: rgba(26, 12, 30, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--cc-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

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

.lang-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
}

.lang-menu a:hover,
.lang-menu a.is-active {
    background-color: rgba(246, 240, 234, 0.12);
}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 0;
    background: var(--cc-gradient);
    background-size: 200% 100%;
    color: #fff;
    font-family: var(--cc-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-position 0.6s ease;
}

.menu-trigger:hover {
    background-position: 100% 0;
}

.menu-trigger-bars {
    position: relative;
    display: block;
    width: 18px;
    height: 12px;
}

.menu-trigger-bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1), width 0.4s ease;
}

.menu-trigger-bars span:first-child {
    top: 1px;
}

.menu-trigger-bars span:last-child {
    bottom: 1px;
    width: 64%;
}

.menu-trigger:hover .menu-trigger-bars span:last-child {
    width: 100%;
}

body.nav-open .menu-trigger-bars span:first-child {
    transform: translateY(4px) rotate(45deg);
}

body.nav-open .menu-trigger-bars span:last-child {
    width: 100%;
    transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    height: 100vh;
    height: 100dvh;
    background-color: #120714;
    clip-path: circle(0% at calc(100% - 92px) 52px);
    transition: clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}

body.nav-open .nav-overlay {
    clip-path: circle(150% at calc(100% - 92px) 52px);
}

.nav-overlay-shapes span {
    position: absolute;
    border-radius: 999px;
}

.nav-overlay-shapes span:nth-child(1) {
    width: 60vw;
    height: 32vw;
    top: -16%;
    left: -12%;
    border: clamp(30px, 4vw, 64px) solid rgba(237, 86, 39, 0.09);
    transform: rotate(-18deg);
}

.nav-overlay-shapes span:nth-child(2) {
    width: 42vw;
    height: 42vw;
    bottom: -26%;
    right: -10%;
    background: radial-gradient(circle, rgba(162, 4, 90, 0.55), transparent 66%);
    filter: blur(100px);
}

.nav-overlay-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    max-width: 1520px;
    padding: calc(var(--cc-header-h) + 30px) 26px 40px;
    margin: 0 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.nav-overlay-inner > * {
    flex-shrink: 0;
}

.nav-overlay-inner nav {
    margin-top: auto;
    margin-bottom: auto;
}

.nav-primary li {
    border-top: 1px solid rgba(246, 240, 234, 0.1);
}

.nav-primary li:last-child {
    border-bottom: 1px solid rgba(246, 240, 234, 0.1);
}

.nav-primary > ul > li > a,
.nav-primary .nav-row > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(12px, 1.6vw, 22px) clamp(16px, 3vw, 46px);
    font-family: var(--cc-display);
    font-size: clamp(2rem, 5.4vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    color: var(--cc-text-dark);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, color 0.4s ease, padding-left 0.4s ease;
    transition-delay: calc(0.15s + var(--i) * 70ms);
    overflow: hidden;
}

body.nav-open .nav-primary > ul > li > a,
body.nav-open .nav-primary .nav-row > a {
    opacity: 1;
    transform: translateY(0);
}

.nav-primary > ul > li > a::before,
.nav-primary .nav-row > a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cc-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: -1;
}

.nav-primary > ul > li > a:hover,
.nav-primary > ul > li > a.is-current,
.nav-primary .nav-row > a:hover,
.nav-primary .nav-row > a.is-current {
    color: #fff;
    padding-left: clamp(26px, 4vw, 66px);
}

.nav-primary > ul > li > a:hover::before,
.nav-primary > ul > li > a.is-current::before {
    transform: scaleX(1);
}

.nav-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.nav-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cc-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 0;
}

.nav-row:hover::before,
body.page-expertise .nav-row::before {
    transform: scaleX(1);
}

.nav-row a {
    flex: 1 1 auto;
    min-width: 0;
}

.nav-row a::before {
    display: none;
}

.nav-row:hover a,
body.page-expertise .nav-row a {
    color: #fff;
    padding-left: clamp(26px, 4vw, 66px);
}

.nav-sub-toggle {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-left: auto;
    margin-right: clamp(16px, 3vw, 46px);
    border: 0;
    border-radius: 0;
    background-color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, border-color 0.3s ease, background-color 0.3s ease;
    transition-delay: calc(0.15s + var(--i) * 70ms);
}

body.nav-open .nav-sub-toggle {
    opacity: 1;
    transform: translateY(0);
}

.nav-sub-toggle:hover span {
    background-color: var(--cc-orange);
}

.nav-sub-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--cc-magenta);
    transform: translate(-50%, -50%);
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1), background-color 0.3s ease;
}

.nav-sub-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.nav-sub-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
}

.nav-row a span {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 447px){
    .nav-row a span {
        line-height: 36px;
    }
}

.nav-sub {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-sub.is-open {
    grid-template-rows: 1fr;
}

.nav-sub-inner {
    overflow: hidden;
}

.nav-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 12px clamp(16px, 3vw, 46px) 24px;
    margin-top: 0;
}

.nav-services a {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 0;
    border: 1px solid transparent;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(18px);
    transition: transform 0.6s ease, opacity 0.6s ease, color 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
    transition-delay: calc(0.4s + var(--i) * 50ms);
    justify-content: center;
}

@media screen and (min-width: 1299px) {
    .nav-services a {
        min-width: 240px;
    }
}

@media screen and (min-width: 1499px) {
    .nav-services a {
        min-width: 255px;
    }
}

@media (max-width: 1400px) {
    .nav-services {
        flex-direction: column;
    }

    .nav-services a {
        width: 100%;
    }
}

.nav-services a:nth-child(1) {
    background: linear-gradient(160deg, #ed5627, #c02f3c);
}

.nav-services a:nth-child(2) {
    background: linear-gradient(160deg, #ce343c, #8c0a53);
}

.nav-services a:nth-child(3) {
    background: linear-gradient(160deg, #a2045a, #55063f);
}

.nav-services a:nth-child(4) {
    background: linear-gradient(160deg, #6b0f47, #3a1230);
}

.nav-services a:nth-child(5) {
    background: linear-gradient(160deg, #f6f0ea, #e3d2c4);
    color: var(--cc-text-light);
}

.nav-services a i {
    font-size: 0.48rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.nav-services a:nth-child(5) i {
    color: var(--cc-magenta);
}

.nav-services a {
    line-height: 1.2;
    text-align: center;
}

body.nav-open .nav-services a {
    opacity: 1;
    transform: translateY(0);
}

body.page-smm .nav-services a:not(.is-current),
body.page-consultancy .nav-services a:not(.is-current),
body.page-infrastructure .nav-services a:not(.is-current),
body.page-configuration .nav-services a:not(.is-current),
body.page-callcentre .nav-services a:not(.is-current) {
    background: none;
    border-color: rgba(246, 240, 234, 0.18);
    color: var(--cc-text-dark-muted);
}

body.page-smm .nav-services a:not(.is-current) i,
body.page-consultancy .nav-services a:not(.is-current) i,
body.page-infrastructure .nav-services a:not(.is-current) i,
body.page-configuration .nav-services a:not(.is-current) i,
body.page-callcentre .nav-services a:not(.is-current) i {
    color: rgba(246, 240, 234, 0.35);
}

.page-hero {
    position: relative;
    background-image:
        radial-gradient(60% 80% at 78% 18%, rgba(162, 4, 90, 0.28), transparent 70%),
        radial-gradient(50% 70% at 8% 92%, rgba(237, 86, 39, 0.18), transparent 72%);
    padding: calc(var(--cc-header-h) + 70px) 0 clamp(80px, 9vw, 130px);
    background-color: var(--cc-ink);
    overflow: hidden;
    isolation: isolate;
}

.page-hero > .cc-container {
    position: relative;
    z-index: 3;
}

.page-hero-copy {
    max-width: 920px;
}

.page-hero-copy h1 {
    margin-bottom: 24px;
}

.page-hero-copy p {
    color: var(--cc-text-dark-muted);
}

.page-hero-visual {
    position: relative;
    min-height: 320px;
}

.page-hero-visual span {
    position: absolute;
    border-radius: 999px;
}

.page-hero-visual span:nth-child(1) {
    inset: 4% 16% 26% 2%;
    background: var(--cc-gradient);
    box-shadow: 0 40px 90px -40px rgba(162, 4, 90, 0.95);
}

.page-hero-visual span:nth-child(2) {
    inset: 28% -4% 2% 30%;
    border: clamp(18px, 2.4vw, 34px) solid rgba(246, 240, 234, 0.1);
}

.page-hero-visual span:nth-child(3) {
    width: 16px;
    height: 16px;
    top: 6%;
    right: 18%;
    background-color: var(--cc-cream);
    box-shadow: 0 0 24px rgba(246, 240, 234, 0.7);
    animation: cc-bob 7s ease-in-out infinite;
}

@keyframes cc-bob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-26px);
    }
}

.check-list li {
    position: relative;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    font-size: 1rem;
}

.cc-cream .check-list li,
.cc-sand .check-list li {
    border-bottom-color: var(--cc-line-light);
}

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

.check-list i {
    margin-top: 7px;
    font-size: 0.72rem;
    background: var(--cc-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cc-accordion .accordion-item {
    border: 0;
    border-radius: 20px;
    background-color: transparent;
    margin-bottom: 14px;
    overflow: hidden;
}

.cc-accordion .accordion-button {
    font-family: var(--cc-display);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    background: linear-gradient(120deg, rgba(237, 86, 39, 0.55), rgba(162, 4, 90, 0.55));
    padding: 22px 26px;
    box-shadow: none;
    transition: background 0.4s ease;
}

.cc-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background: var(--cc-gradient);
}

.cc-accordion .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
    filter: invert(1) grayscale(1) brightness(2);
}

.cc-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.cc-accordion .accordion-body {
    padding: 26px;
    background-color: rgba(21, 10, 25, 0.06);
    color: var(--cc-text-light-muted);
}

.cc-accordion-dark .accordion-body {
    background-color: rgba(19, 4, 26);
    color: var(--cc-text-dark-muted);
}

.swiper {
    overflow: visible;
}

.swiper-slide {
    height: auto;
}

.cc-swiper-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-swiper-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.cc-swiper-btn:hover {
    background: var(--cc-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.cc-swiper-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}

.cc-progress {
    position: relative;
    height: 4px;
    width: 100%;
    background-color: rgba(246, 240, 234, 0.16);
    border-radius: 4px;
    overflow: hidden;
}

.cc-cream .cc-progress,
.cc-sand .cc-progress {
    background-color: rgba(21, 10, 25, 0.12);
}

.cc-progress .swiper-pagination-progressbar-fill {
    background: var(--cc-gradient);
}

.cta-band {
    position: relative;
    padding: clamp(60px, 7vw, 100px) 0;
    background: var(--cc-gradient);
    color: #fff;
    overflow: hidden;
}

.cta-band-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-band p,
.cta-band h2 {
    color: #fff;
}

.cta-mail {
    font-family: var(--cc-display);
    font-size: clamp(1.3rem, 3vw, 2.4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 4px;
}

.cta-mail:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.site-footer {
    position: relative;
    background-color: #100613;
    color: var(--cc-text-dark);
    padding: clamp(70px, 7vw, 104px) 0 36px;
    overflow: hidden;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    position: relative;
    z-index: 3;
}

.footer-brand {
    flex: 1 1 240px;
    margin-top: -26px;
}

.footer-brand img {
    height: 76px;
    width: auto;
    margin-bottom: 26px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-heading {
    font-family: var(--cc-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-list li + li {
    margin-top: 11px;
}

.footer-list a,
.footer-info a {
    font-size: 0.95rem;
    color: var(--cc-text-dark-muted);
}

.footer-list a:hover,
.footer-info a:hover {
    color: var(--cc-orange);
}

.footer-list a.is-current {
    background: var(--cc-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-info li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--cc-text-dark-muted);
    line-height: 1.6;
}

.footer-info li + li {
    margin-top: 14px;
}

.footer-info i {
    margin-top: 6px;
    font-size: 0.82rem;
    background: var(--cc-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-bottom {
    position: relative;
    z-index: 3;
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid var(--cc-line-dark);
    text-align: center;
    font-size: 0.88rem;
    color: rgba(246, 236, 230, 0.55);
}

.to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: var(--cc-gradient);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    box-shadow: 0 18px 32px -16px rgba(162, 4, 90, 0.9);
    display: none !important;
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    :root {
        --cc-header-h: 80px;
    }

    .brand img {
        height: 46px;
    }

    .page-hero-visual {
        display: none;
    }

    .edge-slant-flip {
        clip-path: none;
        margin-top: 0;
        padding-top: clamp(78px, 9vw, 140px);
    }

    .nav-overlay {
        clip-path: circle(0% at calc(100% - 70px) 46px);
    }

    body.nav-open .nav-overlay {
        clip-path: circle(160% at calc(100% - 70px) 46px);
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 1rem;
    }

    .cc-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .menu-trigger {
        padding: 11px 16px;
    }

    .menu-trigger-label {
        display: none;
    }

    .footer-brand img {
        height: 62px;
    }

    .nav-primary > ul > li > a,
    .nav-primary .nav-row > a {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .nav-services a {
        padding: 13px 22px;
        font-size: 0.88rem;
    }
}

@media (max-height: 800px) {
    .nav-overlay-inner {
        padding-top: calc(var(--cc-header-h) + 16px);
        padding-bottom: 28px;
    }

    .nav-primary > ul > li > a,
    .nav-primary .nav-row > a {
        font-size: clamp(1.4rem, 5vh, 2rem);
        line-height: 36px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nav-services {
        margin-top: 20px;
    }

    .nav-services a {
        padding: 9px 16px;
        font-size: 0.82rem;
    }
}

@media (min-width: 1800px) {
    .cc-container {
        max-width: 1520px;
    }
}

@media screen and (max-width: 1199px){
    .footer-brand{
        flex: 1 1 100%;
        margin-top: 0;
    }
}

@media screen and (max-width: 899px){
    .footer-brand,
    .footer-col{
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 380px){
    .cta-mail{
        font-size: 18px;
    }
}

@media screen and (max-width: 320px){
    .cta-mail{
        font-size: 16px;
    }
}


.nowrap{
    white-space: nowrap;
}


/* Accessibility */

#mdp-readabler-popup {
    top: auto !important;
    bottom: 15px !important;
    right: 15px !important;
    left: auto !important;
    height: auto !important;
    max-height: calc(100vh - 130px) !important;
}

#mdp-readabler-popup #mdp-readabler-popup-main{
    max-height: 45dvh;
}

@media screen and (max-height: 620px){
    #mdp-readabler-popup #mdp-readabler-popup-main{
        max-height: 20dvh !important;
    }

    #mdp-readabler-popup{
        max-height: 96dvh !important;
    }

    #mdp-readabler-popup-footer .mdp-readabler-statement,
    #mdp-readabler-popup #mdp-readabler-popup-footer button{
        font-size: 12px !important;
    }

    #mdp-readabler-popup #mdp-readabler-popup-footer button:nth-child(2){
        margin-top: 0 !important;
    }

    #mdp-readabler-popup #mdp-readabler-popup-footer{
        padding: 12px !important;
        padding-bottom: 16px !important;
    }
}

@media screen and (min-height: 621px) and (max-height: 880px){
    #mdp-readabler-popup #mdp-readabler-popup-main{
        max-height: 35dvh !important;
    }

    #mdp-readabler-popup{
        max-height: 90dvh !important;
    }
}

#mdp-readabler-popup-box[aria-hidden=false]{
    position: relative;
    z-index: 9999;
}

#mdp-readabler-popup-footer .mdp-readabler-statement{
    display: none !important;
}

body:not(#_):not(#_) > .cookie-popup-container {
    filter: none !important;
}