/* ===== Fonts ===== */

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../assets/fonts/HelveticaNeue-Light.woff2') format('woff2'),
       url('../assets/fonts/HelveticaNeue-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../assets/fonts/HelveticaNeue-Bold.woff2') format('woff2'),
       url('../assets/fonts/HelveticaNeue-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Base / reset
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000;
    background-color: #000;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

h1, h2, h3, h4, h5, h6,
p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

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

button {
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
}

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

/* ==========================================================================
   Header (absolutely positioned over the hero)
   ========================================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 30px 33px 0;
}

.header__right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header__burger {
    justify-self: start;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 6px;
    background-color: #fff;
    transition: background-color 0.25s ease;
}

.header__burger:hover {
    background-color: #ece7df;
}

.header__nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 37px;
}

.header__link {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.header__link:hover {
    opacity: 0.65;
}

/* Services dropdown (opens on hover) */
.header__services {
    position: relative;
    display: flex;
}

.header__services-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

.header__services-chevron {
    width: 8px;
    height: auto;
    transition: transform 0.3s ease;
}

.header__services:hover .header__services-chevron,
.header__services.is-open .header__services-chevron {
    transform: rotate(180deg);
}

/* Submenu — the top padding is a transparent bridge so the panel stays open
   while the cursor travels from the trigger to the list */
.header__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 20;
    padding-top: 14px;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.header__services:hover .header__submenu,
.header__services.is-open .header__submenu {
    opacity: 1;
    visibility: visible;
}

.header__submenu-inner {
    display: flex;
    flex-direction: column;
    min-width: 220px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(28, 21, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(-6px);
    transition: transform 0.25s ease;
}

.header__services:hover .header__submenu-inner,
.header__services.is-open .header__submenu-inner {
    transform: translateY(0);
}

.header__submenu-link {
    padding: 11px 14px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header__submenu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.header__request {
    justify-self: end;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 50px;
    padding: 13px 17px 13px 25px;
    border-radius: 5px;
    background-color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #000;
    white-space: nowrap;
    transition: background-color 0.25s ease;
}

.header__request:hover {
    background-color: #ece7df;
}

.header__request img {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Fullscreen menu (burger) — slides down from the top
   ========================================================================== */
.menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #1a1a1a;
    background-image: url("../assets/img/menu-bg.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1),
                visibility 0s linear 0.75s;
}

.menu.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1),
                visibility 0s;
}

.menu__close {
    position: absolute;
    top: 40px;
    right: 57px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu__close:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}

.menu__close img {
    width: 23px;
    height: 23px;
}

.menu__inner {
    display: flex;
    gap: 495px;
    min-height: 100%;
    padding: 237px 0 10px 237px;
}

/* Left column */
.menu__left {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.menu__logo {
    width: 182px;
    height: auto;
}

.menu__contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu__label {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
}

.menu__contact-link {
    font-weight: 300;
    font-size: 18px;
    line-height: 78%;
    color: #fff;
    transition: color 0.25s ease;
}

.menu__contact-link:hover {
    color: #fff;
}

.menu__socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Right column — main nav */
.menu__nav {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.menu__nav-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
    transition: opacity 0.25s ease;
}

.menu__nav-item:hover {
    opacity: 0.65;
}

.menu__num {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.4);
}

.menu__nav-text {
    font-weight: 300;
    font-size: 75px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* Services accordion inside the menu */
.menu__nav-group {
    display: flex;
    flex-direction: column;
}

.menu__nav-toggle {
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    text-align: left;
    align-items: flex-start;
    cursor: pointer;
}

/* Animate the real content height via grid rows (0fr → 1fr) so open and close
   are perfectly smooth and symmetric — unlike max-height, which races ahead of
   the content and feels abrupt/uneven. */
.menu__submenu {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.5s cubic-bezier(0.76, 0, 0.24, 1),
                opacity 0.4s ease,
                margin-top 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu__nav-group.is-open .menu__submenu {
    grid-template-rows: 1fr;
    margin-top: 26px;
    opacity: 1;
}

.menu__submenu-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 0;
    overflow: hidden;
}

.menu__submenu-link {
    font-weight: 400;
    font-size: 25px;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: #fff;
    transition: all 0.25s ease;
}

.menu__submenu-link:hover {
    opacity: 0.65;
}

/* ==========================================================================
   Popup (modal) — centered, scrolls on short screens
   ========================================================================== */
.popup {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    padding: 20px;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.popup.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0s;
}

.popup__window {
    position: relative;
    margin: auto; /* centers both axes and stays scroll-safe when taller than the screen */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1037px;
    padding: 146px 40px;
    border-radius: 0;
    overflow: hidden;
    background-color: #1a1a1a;
    background-image: url("../assets/img/popup-bg.png");
    background-size: cover;
    background-position: center;
    overflow: scroll;
    color: #fff;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.4s ease;
}

.popup.is-open .popup__window {
    transform: translateY(0) scale(1);
}

.popup__close {
    position: absolute;
    top: 33px;
    right: 33px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.popup__close:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}

.popup__close img {
    width: 22px;
    height: 22px;
}

.popup__title {
    margin-bottom: 40px;
    text-align: center;
    font-weight: 300;
    font-size: 55px;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

.popup__form,
.popup #gform_wrapper_1 form {
    display: flex;
    flex-direction: column;
    width: 508px;
    max-width: 100%;
    align-items: center;
}

.popup__fields,
.popup #gform_wrapper_1 .gform_fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.popup__input,
.popup #gform_wrapper_1 input {
    width: 100%;
    height: 53px !important;
    padding: 0 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 85px !important;
    background-color: transparent !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 114% !important;
    letter-spacing: -0.03em !important;
    color: #fff !important;
    transition: border-color 0.25s ease !important;
}

.popup__input::placeholder,
.popup .gform_wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
}

#gform_wrapper_1 .gform-body {
    margin-bottom: 20px;
}

