/* ===== Mouse (ефект слідкування). START ===== */
.cursor-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 180px;
    height: auto;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;

    z-index: 999;
}
@media (max-width: 991px) {
    .cursor-img {
        display: none;
    }
}
/* ===== Mouse (ефект слідкування). END ===== */



/* ===== Header. START ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0px 0px 12px 12px;
    z-index: 100;
}
.header__container {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    max-height: 50px;
    width: 100%;
    max-width: 200px;
}
.header__logo img {
    max-height: 50px;
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
  
/* ===== Button ===== */
.btn {
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 20px;
} 
.btn--primary {
    background: var(--color-secondary);
    color: #fff;
}
  
/* ===== Burger ===== */
.burger {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
}
.burger span {
    height: 2px;
    width: 100%;
    background: var(--color-text);
}
  
/* ===== Side menu ===== */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    height: 100vh;
    background: var(--color-bg);
    transition: right 0.4s ease;
    z-index: 200;
}
.side-menu.active {
    right: 0;
}
.side-menu ul {
    list-style: none;
    padding: 0;
}
.side-menu li {
    margin-bottom: 24px;
} 
.side-menu a {
    font-family: var(--font-main);
    font-size: 20px;
    text-decoration: none;
    color: var(--color-text);
}


/* ===== Side menu. Structure ===== */
.side-menu__top {
    height: 72px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
  
/* ===== Language ===== */
.lang-switcher {
    display: flex;
    gap: 12px;
}
.lang-switcher a {
    font-family: var(--font-main);
    font-size: 14px;
    text-decoration: none;
    color: var(--color-text);
    opacity: 0.4;
    transition: opacity 0.3s;
}
.lang-switcher a.active {
    opacity: 1;
    font-weight: 600;
}
  
/* ===== Menu ===== */
.side-menu .menu {
    list-style: none;
    padding: 0;
    margin-top: 80px;
}
.side-menu .menu > li {
    margin-bottom: 28px;
} 
.menu a {
    font-family: var(--font-main);
    font-size: 20px;
    text-decoration: none;
    color: var(--color-text);
}

/* ===== Submenu ===== */
.menu-item-has-children > .sub-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 16px;
    transition: max-height 0.35s ease;
}
.menu-item-has-children.active > .sub-menu {
    max-height: 300px;
    margin-top: 16px;
}
.sub-menu li {
    margin-bottom: 16px;
}
.sub-menu a {
    font-family: var(--font-heading);
    font-size: 16px;
    opacity: 0.7;
}
.side-menu__inner {
    height: calc(100vh - 72px);
    padding: 32px 40px 40px;

    overflow-y: auto;
    overscroll-behavior: contain;
}
.side-menu__inner::-webkit-scrollbar {
    width: 4px;
}
.side-menu__inner::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* ===== Arrow ===== */
.arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border-right: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
    transform: rotate(45deg);
    transition: transform 0.3s ease;

    margin-left: 12px;
}
.menu-item-has-children.active .arrow {
    /* transform: rotate(-135deg); */
    transform: rotate(225deg);
}
.sub-menu .current-menu-item > a {
    color: var(--color-secondary);
    opacity: 1;
    font-weight: 600;
}
/* ===== Active menu item (WordPress) ===== */
.menu li.current-menu-item > a,
.menu li.current-menu-parent > a,
.menu li.current-menu-ancestor > a {
    color: var(--color-secondary);
    font-weight: 600;
    position: relative;
}


/* .menu-item-has-children > a::after {
    content: "▼";
    margin-left: 6px;
    font-size: 10px;
} */


/* ===== Overlay ===== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 150;
} 
.overlay.active {
    opacity: 1;
    pointer-events: auto;
}
  
/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 300;
}
.modal.active {
    opacity: 1;
    pointer-events: auto;
}
.modal__content {
    background: #fff;
    padding: 40px;
    width: 420px;
    border-radius: 16px;
    position: relative;
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}
.modal input,
.modal textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px;
}
.menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text);
}

/* Burger active state */
.burger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}
.burger span {
    transition: 0.3s ease;
}


/* ===== Header. END ===== */



/* ===== Головне меню. START ===== */
/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* background image */
.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../images/img/bg-overlay.png') center / cover no-repeat;
    z-index: 1;
}