#gform_submit_button_1 {
    border-radius: 90px;
    background: #ff5b0c;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #fff;
    transition: all 0.25s ease;
    padding: 18px 35px;
}

.popup__input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.popup__submit {
    border-radius: 90px;
    background: #ff5b0c;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #fff;
    transition: all 0.25s ease;
    padding: 18px 35px;
}

.popup__submit:hover, #gform_submit_button_1:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: var(--fixed-vh, 100vh);
    padding: 0 33px 55px;
    overflow: hidden;
    color: #fff;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0) 38%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Blurred, tilted glass band crossing the hero */
.hero__blur {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 82%;
    width: 437px;
    height: 170%;
    transform: translate(-50%, -50%) rotate(28deg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.07) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

/* Centered logo */
.hero__logo {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}

/* Left social widget, vertically centered */
.hero__socials {
    position: absolute;
    left: 33px;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 37px;
    padding: 42px 27px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
}

.hero__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.hero__social:hover {
    opacity: 0.65;
}

/* Bottom row: intro text (left) + scroll button (right) */
.hero__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.hero__title {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #fff;
}

.hero__text {
    max-width: 430px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.7);
}

.hero__scroll {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero__scroll:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* ==========================================================================
   Approach
   ========================================================================== */
.approach {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1000px;
    height: var(--fixed-vh, 100vh);
    padding: 43px 43px 85px;
    background-color: #000;
    overflow: hidden;
}

/* Centered background grid image */
.approach::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../assets/img/approach-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.approach__title {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    font-weight: 300;
    font-size: 55px;
    line-height: 105%;
    letter-spacing: -0.04em;
    text-align: center;
    background: linear-gradient(93.89deg, #fff 51.25%, #999 80.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

/* Tall container pinned to the right: link (bottom) + vertical line/tip */
.approach__discover {
    position: absolute;
    z-index: 1;
    top: 43px;
    right: 43px;
    bottom: 80px;
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.approach__link {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    line-height: 100%;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.approach__link span {
    padding-top: 6px;
}

.approach__link:hover {
    opacity: 0.65;
}

.approach__link img {
    width: 25px;
    height: 25px;
}

/* Thin line (top, almost to the top edge) stacked over the tip (bottom) */
.approach__line-wrapper {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.approach__line {
    flex: 1;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.approach__bar {
    flex-shrink: 0;
    width: 6px;
    height: 63px;
    background-color: #fff;
}

/* Custom AOS: the line grows downward from the very top */
[data-aos="approach-line"] {
    transform: scaleY(0);
    transform-origin: top;
    transition-property: transform;
}

[data-aos="approach-line"].aos-animate {
    transform: scaleY(1);
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 0 4px;
    background-color: #000;
}

.service-card {
    position: relative;
    flex: 1;
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: var(--card-img);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

/* --card-img is set inline per card from the "Картинка" field of the service
   repeater, so the section is not limited to the four cards of the mockup. */

/* Grayscale copy on top of the colour image; opacity-crossfades on hover
   (opacity is GPU-composited, so it's smoother than animating `filter`) */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--card-img);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: 1;
    transition: opacity 0.6s ease;
    will-change: opacity;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.service-card:hover::before {
    opacity: 0;
}

.service-card__title {
    position: relative;
    z-index: 1;
    padding: 0 16px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* Discover more — slides up from the bottom on hover */
.service-card__discover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.service-card__discover span {
    padding-top: 6px;
}

.service-card:hover .service-card__discover {
    opacity: 1;
    transform: translateY(0);
}

.service-card__discover img {
    width: 24px;
    height: 24px;
    rotate: -90deg;
}

/* ==========================================================================
   About us
   ========================================================================== */
.about {
    position: relative;
    padding: 320px 72px 60px;
    background-color: #000;
    text-align: center;
    overflow: hidden;
}

/* Background glow */

.about > * {
    position: relative;
    z-index: 1;
}

.about__title {
    margin-bottom: 80px;
    font-weight: 300;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: uppercase;
}

.about__profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.about__meta {
    font-weight: 400;
    font-size: 16px;
    line-height: 156%;
    color: #fff;
    white-space: nowrap;
}

.about__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__photo {
    margin-bottom: 37px;
}

.about__text {
    max-width: 543px;
    font-weight: 400;
    font-size: 16px;
    line-height: 169%;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 37px;
}

.about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 33px;
    border-radius: 750px;
    background-color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.03em;
    text-align: center;
    color: #000;
    transition:  0.25s ease;
}

.about__btn:hover {
    background-color: #ece7df;
}

.light__btn {
    font-size: 15px;
    padding: 18px 16px 18px 32px;
    gap: 60px;
}

/* Feature row pinned to the bottom */
.about__features {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 340px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about__feature-line {
    flex-shrink: 0;
    width: 2px;
    height: 49px;
}

.about__feature:nth-child(1) .about__feature-line {
    background-color: #ffcd76;
}
.about__feature:nth-child(2) .about__feature-line {
    background-color: #ea8a36;
}
.about__feature:nth-child(3) .about__feature-line {
    background-color: #ff8c8c;
}
.about__feature:nth-child(4) .about__feature-line {
    background-color: #ca89ff;
}

.about__feature-text {
    text-align: left;
    font-weight: 500;
    font-size: 22px;
    line-height: 105%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* ==========================================================================
   Create
   ========================================================================== */
.create {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 370px;
    min-height: 100vh;
    min-height: var(--fixed-vh, 100vh);
    padding: 520px 0px 60px;
    overflow: hidden;
    color: #fff;
}

.create__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.create__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.create::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Top block: paragraph + buttons */
.create__text {
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 45px;
    line-height: 109%;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 1110px;
}

.create__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.create__btn {
    display: inline-flex;
    align-items: center;
    gap: 88px;
    line-height: 100%;
    padding: 18px 16px 18px 32px;
    border-radius: 5px;
    outline: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.02);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.04em;
    color: #fff;
    white-space: nowrap;
    transition: background-color 0.25s ease;
}

.create__btn:hover {
    background-color: rgba(20, 20, 20, 0.7);
}

.create__btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Bottom stats row */
.create__stats {
    display: flex;
    justify-content: center;
    gap: 290px;
}

.create__stat {
    display: flex;
    align-items: center;
    gap: 30px;
}

.create__num {
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
}

.create__label {
    max-width: 150px;
    font-weight: 500;
    font-size: 20px;
    line-height: 115%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* ==========================================================================
   How do we work
   ========================================================================== */
.how {
    background-color: #000;
    padding: 150px 48px 110px;
    color: #fff;
}

.how__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 66px;
}

.how__title {
    padding-right: 10px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 160px;
    line-height: 106%;
    letter-spacing: -0.05em;
    background: linear-gradient(95.49deg, #ddd 52.65%, #777 71.98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how__subtitle {
    padding-top: 32px;
    flex-shrink: 0;
    max-width: 255px;
    font-weight: 500;
    font-size: 26px;
    line-height: 119%;
    letter-spacing: -0.03em;
    text-align: right;
    color: #ddd;
}

.how__list {
    display: flex;
    flex-direction: column;
}

.how__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 118px 0;
    cursor: none;
}

.how__left {
    display: flex;
    align-items: center;
    gap: 290px;
}

.how__num {
    font-weight: 400;
    font-size: 20px;
    line-height: 220%;
    color: #818181;
}

.how__name {
    font-weight: 300;
    font-size: 50px;
    line-height: 100%;
    color: #ddd;
    transition: opacity 0.25s ease;
}

.how__item:hover .how__name {
    opacity: 0.65;
}

.how__text {
    max-width: 322px;
    font-weight: 400;
    font-size: 18px;
    line-height: 139%;
    color: #8e8e8e;
    min-width: 322px;
}

/* Custom circular "Learn more" cursor */
.how-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 244px;
    height: 244px;
    margin: -122px 0 0 -122px;
    pointer-events: none;
    will-change: transform;
}

.how-cursor__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #111;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.how-cursor.is-active .how-cursor__inner {
    opacity: 1;
    transform: scale(1);
}

.how-cursor__inner img {
    width: 26px;
    height: 26px;
}

.how-cursor__inner span {
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
}

/* ==========================================================================
   Portfolio (slider)
   ========================================================================== */
.portfolio {
    position: relative;
    height: 100%;
    min-height: 1184px;
    overflow: hidden;
    background-color: #000;
    color: #fff;
}

.portfolio__swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
}

.portfolio__slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

/* Subtle darkening at the top and bottom for readable text */
.portfolio__slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.portfolio__slide::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    pointer-events: none;
}

/* Bottom caption (per slide) */
.portfolio__caption {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 50px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.portfolio__info {
    display: flex;
    align-items: center;
    gap: 60px;
}

.portfolio__name {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 27px;
    line-height: 111%;
    color: #fff;
}

.portfolio__desc {
    max-width: 300px;
    font-weight: 500;
    font-size: 20px;
    line-height: 125%;
    color: #fff;
}

/* Top-left label */
.portfolio__label {
    position: absolute;
    top: 80px;
    left: 57px;
    z-index: 3;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 90px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #f7f7f7;
}

/* Prev / next arrows, vertically centered */
.portfolio__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* Active (enabled) state: white with a black icon */
    background-color: #fff;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.portfolio__arrow img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

.portfolio__prev {
    left: 55px;
}

.portfolio__prev img {
    transform: scaleX(-1);
}

.portfolio__next {
    right: 55px;
}

.portfolio__arrow:not(.swiper-button-disabled):hover {
    background-color: #ece7df;
}

/* Disabled state: frosted glass with a white icon (can't scroll that way) */
.portfolio__arrow.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: default;
}

.portfolio__arrow.swiper-button-disabled img {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   Reviews (slider)
   ========================================================================== */
.reviews {
    padding: 160px 0;
    background-color: #000;
    overflow: hidden;
}

.reviews__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 25px 0 35px;
    margin-bottom: 40px;
}

.reviews__title {
    font-weight: 400;
    font-size: 40px;
    line-height: 63%;
    color: #ddd;
}

.reviews__nav {
    display: flex;
    gap: 7px;
}

.reviews__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    /* Active (enabled) state: light fill with a dark icon */
    background-color: #ddd;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.reviews__arrow img {
    width: 12px;
    height: 12px;
    transition: filter 0.25s ease;
}

.reviews__prev img {
    transform: scaleX(-1);
}

.reviews__arrow:not(.swiper-button-disabled):hover {
    opacity: 0.9;
}

/* Disabled state: outlined with a white icon (can't scroll that way) */
.reviews__arrow.swiper-button-disabled {
    background-color: transparent;
    border-color: #9398a6;
    cursor: default;
}

.reviews__arrow.swiper-button-disabled img {
    filter: brightness(0) invert(1);
}

/* Slider — full-bleed, not clipped by the container padding */
.reviews__swiper {
    overflow: visible;
}

.reviews__swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews__swiper .swiper-slide {
    width: 557px;
    height: auto;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 432px;
    height: 100%;
    padding: 46px 30px 60px 27px;
    border-radius: 8px;
    background: rgba(19, 19, 19, 0.7);
}

.review__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 19px;
    border-bottom: 1px solid rgba(52, 52, 52, 0.2);
    margin-bottom: 50px;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review__avatar {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
}

.review__name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.review__name {
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    color: #cdcdcd;
}

.review__verify {
    width: 18px;
    height: 18px;
}

.review__service {
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: #5f5f5f;
}

.review__stars {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.review__stars img {
    width: 16px;
    height: 16px;
}

.review__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.review__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    color: rgba(181, 183, 189, 0.6);
}

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.faq {
    padding: 0px 48px 120px;
    background-color: #000;
    color: #fff;
}

.faq__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.faq__title {
    padding-top: 15px;
    font-weight: 300;
    font-size: 60px;
    line-height: 105%;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, #fff 18%, #646464 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq__subtitle {
    max-width: 290px;
    text-align: right;
    font-weight: 400;
    font-size: 25px;
    line-height: 116%;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, #fff 18%, #646464 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq__list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

/* Question row */
.faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    padding: 58px 0;
    text-align: left;
    cursor: pointer;
    transition: padding-bottom 0.4s ease;
}

.faq__q {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}

.faq__arrow {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Smoothly collapsible answer */
.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq__answer-inner {
    overflow: hidden;
}

.faq__a {
    max-width: 600px;
    padding-top: 37px;
    padding-bottom: 48px;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.4);
}

/* Open state */
.faq__item.is-open .faq__trigger {
    padding-bottom: 0;
}

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

.faq__item.is-open .faq__arrow {
    transform: rotate(-90deg);
    opacity: 0.4;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
    padding: 0 13px;
    background-color: #000;
}

.contact__inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 50px 50px 375px;
    color: #fff;
}

.contact__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

/* Top bar */
.contact__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact__logo img {
    width: 80px;
    height: auto;
}

.contact__link {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 272%;
    letter-spacing: -0.03em;
    color: #fff;
    transition: opacity 0.25s ease;
}

.contact__link:hover {
    opacity: 0.65;
}

/* Heading + form */
.contact__main {
    position: relative;
    z-index: 2;
    margin-top: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__title {
    max-width: 960px;
    margin-bottom: 32px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 45px;
    line-height: 107%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
}

.contact__form,
.contact .gform_wrapper form {
    width: 466px; /* 224 + 18 + 224 */
    max-width: 100%;
}

.contact__fields,
.contact .gform_wrapper .gform_fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 15px;
}

.contact__input,
.contact__select-trigger,
.contact .gform_wrapper input {
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px !important;
    padding: 0 12px 0 22px !important;
    border-radius: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.02) !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    color: #fff !important;
    transition: border-color 0.25s ease;
}

.contact__input::placeholder,
.contact .gform_wrapper input::placeholder {
    color: #fff !important;
}

.contact__input:focus,
.contact__select-trigger:focus-visible,
.contact .gform_wrapper input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Custom dropdown */
.contact__select {
    position: relative;
}

.contact__select-trigger {
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
}

.contact__select-value {
    color: #fff;
    transition: color 0.2s ease;
}

.contact__select.is-filled .contact__select-value {
    color: #fff;
}

.contact__select-chevron {
    flex-shrink: 0;
    width: 7px;
    height: auto;
    transition: transform 0.3s ease;
}

.contact__select.is-open .contact__select-chevron {
    transform: rotate(180deg);
}

.contact__select-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 10;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(28, 21, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.contact__select.is-open .contact__select-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact__select-option {
    padding: 11px 14px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact__select-option:hover,
.contact__select-option.is-selected {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Submit — full width */
.contact__submit,
.contact .gform_wrapper .contact__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    padding: 18px 28px 18px 32px;
    border-radius: 6px;
    background-color: #fff;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    color: #000;
    transition: background-color 0.25s ease;
}

.contact__submit:hover {
    background-color: #ece7df;
}

.contact__submit img {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#footer-map .leaflet-tile-pane {
  filter: grayscale(1) invert(1) brightness(0.45) contrast(1.15);
}

.footer {
    position: relative;
    z-index: 2;
    margin: -40px 13px 13px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #0e0e0e;
    color: #fff;
}

.footer__content {
    padding: 130px 50px 80px;
}

/* Top: nav links + back-to-top */
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 180px;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 130px;
    flex-wrap: wrap;
}

.footer__links a,
.footer__links span {
    font-weight: 300;
    font-size: 65px;
    line-height: 115%;
    color: #ddd;
    transition: opacity 0.25s ease;
}

.footer__links a:hover {
    opacity: 0.6;
}

.footer__totop {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2b2b2b;
    transition: background-color 0.25s ease;
}

.footer__totop:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

.footer__totop--mobile {
    display: none;
}

.footer__totop img {
    width: 14px;
    height: 14px;
}

/* Middle: left column + right column */
.footer__mid {
    display: flex;
    flex-direction: column;
    gap: 116px;
}

/* Each row is split into left / right */
.footer__mid-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer__mid-row--bottom {
    align-items: center;
}

.footer__mid-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__mid-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 90px;
    font-weight: 400;
    font-size: 25px;
    line-height: 64%;
    color: #ddd;
    transition: opacity 0.25s ease;
}

.footer__contact-link:hover {
    opacity: 0.65;
}

.footer__arrow {
    width: 13px;
    height: auto;
}

.footer__dev {
    display: flex;
    align-items: end;
    gap: 20px;
}

.footer__dev-logo {
    width: 57px;
    height: auto;
}

.footer__dev-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    color: rgba(221, 221, 221, 0.5);
}