/* gold gradient overlay */
.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(198,168,111,0.75) 0%,
        rgba(198,168,111,0.3) 40%,
        rgba(255, 255, 255, 0) 70%
    );
    z-index: 2;
}
.hero .container {
    position: relative;
    z-index: 3;
}

/* layout */
.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    gap: 40px;
}

/* text */
.hero__text h1 {
    font-family: var(--font-main);
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero__text h2 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 520px;
}

/* =========================
   SLIDER
========================= */
.hero__slider {
    position: relative;
    max-height: 800px;
    height: 100%;
    transform: rotate(-8deg);
    border-radius: 12px;
    overflow: hidden;
}
.hero-swiper {
    height: 100%;
}
.swiper-wrapper {
    align-items: stretch;
}
.hero-swiper .swiper-slide {
    height: auto;
}
.hero-swiper img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.hero-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}
  
@media (max-width: 991px) {
    .hero__slider {
      display: none;
    }
    .hero__content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 615px) {
    .header {
        height: 60px;
    }
    .header__logo img {
        max-height: 35px;
    }
    .side-menu .menu {
        margin-top: 20px;
    }
}
@media (max-width: 490px) {
    .hero__content {
        min-height: 70vh;
    }
    .hero__text h1 {
        font-size: 40px;
    }
    .hero__text h2 {
        font-size: 15px;
    }
}
@media (max-width: 415px) {
    /* .header__logo img {
        max-height: 26px;
    } */
    .btn {
        padding: 9px 20px;
        font-size: 12px;
        /* display: none; */
    }
    .hero__text h1 {
        font-size: 29px;
    }
    .hero__text h2 {
        margin-bottom: 30px;
    }
}  
@media (max-width: 340px) {
    .header__actions .btn {
        display: none;
    }
    .hero__text h1 {
        font-size: 24px;
    }
    .side-menu {
        right: -120%;
    }
    .side-menu {
        width: 295px;
    }
}
/* ===== Головне меню. END ===== */


/* ===== БЛОК №2. ЛОГО ПАРТНЕРІВ. START ===== */
.logo-partners {
    position: relative;
    padding: 50px;
}
.logo-slider {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}
  
.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}
  
.logo-item {
    min-width: auto;
    height: 80px;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
}
.logo-item img {
    max-height: 60px;
    height: 100%;
    width: auto;
}
  
/* Анімація */
@keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
}


@media (max-width: 991px) {
    .logo-partners {
        padding-top: 0;
    }
}
@media (max-width: 490px) {
    .logo-item {
        height: 50px;
    }
    .logo-item img {
        max-height: 50px;
    }
}
/* ===== БЛОК №2. ЛОГО ПАРТНЕРІВ. END ===== */




/* ===== БЛОК №3. ПРО НАС. START ===== */
.about {
    padding: 50px 0;
    background-color: #F4F4F5;
}
.about__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
  
/* LEFT */
.about__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 21px;
    color: var(--color-text-second);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
}
.about__title {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(25px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 24px;
}
.about__text {
    font-family: var(--font-heading);
    color: var(--color-text-second);
    max-width: 520px;
    margin-bottom: 40px;
    opacity: 0.8;
}
.about__content a {
    font-family: var(--font-main);
    text-decoration: none;
}
  
  /* RIGHT */
.about__media {
    display: flex;
    justify-content: center;
}
.about-blob {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
} 
.about-blob #blobClip {
    transform-origin: center;
    transition: transform 0.4s ease;
}
.about-blob:hover #blobClip {
    transform: scale(1.12);
} 
.about-blob__text {
    font-family: var(--font-heading);
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    fill: var(--color-text);
    transition: fill 0.4s ease;
}
.about-blob:hover .about-blob__text {
    font-family: var(--font-heading);
    font-size: 8px;
    fill: #fff;
    mix-blend-mode: overlay;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .about__container {
      grid-template-columns: 1fr;
      gap: 60px;
      text-align: center;
    }
    .about__text {
      margin-left: auto;
      margin-right: auto;
    }
}
/* ===== БЛОК №3. ПРО НАС. END ===== */



/* ===== БЛОК №4. ПАКЕТИ ПОСЛУГ. START ===== */

/* SECTION */
.packages {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: #fff;
}
.packages {
    position: relative;
    background: #fff;
    overflow: hidden;
}
  
.packages::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    background-image: url("../images/img/about-image2-7.png"); /* будь-яке зображення */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  
    /* opacity: 0.25;
    filter: blur(6px); */
  
    /* top: -80px; */
    /* left: -120px; */
  
    pointer-events: none;
    z-index: 0;
}
.packages > * {
    position: relative;
    z-index: 1;
}
/* TITLE */
.packages__title {
    font-family: var(--font-main);
    color: var(--color-text);
    text-align: center;
    margin-bottom: 64px;
    font-size: clamp(25px, 4vw, 48px);
} 
/* GRID */
.packages__grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
    gap: 32px;
}
/* CARD */
.package-card {
    padding: 40px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
} 
.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
/* FEATURED */
.package-card--featured {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
}
/* TEXT */
.package-card__name {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: 24px;
}
.package-card__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
} 
.old-price {
    font-family: var(--font-main);
    text-decoration: line-through;
    opacity: 0.5;
}
.new-price {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
} 
/* LIST */
.package-card__list {
    list-style: none;
    padding: 0;
    margin: 0; 
}
.package-card__list ul {
    list-style-type: none;
}
.package-card__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}
.package-card__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00c853;
}
/* BUTTON */
  .package-card .btn {
    margin-top: auto;
}
.package-card a.btn.btn--primary {
    margin: 0 auto;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .packages__grid {
      grid-template-columns: 1fr;
      max-width: 600px;
      margin: 0 auto;
    }
    .package-card__list li::before {
        color: #00c853;
    }
}
@media (max-width: 768px) {
    .packages {
      padding: 80px 0;
    }
}
/* ===== БЛОК №4. ПАКЕТИ ПОСЛУГ. END ===== */



/* ===== БЛОК №5. АНАЛІЗ БІЗНЕСУ. START ===== */

.audit-cta {
    position: relative;
    min-height: clamp(320px, 45vw, 520px);
    padding: clamp(48px, 8vw, 96px) 16px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--color-text-white);
    overflow: hidden;
}
/* background image */
.audit-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/img/section-bg.jpg"); 
    background-size: cover;
    background-position: center;
    z-index: -2;
}
/* overlay */
.audit-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(192, 192, 192, 0.45);
    z-index: -1;
}
/* content */
.audit-cta__content {
    max-width: 720px;
    display: grid;
    gap: clamp(16px, 3vw, 28px);
}
/* title */
.audit-cta__title {
    font-family: var(--font-main);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-size: clamp(25px, 4vw, 48px);
    color: var(--color-text);
}
/* subtitle */
.audit-cta__subtitle {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
    font-size: clamp(14px, 2vw, 18px);
    max-width: 560px;
    margin-inline: auto;
}
/* button spacing */
.audit-cta .btn {
    margin-top: clamp(12px, 3vw, 24px);
}
  

/* ФОРМА МОДАЛЬНЕ ВІКНО. START */

.audit-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 200;
} 
.audit-modal.is-active {
    opacity: 1;
    pointer-events: all;
}  
/* overlay */
.audit-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}
/* modal box */
.audit-modal__content {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 16px;
    padding: 24px;
  
    background: #fff;
    border-radius: 16px;
  
    max-height: 90vh;
    overflow-y: auto;
  
    animation: auditModalUp .35s ease;
}
  
@keyframes auditModalUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
}
  
/* close */
.audit-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
  
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}
/* title */
.audit-modal__title {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 16px;
}
/* form */
.audit-form {
    display: grid;
    gap: 14px;
}
.audit-form input,
.audit-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
  
    border-radius: 10px;
    border: 1px solid var(--color-border);
  
    font-size: 14px;
}
  
  .audit-form textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .btn--full {
    width: 100%;
  }
  
  /* desktop */
  @media (min-width: 768px) {
    .audit-modal__content {
      padding: 32px;
    }
  }
  
/* ФОРМА МОДАЛЬНЕ ВІКНО. END */
  
/* ===== БЛОК №5. АНАЛІЗ БІЗНЕСУ. END ===== */