.footer__copy {
    display: flex;
    align-items: center;
    gap: 33px;
    font-weight: 400;
    font-size: 20px;
    color: #ddd;
}

.footer__policy {
    font-weight: 400;
    font-size: 16px;
    color: #acacac;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
    text-decoration-skip-ink: none;
    transition: opacity 0.25s ease;
}

.footer__policy:hover {
    opacity: 0.65;
}

.footer__contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.footer__contact-label {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: rgba(221, 221, 221, 0.35);
}

.footer__contact-label img {
    margin-bottom: 4px;
}

.footer__contact-value {
    font-weight: 300;
    font-size: 35px;
    line-height: 109%;
    text-align: right;
    color: rgba(221, 221, 221, 0.4);
    transition: color 0.25s ease;
}

.footer__contact-value:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer__social {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 300;
    font-size: 25px;
    line-height: 1;
    color: #ddd;
    transition: opacity 0.25s ease;
}

.footer__social:hover {
    opacity: 0.65;
}

/* Dark map */
.footer__map {
    width: 100%;
    min-height: 490px;
    border-radius: 15px;
    background-color: #1a1a1a;
}

.footer__map-pin svg {
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}

/* Leaflet tweaks */
.footer__map .leaflet-container {
    background-color: #1a1a1a;
}