/* ===== БЛОК №6. ВІДГУКИ. START ===== */
.gratitudes {
    padding: clamp(48px, 8vw, 96px) 0;
    background: var(--color-bg);
    padding: 50px 0;
} 
.gratitudes__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    /* margin-bottom: 32px; */
}
.gratitudes__title {
    font-family: var(--font-main);
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(25px, 4vw, 48px);
}  
/* arrows */
.gratitudes__nav {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.gratitudes__btn {
    width: 44px;
    height: 44px;
    color: var(--color-text);
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}
  
/* slider */
.gratitudes-swiper {
    overflow: hidden;
} 
/* slide */

.swiper.gratitudes-swiper {
    padding: 10px 10px;
}
.gratitudes__item {
    display: block;
    width: 100%;
    height: 320px; 
    border-radius: 16px;
    overflow: hidden; 
    background: transparent;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}
.gratitudes__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gratitudes__item:hover img {
    transform: scale(1.05);
}
/* mobile */
@media (max-width: 767px) {
    .gratitudes__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .gratitudes__item {
        height: 260px;
    }
}
  
/* ===== БЛОК №6. ВІДГУКИ. END ===== */


/* ===== БЛОК №7. ПОРТФОЛІО. START ===== */

/* =========================
   PORTFOLIO PREVIEW
========================= */

.portfolio-preview {
    padding: clamp(40px, 10vw, 50px) 0;
    background-color: var(--color-bg-second);
}
  
/* ---------- HEADER ---------- */
.portfolio-preview__title {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    margin-bottom: clamp(32px, 5vw, 56px);
}
/* ---------- GRID ---------- */
.portfolio-preview__grid {
    display: grid;
    /* grid-template-columns: repeat(
      auto-fit,
      minmax(260px, 1fr)
    ); */
    grid-template-columns: repeat(
      auto-fit,
      minmax(360px, 1fr)
    );
    gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 410px) {
    .portfolio-preview__grid {
        grid-template-columns: repeat(
        auto-fit,
        minmax(260px, 1fr)
        );
        gap: clamp(20px, 3vw, 32px);
    }
}
/* ---------- CARD ---------- */
.portfolio-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}  
/* ---------- IMAGE ---------- */
.portfolio-card__image {
    position: relative;
    width: 100%;
    max-width: 363px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #f2f2f2;
}
.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-card__tag {
    font-family: var(--font-heading);
    color: var( --color-text-second);
    font-size: clamp(12px, 4vw, 25px);
}
  
/* Hover */
@media (hover: hover) {
    .portfolio-card:hover img {
        transform: scale(1.06);
    }
}
/* ---------- CONTENT ---------- */
.portfolio-card__content {
    padding-top: 14px;
}
.portfolio-card__tag {
    display: inline-block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    color: var( --color-text-second);
    font-size: clamp(12px, 4vw, 14px);
}
.portfolio-card__title {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.45;
    font-weight: 500;
}
/* ---------- FOOTER ---------- */
.portfolio-preview__footer {
    margin-top: clamp(36px, 5vw, 56px);
    text-align: center;
}
.portfolio-preview__footer a {
    text-decoration: none;
    font-family: var(--font-main);
}

/* ===== БЛОК №7. ПОРТФОЛІО. END ===== */


/* ===== БЛОК №8. БЛОК З КОНТАКТАМИ. START ===== */
/* =========================
   CONTACT / LET'S TALK
========================= */

.contact-section {
    position: relative;
    /* padding: 50px 0; */
    padding: clamp(40px, 10vw, 50px) 0;
    background: var(--color-bg);
    background-color: var(--color-bg-second);
    overflow: hidden;
}
.contact-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
  
    background-image: url("../images/img/Silicone-Ball.png"); /* свій шлях */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  
    top: -5px;
    right: -50px;
  
    opacity: 0.35;
    pointer-events: none;

    transform-origin: center;
    animation: slow-rotate 60s linear infinite;
}
@keyframes slow-rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
  
.contact-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
/* LEFT */
.contact-section__label {
    display: inline-block;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    font-size: clamp(12px, 4vw, 14px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
}
.contact-section__title {
    font-family: var(--font-main);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text);
}
.contact-section__text {
    font-family: var(--font-heading);
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.6;
    color: var(--color-text-second);
    max-width: 460px;
    margin-bottom: 32px;
}
.contact-section__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-detail {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-size: clamp(16px, 4vw, 18px);
    text-decoration: none;
    opacity: 0.9;
}
.contact-detail:hover {
    opacity: 1;
}
/* RIGHT / FORM */
.contact-section__form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 0px 0px 10px 2px rgba(152, 152, 152, 0.2);
    -moz-box-shadow: 0px 0px 10px 2px rgba(152, 152, 152, 0.2);
    box-shadow: 0px 0px 10px 2px rgba(152, 152, 152, 0.2);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: clamp(14px, 4vw, 15px);
    border-radius: 12px;
    border: 1px solid var(--color-text-second);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
    outline: none;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--color-text-second);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: var(--color-secondary);
}
.contact-form__submit {
    margin-top: 8px;
    width: 100%;
}
/* =========================
     MOBILE ADAPTATION
========================= */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    .contact-section__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-section__text {
        max-width: 100%;
    }
    .contact-section__form-wrapper {
        padding: 28px 20px;
    }
    .contact-section::before {
        width: 420px;
        height: 420px;
        top: -50px;
        right: -200px;
        opacity: 0.25;
        animation-duration: 120s;
    }
}
  
/* ===== БЛОК №8. БЛОК З КОНТАКТАМИ. END ===== */


/* ===== FOOTER START ===== */
/* =========================
   FOOTER
========================= */

.site-footer {
    padding: clamp(40px, 10vw, 50px) 0;
    background: var(--color-bg-second);
    border-top: 2px solid var(--color-border);
}
  
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
  
/* LEFT */
.footer-left {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #888;
}
  
/* CENTER */
.footer-center {
    text-align: center;
}
  
.footer-logo {
    display: inline-block;
}
  
.footer-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
}
  
/* SOCIALS */
.footer-socials {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 18px;
}
  
.footer-socials a {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
  
.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-2px);
}
  
.footer-socials img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
  
/* RIGHT */
.footer-right {
    text-align: right;
}
  
.footer-right a {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #888;
    text-decoration: none;
}
  
.footer-right a:hover {
    text-decoration: underline;
}
  
/* =========================
     MOBILE
========================= */
@media (max-width: 768px) {
  
    .site-footer {
        padding: 40px 20px 32px;
    }
  
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }
  
    .footer-left,
    .footer-right {
        text-align: center;
    }
  
    .footer-logo img {
        max-width: 150px;
    }
  
    .footer-socials {
        gap: 16px;
    }
}  
/* ===== FOOTER END ===== */







/* ===== ABOUT PAGE ===== */

/* БЛОК №1. ХЛІБНІ КРИХТИ. START */
.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-image: url("../images/img/bg_about.jpg"); 
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(13, 16, 38, 0.85),
      rgba(13, 16, 38, 0.55)
    );
    z-index: 1;
}
.page-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}
/* TITLE */
.page-hero__title {
    color: #fff;
    font-weight: 600;
    font-size: clamp(28px, 5vw, 52px);
    margin-bottom: 16px;
}
  
/* =========================
     BREADCRUMBS
========================= */
  
.breadcrumbs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.breadcrumbs::-webkit-scrollbar {
    display: none;
}
.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs__item {
    display: flex;
    align-items: center;
    font-size: clamp(12px, 3vw, 14px);
    color: rgba(255, 255, 255, 0.8);
}
  
.breadcrumbs__item a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
  
.breadcrumbs__item a:hover {
    opacity: 1;
}
  
.breadcrumbs__item:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}
  
/* =========================
     MOBILE
========================= */
  
@media (max-width: 768px) {
    .page-hero {
        min-height: 260px;
    } 
    .page-hero__title {
        font-size: clamp(24px, 7vw, 34px);
    }
}  
/* БЛОК №1. ХЛІБНІ КРИХТИ. END */



/* БЛОК №2. ХТО МИ. START */
/* =========================
   WHO WE ARE
========================= */

.who-we-are {
    padding: 100px 0;
    background: #f8f9fc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.who-we-are__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT */

.who-we-are__title {
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.who-we-are__text {
    font-family: var(--font-heading);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    color: var(--color-text-second);
    margin-bottom: 18px;
    max-width: 560px;
}

/* IMAGE */

.who-we-are__image {
    position: relative;
}

.who-we-are__image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}
/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .who-we-are__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are__image {
        order: -1;
    }

    .who-we-are {
        padding: 70px 0;
    }
}
/* БЛОК №2. ХТО МИ. END */






/* БЛОК №4. ПОСЛУГИ. START */

.services-list {
    padding: 100px 0 60px 0;
    background: var(--color-bg-second);

}
.services-list::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    background-image: url(../images/img/about-image2-7.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    background-position: center center;
}
.services__header {
    max-width: 720px;
    margin-bottom: 60px;
}
.services__title {
    font-size: clamp(28px, 4vw, 48px);
    font-family: var(--font-main);
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.services__description {
    font-size: clamp(14px, 2vw, 16px);
    font-family: var(--font-heading);
    line-height: 1.7;
    color: var(--color-text-second);
}
.services-list__items {
    position: relative;
    list-style-type: none;
}
.service-item {
    position: relative;
    width: 100%;
    padding: 35px 0;
    border-bottom: 1px solid var(--color-muted);
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-item__title {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(22px, 3vw, 35px);
    font-weight: 500;
    letter-spacing: 1px;
}

.service-item__arrow {
    font-size: 28px;
    transition: transform 0.3s ease;
}

/* Hover arrow animation */
.service-item:hover .service-item__arrow {
    transform: translateX(8px);
}

/* IMAGE */

.service-item img {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%) scale(0.9);
  width: 280px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-item:hover img {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}



.services__cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.services__cta a:hover {
    text-decoration: none;
}


/* МОДАЛЬНЕ ВІКНО ПОСЛУГИ. START */
.services-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  z-index: 1000;
}

.services-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.services-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.services-modal__content {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  transform: translateY(40px) scale(.95);
  opacity: 0;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}

.services-modal.is-active .services-modal__content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
/* МОДАЛЬНЕ ВІКНО ПОСЛУГИ. END */

/* ===== MOBILE ===== */

@media (max-width: 992px) {
    .service-item img {
        display: none;
    }

    .service-item {
        padding: 25px 0;
    }

    .service-item__title {
        /* font-size: 22px; */
        font-size: clamp(15px, 4vw, 22px);
    }

    .service-item__arrow {
        /* font-size: 22px; */
        font-size: clamp(15px, 4vw, 22px);
        color: var(--color-text);
    }
    .services-list__items {
        padding-inline-start: 0;
    }
}
/* БЛОК №4. ПОСЛУГИ. END */





/* БЛОК №5. ЧОМУ МИ? START */
/* ============================= */
/* WHY TRUST SECTION */
/* ============================= */

.why-trust {
    padding: clamp(60px, 8vw, 60px) 0;
    background: var(--color-bg);
}
.why-trust__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

/* IMAGE */
.why-trust__image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.why-trust__image img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

/* CONTENT */
.why-trust__title {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}
.why-trust__text {
    display: grid;
}
.why-trust__text p {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.8;
    color: var(--color-text-second);
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 992px) {
    .why-trust__wrapper {
        grid-template-columns: 1fr;
    }
    .why-trust__image {
        order: -1;
    }
    .why-trust__image img {
        border-radius: 20px;
    }
    .why-trust__title {
        margin-top: 20px;
    }
    .services-list::before {
        display: none;
    }
}
/* БЛОК №5. ЧОМУ МИ? END */






/* PAGE. WORKS. START */
/* ===============================
   PORTFOLIO FILTERS
=============================== */

.portfolio-filters {
    margin-bottom: 60px;
}

.portfolio-filters__list {
    display: flex;
    flex-wrap: nowrap;             
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;               
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; 
}
/* Щоб елементи не стискались */
.portfolio-filters__item {
    flex: 0 0 auto;
}
/* Ховаємо скролбар (опційно, якщо хочеш clean UI) */
.portfolio-filters__list::-webkit-scrollbar {
    display: none;
}
.portfolio-filters__list {
    scrollbar-width: none;
}
.portfolio-filters__item a {
    display: inline-block;
    padding: 10px 18px;
    font-family: var(--font-main);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;

    color: var(--color-text);
    border: 1px solid rgba(118, 118, 118, 0.4);
    background-color: var(--color-bg);
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Hover */
.portfolio-filters__item a:hover {
    border-color: var(--color-primary-link);
    background-color: var(--color-primary-link);
}

/* Active */
.portfolio-filters__item a.is-active {
    background: var(--color-primary-link);
    color: var(--color-text);
    border-color: var(--color-primary-link);
}
/* PAGE. WORKS. END */






/* ===============================
   SINGLE-WORKS
=============================== */

/* PAGE. SINGLE-WORKS. START */

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

body {
  font-family: Arial, sans-serif;
  color: #1c1c1c;
  line-height: 1.6;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 120px 0;
}

img {
  width: 100%;
  display: block;
  border-radius: 24px;
} */


/* ================================
   HERO
================================ */
.project-hero {
    padding: 60px 0;
}
.project-hero h1 {
  /* font-size: 56px; */
    font-family: var(--font-main);
    font-size: clamp(28px, 4vw, 48px);
    color: var(--color-text);
    line-height: 1.1;
    margin-bottom: 20px;
}
.project-hero p {
    font-family: var(--font-heading);
    color: var(--color-text-second);
    font-size: clamp(12px, 4vw, 18px);
    opacity: 0.8;
    margin-bottom: 40px;
}
.project-tags {
    margin-bottom: 40px;
}
.project-tags span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: #f3f3f3;
  margin-right: 10px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 14px;
}
.project-hero-img {
    position: relative;
    overflow: hidden;
    width: auto;
    max-height: 450px;
}
.project-hero-img img {
    position: relative;
    margin: 0 auto;
}

/* ================================
   VIDEO-SOLUTION
================================ */
/* .project-video {
  padding: 120px 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 24px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
} */

.solution-block:nth-child(even) {
    direction: rtl;
}

.solution-block:nth-child(even) > div {
    direction: ltr;
}

.solution-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.section-video-content h3{
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(22px, 4vw, 30px);
    line-height: 1.1;
}
.section-video-content p {
    font-family: var(--font-heading);
    color: var(--color-text-second);
    font-size: clamp(12px, 4vw, 18px);
    opacity: 0.8;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 24px;
}
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
/* .hidden {
  display: none;
} */
select {
    margin-top: 20px;
    padding: 8px 12px;
    border-radius: 8px;
}


/* ================================
   OVERVIEW
================================ */
.section-overview {
    position: relative;
    padding: 60px 0;
}
.project-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
.section-overview-title {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(22px, 4vw, 40px);
    line-height: 1.1;
    margin-bottom: 24px;
}
.section-overview-subtitle {
    font-family: var(--font-heading);
    color: var(--color-text-second);
    font-size: clamp(12px, 4vw, 18px);
    opacity: 0.8;
}
.project-meta {
    background-color: var(--color-bg-second);
    padding: 40px;
    border-radius: 24px;
}
.project-meta-title strong {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(12px, 4vw, 14px);
    opacity: 0.6;
    margin-bottom: 5px;
}
.project-meta-title p {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(12px, 4vw, 16px);
    color: var(--color-text);
    margin-bottom: 5px;
}


/* ================================
   CHALLENGE
================================ */
.section-challenge {
    position: relative;
}
.project-challenge {
    text-align: center;
    background-color: var(--color-bg-second);
    border-radius: 24px;
    padding: 100px 40px;
    margin-bottom: 60px;
}
.project-challenge h2 {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(22px, 4vw, 36px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.project-challenge p {
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-size: clamp(12px, 4vw, 18px);
    color: var(--color-text);
    margin-bottom: 5px;
}

/* ================================
   SOLUTION
================================ */

.solution-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.solution-block:nth-child(even) {
  direction: rtl;
}
.solution-block:ntn-child(even) > div {
  direction: ltr;
}

.solution-block-wrapper h3 {
    font-family: var(--font-main);
    font-size: clamp(22px, 4vw, 28px);
    color: var(--color-text);
    margin-bottom: 20px;
}
.solution-block p {
    font-family: var(--font-heading);
    font-size: clamp(12px, 4vw, 18px);
    color: var(--color-text);
    line-height: 1.1;
}
.solution-block-wrapper-img {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}
.solution-block-wrapper-img img {
    position: relative;
    margin: 0 auto;
}

/* ================================
   RESULTS
================================ */

.project-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.result-item h3 {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(22px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.result-item p {
  opacity: 0.7;
}

/* ================================
   GALLERY
================================ */

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* ================================
   CTA
================================ */

.project-cta {
  text-align: center;
}

.project-cta h2 {
  /* font-size: 40px; */
  font-size: clamp(22px, 4vw, 40px);
  margin-bottom: 30px;
}

.project-cta a {
  display: inline-block;
  padding: 14px 30px;
  background: #d4a44c;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.project-cta a:hover {
  opacity: 0.85;
}

/* ================================
   RESPONSIVE
================================ */

@media(max-width: 992px) {

  .project-overview {
    grid-template-columns: 1fr;
  }

  .solution-block {
    grid-template-columns: 1fr;
  }

  .project-results {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  section {
    padding: 80px 0;
  }

  .project-hero h1 {
    font-size: 36px;
  }

}
@media (max-width: 768px) {
    .project-hero {
        padding-bottom: 30px;
    }
    .section-overview  {
        padding: 30px 0;
    }
    .project-overview {
        gap: 30px;
    }
    .section-solution {
        padding: 30px 0;
    }
    .solution-block {
        gap: 30px;
        margin-bottom: 40px;
    }
    .section-challenge {
        padding: 10px 0;
    }
    .project-challenge {
        margin-bottom: 30px;
    }
    .section-video-solution {
        padding: 30px 0;
    }
    .section-gallery {
        padding: 30px 0;
    }
}
/* PAGE. SINGLE-WORKS. END */




/* PAGE. PRIVACY-POLICY. START */
/* Секція */
.privacy-policy {
    padding: 60px 0;
}

/* Блок контенту */
.privacy-content {
    /* max-width: 800px; */
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Заголовок */
.privacy-content h1 {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(22px, 4vw, 48px);
    margin-bottom: 25px;
    /* line-height: 1.3; */
}

/* Основний текст */
.privacy-content p {
    font-family: var(--font-heading);
    color: var(--color-text-second);
    font-size: clamp(12px, 4vw, 18px);
    line-height: 1.1;
    white-space: pre-line; /* щоб переноси виглядали нормально */
}

/* Відступи між блоками через <br> */
.privacy-content p br {
    display: block;
    content: "";
    margin-bottom: 10px;
}
/* Виділення "псевдозаголовків" (перші слова рядків) */
.privacy-content p {
    text-align: left;
}

/* 🔻 Планшет */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 0;
    }
    .privacy-content {
        padding: 25px;
    }
}

/* 🔻 Мобільний */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .privacy-content {
        padding: 20px;
        border-radius: 8px;
    }
}
/* PAGE. PRIVACY-POLICY. END */


/* PAGE. 404. START */
/* Секція */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: var(--color-bg-second);
}
/* Контент */
    .error-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
/* 404 */
.error-content h1 {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(22px, 4vw, 58px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}
/* Підзаголовок */
.error-content h2 {
    font-family: var(--font-main);
    color: var(--color-text);
    font-size: clamp(14px, 4vw, 28px);
    margin-bottom: 15px;
}
/* Текст */
.error-content p {
    font-family: var(--font-heading);
    color: var(--color-text-second);
    font-size: clamp(12px, 4vw, 16px);
    line-height: 1.1;
    margin-bottom: 30px;
}
/* Кнопка */
.btn-home {
    display: inline-block;
    padding: 12px 28px;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 20px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

/* 🔻 Планшет */
@media (max-width: 768px) {
    .error-content h1 {
        font-size: 80px;
    }

    .error-content h2 {
        font-size: 24px;
    }
}

/* 🔻 Мобілка */
@media (max-width: 480px) {
    .error-content h1 {
        font-size: 60px;
    }

    .error-content h2 {
        font-size: 20px;
    }

    .error-content p {
        font-size: 14px;
    }

    .btn-home {
        padding: 12px 22px;
        font-size: 14px;
    }
}
/* PAGE. 404. END */



.portfolio-card.is-hidden {
    display: none;
}
@media(max-width: 460px) {
    .header__actions .btn.btn--primary.js-open-modal {
        display: none;
    }
}


/* Модальне вікно блоку "SERVICES". START */
.services-form input,
.services-form textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--color-border);
    font-size: 12px;
    font-family: var(--color-bg-second);
    padding: 10px;
    margin-bottom: 15px;
}
.services-modal__content .services-modal__close.js-services-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    color: var(--color-text);
    border: none;
    font-size: 22px;
    cursor: pointer;

}
/* Модальне вікно блоку "SERVICES". START */