/* ------------------------------------------------------------------
   RESET / BASE
------------------------------------------------------------------ */

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

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

a {
  outline: none;
  border: none;
  text-decoration: none;
}


a:focus,
a:active,
a:focus-visible {
  outline: none;
  box-shadow: none;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Regular', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #184a97;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ------------------------------------------------------------------
   УБИРАЕМ ХУЙНЮ ОТ БРАУЗЕРА
------------------------------------------------------------------ */

h1, h2, h3, h4, h5, h6,
p,
ul, ol,
li,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

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

button,
input,
textarea,
select {
  font-family: 'Regular', sans-serif;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ------------------------------------------------------------------
   WORDPRESS ОСОБЕННОСТИ (ЧТОБ НЕ ЛОМАЛОСЬ)
------------------------------------------------------------------ */

.wp-block-image,
.wp-block-group {
  margin: 0;
}


/*--------------------------------------------------------------------Шрифты*/
@font-face {
    font-family: 'Black';
    src: url('fonts/Black.otf');
}

@font-face {
    font-family: 'Comforter';
    src: url('fonts/Comforter.otf');
}

@font-face {
    font-family: 'UniSans';
    src: url('fonts/UniSans.otf');
}



@font-face {
    font-family: 'Bold';
    src: url('fonts/Bold.otf');
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope.ttf');
}


@font-face {
    font-family: 'Medium';
    src: url('fonts/Medium.otf');
}

@font-face {
    font-family: 'Regular';
    src: url('fonts/Regular.otf');
}

@font-face {
    font-family: 'Light';
    src: url('fonts/Light.otf');
}

@font-face {
    font-family: 'SemiBold';
    src: url('fonts/SemiBold.otf');
}

/* =========================================================
   ОБЩИЕ НАСТРОЙКИ
========================================================= */

.ob-site-header,
.ob-site-header * ,
.ob-hero,
.ob-hero * {
    box-sizing: border-box;
}

.ob-site-header a,
.ob-hero a {
    text-decoration: none;
}

.ob-site-header ul,
.ob-site-header li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Цвета */
:root {
    --ob-color-bg: #efebe6;
    --ob-color-bg-soft: #f3efea;
    --ob-color-text: #171717;
    --ob-color-text-soft: #4e4a43;
    --ob-color-accent: #7d8562;
    --ob-color-accent-dark: #6f7757;
    --ob-color-border: #8c867a;
    --ob-color-white: #ffffff;
}

/* =========================================================
   HEADER
   Хедер делаем абсолютным поверх hero,
   чтобы фон hero визуально продолжался под ним
========================================================= */

.ob-site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: transparent;
}

.ob-site-header__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 32px 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ob-site-header__brand {
    flex: 0 0 auto;
    min-width: 180px;
}

.ob-site-header__brand-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--ob-color-text);
}

.ob-site-header__name {
    font-family: 'Comforter';
    font-size: 46px;
    line-height: 1.1;
    color: var(--ob-color-text);
}

.ob-site-header__role {
    font-family: 'UniSans';
    font-size: 16px;
    line-height: 1.2;
    color: var(--ob-color-text-soft);
}

.ob-site-header__nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.ob-site-header__menu {
    display: flex;
    align-items: center;
    gap: 42px;
}

.ob-site-header__menu-item a {
    font-family: 'Regular';
    font-size: 16px;
    line-height: 1.2;
    color: var(--ob-color-text);
    transition: opacity 0.2s ease;
}

.ob-site-header__menu-item a:hover {
    opacity: 0.7;
}

.ob-site-header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.ob-site-header__cta {
    min-height: 50px;
    padding: 0 34px;
    border-radius: 12px;
    background: var(--ob-color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    font-size: 16px;
    line-height: 1;
    color: var(--ob-color-white);
    transition: background 0.2s ease;
}

.ob-site-header__cta:hover {
    background: var(--ob-color-accent-dark);
}

.ob-site-header__divider {
    width: 1px;
    height: 42px;
    background: rgba(23, 23, 23, 0.22);
    display: block;
}

.ob-site-header__socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ob-site-header__social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(125, 133, 98, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.2s ease;
}

.ob-site-header__social:hover {
    opacity: 0.8;
}

.ob-site-header__social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.ob-site-header__burger {
    display: none;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 10px;
    background: var(--ob-color-accent);
    padding: 0;
    cursor: pointer;
}

.ob-site-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
}

/* =========================================================
   HERO
========================================================= */

.ob-hero {
    position: relative;
    overflow: hidden;
    padding-top: 112px; /* место под абсолютный header */
    background: transparent;
}

.ob-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('/wp-content/uploads/a6f13752-d9ee-4cd8-bcbd-bf34f0c9bd6e-1-scaled.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.ob-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 62px 32px 0 32px;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(480px, 700px);
    gap: 24px;
    align-items: stretch;
}

.ob-hero__content {
    position: relative;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.ob-hero__content::before {
    content: '';
    position: absolute;
    left: -70px;
    bottom: 122px;
    width: 140px;
    height: 210px;
    background-image: url('');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    opacity: 0.28;
    pointer-events: none;
}

.ob-hero__eyebrow {
    margin-bottom: 22px;
    font-family: 'Medium';
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ob-color-text);
}

.ob-hero__title {
    margin: 0 0 34px 0;
    display: inline-block;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.ob-hero__title-line {
    display: inline-block;
    font-family: 'UniSans';
    font-size: 99px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.5px;
}

.ob-hero__title-line--dark {
    color: #111111;
}

.ob-hero__title-line--accent {
    color: var(--ob-color-accent);
}

.ob-hero__text {
    max-width: 560px;
    margin-bottom: 36px;
}

.ob-hero__text p {
    margin: 0 0 12px 0;
    font-family: 'Regular';
    font-size: 21px;
    line-height: 1.45;
    color: var(--ob-color-text);
}

.ob-hero__text p:last-child {
    margin-bottom: 0;
}

.ob-hero__text-strong {
    font-family: 'SemiBold' !important;
    font-size: 24px !important;
    line-height: 1.35 !important;
    color: #111111 !important;
}

.ob-hero__buttons {
    display: flex;
    align-items: stretch;
    gap: 18px;
    margin-bottom: 42px;
}

.ob-hero__btn {
    min-height: 74px;
    border-radius: 14px;
    padding: 0 32px;
    display: inline-flex;
    padding-top: 15px;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    transition: all 0.2s ease;
}

.ob-hero__btn--primary {
    max-width: 380px;
    background: var(--ob-color-accent);
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    line-height: 21px;
    position: relative;
    padding-right: 68px;
}

.ob-hero__btn--primary::after {
    content: '→';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Light';
    font-size: 34px;
    line-height: 1;
    color: #ffffff;
}

.ob-hero__btn--primary:hover {
    background: var(--ob-color-accent-dark);
}

.ob-hero__btn--secondary {
    min-width: 230px;
    border: 1px solid rgba(23, 23, 23, 0.35);
    color: var(--ob-color-text);
    background: rgba(255, 255, 255, 0.08);
    font-family: 'Regular';
}

.ob-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.28);
}

.ob-hero__contacts {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.ob-hero__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ob-color-text-soft);
}

.ob-hero__contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ob-color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 42px;
}

.ob-hero__contact-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.ob-hero__contact-text {
    font-family: 'Regular';
    font-size: 16px;
    line-height: 1.2;
    color: var(--ob-color-text-soft);
}

.ob-hero__visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ob-hero__person-wrap {
    position: absolute;
    left: -90px;
    bottom: 0;
    height: 120%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.ob-hero__person {
    display: block;
    max-width: none;
    width: auto;
    height: 100%;
    z-index: 10;
    object-fit: contain;
    object-position: center bottom;
}

.ob-hero__stats {
    position: absolute;
    right: 6px;
    top: 10px;
    width: 245px;
    border-radius: 18px;
    background: rgba(125, 133, 98, 0.95);
    padding: 28px 26px;
    z-index: 3;
}

.ob-hero__stats-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ob-hero__stats-value {
    font-family: 'Medium';
    font-size: 28px;
    line-height: 1.05;
    color: #ffffff;
}

.ob-hero__stats-label {
    font-family: 'Light';
    font-size: 16px;
    line-height: 1.35;
    color: #ffffff;
    opacity: 0.96;
}

.ob-hero__stats-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    margin: 20px 0;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {
    .ob-site-header__menu {
        gap: 26px;
    }

    .ob-site-header__menu-item a {
/*         font-size: 15px; */
    }

    .ob-site-header__cta {
        min-height: 52px;
        padding: 0 24px;
/*         font-size: 15px; */
    }

    .ob-site-header__social {
        width: 44px;
        height: 44px;
    }

    .ob-hero {
        min-height: 760px;
        padding-top: 106px;
    }

    .ob-hero__inner {
        min-height: 760px;
        grid-template-columns: minmax(360px, 1fr) minmax(420px, 620px);
    }

    .ob-hero__title-line {
/*         font-size: 72px; */
    }

    .ob-hero__text p {
/*         font-size: 19px; */
    }

    .ob-hero__text-strong {
/*         font-size: 22px !important; */
    }

    .ob-hero__btn {
        min-height: 64px;
/*         font-size: 18px; */
    }

    .ob-hero__btn--secondary {
        min-width: 240px;
    }

    .ob-hero__stats-value {
/*         font-size: 24px; */
    }
}

/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 991px) {
    .ob-site-header__nav,
    .ob-site-header__actions {
        display: none;
    }

    .ob-site-header__burger {
        display: inline-block;
    }

    .ob-site-header__inner {
        padding: 18px 22px 0 22px;
    }


    .ob-hero {
        min-height: auto;
        padding-top: 100px;
    }

    .ob-hero__inner {
        min-height: auto;
        padding: 24px 22px 0 22px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ob-hero__content {
        padding: 44px 0 0 0;
        max-width: 100%;
    }

    .ob-hero__content::before {
        left: -24px;
        bottom: 112px;
        width: 90px;
        height: 150px;
    }

    .ob-hero__title-line {
/*         font-size: 62px; */
    }

    .ob-hero__buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }

    .ob-hero__btn--primary,
    .ob-hero__btn--secondary {
        max-width: none;
        min-width: 0;
        width: 100%;
    }

    .ob-hero__visual {
        min-height: 620px;
    }

    .ob-hero__person-wrap {
        left: 50%;
        transform: translateX(-50%);
        width: min(100%, 700px);
    }

    .ob-hero__stats {
        right: 10px;
        top: 60px;
    }
}

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

@media (max-width: 767px) {
    .ob-site-header__inner {
        padding: 14px 16px 0 16px;
    }

    .ob-site-header__burger {
        width: 44px;
        height: 44px;
    }

    .ob-hero {
        padding-top: 82px;
        background: var(--ob-color-bg);
    }

    .ob-hero__inner {
        padding: 16px 16px 0 16px;
    }

    .ob-hero__content {
        padding-top: 24px;
    }

    .ob-hero__eyebrow {
        margin-bottom: 16px;
/*         font-size: 12px; */
/*         letter-spacing: 0.22em; */
    }

    .ob-hero__title {
        margin-bottom: 22px;
    }

    .ob-hero__title-line {
         font-size: 62px;
/*         line-height: 1.02; */
    }

    .ob-hero__text {
        margin-bottom: 24px;
    }

    .ob-hero__text p {
/*         font-size: 17px; */
/*         line-height: 1.45; */
    }

    .ob-hero__text-strong {
/*         font-size: 18px !important; */
/*         line-height: 1.35 !important; */
    }

    .ob-hero__buttons {
        gap: 12px;
        margin-bottom: 26px;
    }

    .ob-hero__btn {
        min-height: 56px;
        padding: 0 18px;
/*         font-size: 15px; */
        border-radius: 12px;
    }

    .ob-hero__btn--primary {
        padding-right: 54px;
    }

    .ob-hero__btn--primary::after {
        right: 20px;
/*         font-size: 28px; */
    }

    .ob-hero__contacts {
        gap: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ob-hero__contact {
        gap: 10px;
    }

    .ob-hero__contact-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .ob-hero__contact-icon img {
        width: 15px;
        height: 15px;
    }

    .ob-hero__contact-text {
/*         font-size: 14px; */
    }

    .ob-hero__visual {
        min-height: 440px;
        margin-top: 10px;
    }

    .ob-hero__person-wrap {
        width: 118%;
        max-width: none;
        left: 52%;
        transform: translateX(-50%);
    }

    .ob-hero__person {
        width: 100%;
    }

    .ob-hero__stats {
        width: 170px;
        right: 0;
        top: 24px;
        padding: 16px 14px;
        border-radius: 14px;
    }

    .ob-hero__stats-value {
 font-size: 22px; 
    }

    .ob-hero__stats-label {
/*         font-size: 12px; */
/*         line-height: 1.3; */
    }

    .ob-hero__stats-separator {
        margin: 14px 0;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .ob-hero__title-line {
/*         font-size: 30px; */
    }

    .ob-hero__text p {
/*         font-size: 16px; */
    }

    .ob-hero__visual {
        min-height: 390px;
    }

    .ob-hero__stats {
        width: 154px;
    }

    .ob-hero__stats-value {
/*         font-size: 17px; */
    }
}

.ob-site-header__mobile {
    display: none;
}

@media (max-width: 991px) {
    .ob-site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .ob-site-header__mobile {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0 22px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .ob-site-header.ob-menu-open .ob-site-header__mobile {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ob-site-header__mobile-nav {
        margin-top: 14px;
        padding: 22px;
        border-radius: 16px;
        background: rgba(239, 235, 230, 0.98);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(102, 95, 84, 0.28);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    }

    .ob-site-header__mobile-menu {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .ob-site-header__mobile-menu li a {
        font-family: 'Regular';
/*         line-height: 1.25; */
        color: var(--ob-color-text);
        text-decoration: none;
    }

    .ob-site-header__mobile-bottom {
        padding-top: 18px;
        
    }

    .ob-site-header__mobile-cta {
        min-height: 50px;
        padding: 0px 34px;
        border-radius: 12px;
        background: var(--ob-color-accent);
        display: inline-flex;
        align-items: center;
        justify-content: center;
/*         font-size: 16px; */
/*         line-height: 1; */
        color: #fff;
        text-decoration: none;
        margin-bottom: 18px;
    }

    .ob-site-header__mobile-socials {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ob-site-header__burger {
        position: relative;
        z-index: 60;
    }

    .ob-site-header__burger span {
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .ob-site-header.ob-menu-open .ob-site-header__burger span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .ob-site-header.ob-menu-open .ob-site-header__burger span:nth-child(2) {
        opacity: 0;
    }

    .ob-site-header.ob-menu-open .ob-site-header__burger span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* =========================================================
   FOOTER ОЛЬГА БЕЛАЯ
========================================================= */

.ob-footer,
.ob-footer * {
    box-sizing: border-box;
}

.ob-footer a {
    text-decoration: none;
}

.ob-footer ul,
.ob-footer li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ob-footer {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    border-top: 1px solid rgba(86, 81, 73, 0.22);
    background: linear-gradient(135deg, #ece8df 0%, #d8d8ca 100%);
}

.ob-footer__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 46px 32px 0 32px;
}

/* декоративные ветки */

.ob-footer__bg-left,
.ob-footer__bg-right {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    opacity: 0.34;
}

.ob-footer__bg-left {
left: -50px;
    bottom: 90px;
    width: 170px;
    height: 265px;
    background-image: url('/wp-content/uploads/4c7ac508-015c-42c2-ba69-45a3b722b75d.png');
    background-position: left bottom;
}

.ob-footer__bg-right {
   right: -20px;
    bottom: 85px;
    width: 170px;
    height: 245px;
    background-image: url('/wp-content/uploads/f7aaeb47-2345-4c76-aaaf-c5fbd8313983.png');
    background-position: right bottom;
}

.ob-footer__top {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.75fr 0.95fr;
    gap: 56px;
    padding-bottom: 34px;
}

.ob-footer__col {
    position: relative;
}

.ob-footer__brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: #1a1a1a;
    margin-bottom: 26px;
}

.ob-footer__brand-name {
    font-family: 'Comforter';
    font-size: 46px;
    line-height: 1.1;
    color: var(--ob-color-text);
}

.ob-footer__brand-role {
    font-family: 'UniSans';
    font-size: 16px;
    line-height: 1.2;
    color: var(--ob-color-text-soft);
}

.ob-footer__brand-text {
    font-family: 'Regular';
    font-size: 16px;
    line-height: 1.72;
    color: #3f3a34;
    margin-bottom: 28px;
}

.ob-footer__socials {
   display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 10;
}

.ob-footer__social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #72795b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ob-footer__social:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.ob-footer__social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.ob-footer__title {
    margin-bottom: 28px;
    font-family: 'Medium';
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #434038;
}

.ob-footer__menu {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ob-footer__menu li a {
    font-family: 'Regular';
    font-size: 16px;
    line-height: 1.35;
    color: #2c2925;
    transition: opacity 0.2s ease;
}

.ob-footer__menu li a:hover {
    opacity: 0.68;
}

.ob-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ob-footer__contact {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #2c2925;
}

.ob-footer__contact-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ob-footer__contact-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.ob-footer__contact-text {
    font-family: 'Regular';
    font-size: 16px;
    line-height: 1.35;
    color: #2c2925;
}

.ob-footer__bottom {
    border-top: 1px solid rgba(86, 81, 73, 0.22);
    min-height: 82px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.ob-footer__copyright {
    font-family: 'Regular';
    font-size: 15px;
    line-height: 1.3;
    color: #59544d;
    padding: 20px 0;
}

.ob-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 54px;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 20px 0;
}

.ob-footer__bottom-links a {
    font-family: 'Regular';
    font-size: 15px;
    line-height: 1.3;
    color: #4c4741;
    transition: opacity 0.2s ease;
}

.ob-footer__bottom-links a:hover {
    opacity: 0.7;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {
    .ob-footer__inner {
        padding: 40px 24px 0 24px;
    }

    .ob-footer__top {
        grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
        gap: 34px;
    }

    .ob-footer__brand-name {
/*         font-size: 24px; */
    }

    .ob-footer__brand-text {
/*         font-size: 15px; */
        max-width: 320px;
    }

    .ob-footer__menu li a,
    .ob-footer__contact-text {
/*         font-size: 16px; */
    }

    .ob-footer__bottom-links {
        gap: 28px;
    }
}

/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 991px) {
    .ob-footer__inner {
        padding: 36px 20px 0 20px;
    }

.ob-footer__bg-right{
    bottom: 120px;
}

	.ob-footer__bg-left{
    bottom: 120px;
}

    .ob-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
    }

    .ob-footer__col--brand {
        grid-column: 1 / -1;
    }

    .ob-footer__brand-text {
        max-width: 100%;
    }


    .ob-footer__bottom {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 12px 0 18px 0;
    }

    .ob-footer__copyright {
        padding-bottom: 8px;
    }

    .ob-footer__bottom-links {
        justify-content: flex-start;
        gap: 18px 26px;
        padding-top: 0;
    }
}

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

@media (max-width: 767px) {

    .ob-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .ob-footer__brand {
        margin-bottom: 18px;
    }

    .ob-footer__brand-name {
/*         font-size: 22px; */
    }

    .ob-footer__brand-role {
/*         font-size: 13px; */
    }

    .ob-footer__brand-text {
/*         font-size: 15px; */
/*         line-height: 1.6; */
        margin-bottom: 22px;
    }

    .ob-footer__title {
        margin-bottom: 16px;
        margin-top: 25px;
/*         font-size: 12px; */
/*         letter-spacing: 0.22em; */
    }

    .ob-footer__menu {
        gap: 14px;
    }

    .ob-footer__menu li a {
/*         font-size: 16px; */
    }

    .ob-footer__contacts {
        gap: 14px;
    }

    .ob-footer__contact {
        gap: 12px;
    }

    .ob-footer__contact-text {
/*         font-size: 16px; */
    }

    .ob-footer__social {
        width: 44px;
        height: 44px;
    }

    .ob-footer__social img {
        width: 18px;
        height: 18px;
    }


    .ob-footer__bottom {
        min-height: 0;
        padding: 10px 0 18px 0;
    }

    .ob-footer__copyright {
/*         font-size: 14px; */
        padding: 12px 0 8px 0;
    }

    .ob-footer__bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0;
    }

    .ob-footer__bottom-links a {
/*         font-size: 14px; */
    }
}


/* =========================================================
   HERO MOBILE REBUILD
========================================================= */

@media (max-width: 991px) {
    .ob-hero {
        min-height: auto;
        padding-top: 100px;
    }

    .ob-hero__inner {
        min-height: auto;
        padding: 62px 22px 0 22px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* ключевой момент: убираем обёртки из потока,
       чтобы их дети стали одним общим набором элементов */
    .ob-hero__content,
    .ob-hero__visual {
        display: contents;
    }

    .ob-hero__eyebrow {
        order: 1;
    }

    .ob-hero__title {
        order: 2;
    }

    .ob-hero__title-line {
/*         font-size: 62px; */
    }

    .ob-hero__text {
        order: 3;
        max-width: 100%;
        margin-bottom: 0;
    }

    

    .ob-hero__text-strong {
        margin-bottom: 0 !important;
    }

    /* фото идёт сразу после текста */
    .ob-hero__person-wrap {
        order: 4;
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: 700px;
        height: auto;
        margin: 0 auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        pointer-events: none;
        z-index: 1;
    }

    .ob-hero__person {
        width: 90%;
        height: auto;
        max-width: 700px;
        object-fit: contain;
        object-position: center bottom;
    }

    /* статистика идёт после фото */
    .ob-hero__stats {
        order: 5;
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto!important;
        width: 100%;
        /* max-width: 420px; */
        background: rgba(125, 133, 98, 0.65);
        margin: 0 auto;
        padding: 22px;
        border-radius: 18px;
        z-index: 2;
    }

    /* кнопки после статистики */
    .ob-hero__buttons {
        order: 6;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 14px;
        margin: 24px 0 0 0;
    }

    .ob-hero__btn--primary,
    .ob-hero__btn--secondary {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* контакты в самом конце */
    .ob-hero__contacts {
        order: 7;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
        margin-top: 22px;
    }

    /* декоративная ветка слева */
    .ob-hero__content::before {
        left: -24px;
        bottom: 170px;
        width: 90px;
        height: 150px;
    }
}

@media (max-width: 767px) {
    .ob-site-header__inner {
        padding: 14px 16px 0 16px;
    }

   

    .ob-site-header__role {
/*         font-size: 12px; */
    }

    .ob-site-header__burger {
        width: 44px;
        height: 44px;
    }

    .ob-hero {
        padding-top: 82px;
        background: var(--ob-color-bg);
    }


    .ob-hero__eyebrow {
        margin-bottom: 16px;
/*         font-size: 12px; */
/*         letter-spacing: 0.22em; */
    }

    .ob-hero__title {
        margin-bottom: 20px;
    }

    .ob-hero__title-line {
font-size: 62px !important;
/*         line-height: 1.02; */
    }

    .ob-hero__text p {
/*         font-size: 17px; */
/*         line-height: 1.45; */
        margin-bottom: 10px;
    }

    .ob-hero__text-strong {
/*         font-size: 18px !important; */
/*         line-height: 1.35 !important; */
    }

    .ob-hero__person-wrap {
        max-width: 100%;
       
    }

    .ob-hero__person {
        width: 90%;
        max-width: 520px;
        margin: 0 auto;
    }

    .ob-hero__stats {
        max-width: 100%;
        border-radius: 14px;
    }

    .ob-hero__stats-value {
/*         font-size: 19px; */
    }

    .ob-hero__stats-label {
font-size: 15px; 
/*         line-height: 1.3; */
    }

    .ob-hero__stats-separator {
        margin: 14px 0;
    }

    .ob-hero__buttons {
        gap: 12px;
        margin-top: 18px;
    }

    .ob-hero__btn {
        min-height: 56px;
        padding: 0 18px;
/*         font-size: 15px; */
        border-radius: 12px;
    }

    .ob-hero__btn--primary {
        padding-right: 54px;
                padding-left: 22px;
                padding-top: 15px;
        padding-bottom: 15px;
    }

    .ob-hero__btn--primary::after {
        right: 20px;
/*         font-size: 28px; */
    }

    .ob-hero__contacts {
        margin-top: 18px;
        padding-bottom: 20px;
    }

    .ob-hero__contact {
        gap: 10px;
    }

    .ob-hero__contact-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .ob-hero__contact-icon img {
        width: 15px;
        height: 15px;
    }

    .ob-hero__contact-text {
/*         font-size: 14px; */
    }
}

@media (max-width: 420px) {
    .ob-hero__title-line {
       font-size: 48px!important; 
    }

    .ob-hero__text p {
   font-size: 18px; 
    }
	
.ob-hero__eyebrow {
         font-size: 14px; 

    }


    .ob-hero__stats-value {
/*         font-size: 17px; */
    }

    .ob-hero__stats-label {
/*         font-size: 12px; */
    }

.ob-hero__text-strong {
        font-size: 22px !important;
      
    }
}


/* =========================================================
   SERVICES BLOCK / OB-SERVICES-V1
========================================================= */

.ob-services-v1 {
    width: 100%;
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 0;
}

.ob-services-v1__wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.ob-services-v1__box {
    width: 100%;
    border: 1px solid #9d978d;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7f4f0 0%, #f2eee9 45%, #ebe6e0 75%, #e6e1db 100%);
    padding: 34px 36px 36px;
}



.ob-services-v1__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 18px;
}

.ob-services-v1__head-left {
    max-width: 620px;
}

.ob-services-v1__eyebrow {
    margin: 0 0 10px 0;
    font-family: 'Medium';
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #575249;
}

.ob-services-v1__title {
    margin: 0;
    max-width: 500px;
    font-family: 'SemiBold';
    font-size: 25px;
    line-height: 1.38;
    color: #282521;
}

.ob-services-v1__title-leaf {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    vertical-align: middle;
    transform: translateY(1px);
}

.ob-services-v1__title-leaf img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ob-services-v1__head-right {
    margin: 0;
    padding-top: 35px;
    font-family: 'Regular';
    font-size: 16px;
    line-height: 1.35;
    color: #5b554d;
    text-align: right;
    white-space: nowrap;
}

.ob-services-v1__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    
}

.ob-services-v1__card {
    position: relative;
    overflow: hidden;
    border: 1px solid #9f988d;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f3 40%, #f3eee8 75%, #ede7e1 100%);
    min-height: 382px;
    cursor: pointer;
}

.ob-services-v1__card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    pointer-events: none;
}

.ob-services-v1__card--one .ob-services-v1__card-bg {
    background-image: url(/wp-content/uploads/chatgpt-image-16-apr.-2026-g.-13_46_55.png);
    
    background-position: center bottom;
    background-size: contain;
}

.ob-services-v1__card--two .ob-services-v1__card-bg {
    background-image: url('/wp-content/uploads/e5df81b7-4a71-4b0e-86f0-8d911e9138df.png');
    background-position: right bottom;
    background-size: auto 75%;
}

.ob-services-v1__card--three .ob-services-v1__card-bg {
    background-image: url('/wp-content/uploads/f2f1130f-ed39-4da5-b599-94615a5ae977.png');
    background-position: center bottom;
    background-size: contain;
}

.ob-services-v1__card-inner {
    position: relative;
    z-index: 2;
    min-height: 410px;
    padding: 20px;
    --obsv-badge-size: 31px;
    --obsv-badge-gap: 12px;
    --obsv-left-offset: calc(var(--obsv-badge-size) + var(--obsv-badge-gap));
}

.ob-services-v1__card-top {
    display: flex;
    align-items: flex-start;
    gap: var(--obsv-badge-gap);
    margin-bottom: 12px;
}

.ob-services-v1__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--obsv-badge-size);
    height: var(--obsv-badge-size);
    flex: 0 0 var(--obsv-badge-size);
    margin: 0;
    border-radius: 50%;
    background: #7b8263;
    font-family: 'SemiBold';
    font-size: 13px;
    line-height: 1;
    color: #ffffff;
}

.ob-services-v1__card-title {
    margin: 0;
    min-height: 0;
    padding-top: 4px;
    font-size: 18px;
    line-height: 1.38;
    color: #2b2723;
}

/* весь контент ниже выравниваем под заголовок, а не под кружок */
.ob-services-v1__meta,
.ob-services-v1__prices,
.ob-services-v1__text,
.ob-services-v1__list,
.ob-services-v1__text--last {
    width: calc(100% - var(--obsv-left-offset));
    max-width: calc(100% - var(--obsv-left-offset));
    margin-left: var(--obsv-left-offset);
}

.ob-services-v1__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.ob-services-v1__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Regular';
    font-size: 15px;
    line-height: 1.3;
    color: #6b655d;
}

.ob-services-v1__meta-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 14px;
}

.ob-services-v1__meta-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ob-services-v1__meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #7f796f;
}

.ob-services-v1__meta-price {
    font-family: 'Medium';
    font-size: 15px;
    line-height: 1.3;
    color: #403b35;
}

.ob-services-v1__prices {
    margin-bottom: 12px;
    font-family: 'Medium';
    font-size: 15px;
    line-height: 1.35;
    color: #2d2924;
}

.ob-services-v1__prices-note {
    font-family: 'Regular';
    font-size: 14px;
    line-height: 1.2;
    color: #6b655d;
    margin-left: 2px;
}

.ob-services-v1__prices-sep {
    font-family: 'Regular';
    font-size: 11px;
    color: #8a847b;
    margin-left: 6px;
    margin-right: 6px;
}

.ob-services-v1__text {
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Regular';
    font-size: 14px;
    line-height: 1.62;
    color: #403b35;
}

.ob-services-v1__list {
    margin-top: 6px;
    padding: 0 35px 0px 0px;
}

.ob-services-v1__list li {
    position: relative;
    margin-bottom: 7px;
    padding-left: 12px;
    font-family: 'Regular';
    font-size: 14px;
    line-height: 1.56;
    color: #403b35;
}

.ob-services-v1__list li:last-child {
    margin-bottom: 0;
}

.ob-services-v1__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #403b35;
}

.ob-services-v1__text--last {
    margin-top: 12px;
}

/* ===================== 1360 ===================== */

@media (max-width: 1360px) {
    .ob-services-v1__wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ob-services-v1__head-left {
        max-width: 560px;
    }

    .ob-services-v1__title {
/*         font-size: 22px; */
    }
}

/* ===================== 1200 ===================== */

@media (max-width: 1200px) {
    .ob-services-v1__wrap {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ob-services-v1__head {
        gap: 18px;
    }

    .ob-services-v1__head-right {
        white-space: normal;
        max-width: 240px;
    }

    .ob-services-v1__grid {
        gap: 10px;
    }

    .ob-services-v1__card,
    .ob-services-v1__card-inner {
        min-height: 400px;
    }
}

/* ===================== 991 ===================== */

@media (max-width: 991px) {
    .ob-services-v1__wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ob-services-v1__box {
        padding: 20px 16px 16px 16px;
    }

    .ob-services-v1__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .ob-services-v1__head-left {
        max-width: 100%;
    }

    .ob-services-v1__head-right {
        max-width: 100%;
        padding-top: 0;
        text-align: left;
        white-space: normal;
    }

    .ob-services-v1__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ob-services-v1__card,
    .ob-services-v1__card-inner {
        min-height: 0;
    }

    .ob-services-v1__meta,
    .ob-services-v1__prices,
    .ob-services-v1__text,
    .ob-services-v1__list,
    .ob-services-v1__text--last {
        width: calc(100% - var(--obsv-left-offset));
        max-width: calc(100% - var(--obsv-left-offset));
    }
}

/* ===================== 767 ===================== */

@media (max-width: 767px) {
    .ob-services-v1__wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ob-services-v1__box {
        padding: 18px 12px 12px 12px;
        border-radius: 14px;
    }

    .ob-services-v1__eyebrow {
/*         font-size: 11px; */
/*         letter-spacing: 0.24em; */
        margin-bottom: 8px;
    }

    .ob-services-v1__title {
/*         font-size: 19px; */
/*         line-height: 1.38; */
    }

    .ob-services-v1__title-leaf {
        width: 16px;
        height: 16px;
        margin-left: 5px;
    }

    .ob-services-v1__head-right {
/*         font-size: 13px; */
    }

    .ob-services-v1__card-inner {
        padding: 20px;
        --obsv-badge-size: 30px;
        --obsv-badge-gap: 10px;
    }

    .ob-services-v1__badge {
/*         font-size: 12px; */
    }

    .ob-services-v1__card-title {
/*         font-size: 15px; */
    }
}

/* ===================== 420 ===================== */

@media (max-width: 420px) {
    .ob-services-v1__wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ob-services-v1__title {
/*         font-size: 17px; */
    }

    .ob-services-v1__head-right {
/*         font-size: 12px; */
    }

    .ob-services-v1__meta-item,
    .ob-services-v1__meta-price,
    .ob-services-v1__text,
    .ob-services-v1__list li,
    .ob-services-v1__prices {
/*         font-size: 12px; */
    }

    .ob-services-v1__prices-note,
    .ob-services-v1__prices-sep {
/*         font-size: 10px; */
    }
}

/* =========================================================
   ORG SUPPORT BLOCK / OB-ORG-SUPPORT-V1
========================================================= */

.ob-org-support-v1 {
    width: 100%;
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 0;
}

.ob-org-support-v1,
.ob-org-support-v1 * {
    box-sizing: border-box;
}

.ob-org-support-v1__wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.ob-org-support-v1__box {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid #9d978d;
    border-radius: 18px;
    background: linear-gradient(180deg, #e7eadf 0%, #d3d8c9 100%
100%
);
}

.ob-org-support-v1__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 210px;
    background-image: url('/wp-content/uploads/175c39bd-6b91-4b9f-b817-617633bc2910.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.38;
    pointer-events: none;
    z-index: 1;
}

.ob-org-support-v1__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(420px, 1.15fr) minmax(360px, 0.95fr);
    gap: 48px;
    align-items: start;
    padding: 34px 36px 36px 36px;
}

.ob-org-support-v1__content {
    max-width: 700px;
}

.ob-org-support-v1__eyebrow {
    margin: 0 0 14px 0;
    font-family: 'Medium';
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #575249;
}

.ob-org-support-v1__title {
    margin: 0 0 34px 0;
    max-width: 760px;
    font-family: 'SemiBold';
    font-size: 29px;
    line-height: 1.38;
    color: #282521;
}

.ob-org-support-v1__text {
    max-width: 650px;
}

.ob-org-support-v1__text p {
    margin: 0 0 18px 0;
    font-family: 'Regular';
    font-size: 17px;
    line-height: 1.58;
    color: #403b35;
}

.ob-org-support-v1__text p:last-child {
    margin-bottom: 0;
}

.ob-org-support-v1__features {
    padding-top: 18px;
    padding-right: 94px;
}

.ob-org-support-v1__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    column-gap: 54px;
    row-gap: 34px;
}

.ob-org-support-v1__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ob-org-support-v1__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
    border: 1px solid #c8c1b5;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f3 40%, #f3eee8 75%, #ede7e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.ob-org-support-v1__icon img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.ob-org-support-v1__item-text {
    font-family: 'Medium';
    font-size: 16px;
    line-height: 1.45;
    color: #2f2b26;
}

/* ===================== 1360 ===================== */

@media (max-width: 1360px) {
    .ob-org-support-v1__wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ob-org-support-v1__inner {
        gap: 34px;
        padding: 34px 34px 36px 34px;
    }

    .ob-org-support-v1__title {
/*         font-size: 26px; */
    }

    .ob-org-support-v1__text p {
/*         font-size: 17px; */
    }

    .ob-org-support-v1__features {
        padding-right: 70px;
    }

    .ob-org-support-v1__grid {
        column-gap: 34px;
    }
}

/* ===================== 1200 ===================== */

@media (max-width: 1200px) {
    .ob-org-support-v1__wrap {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ob-org-support-v1__inner {
        grid-template-columns: minmax(340px, 1fr) minmax(320px, 0.9fr);
        gap: 28px;
    padding: 28px 22px 22px 22px;
    }

    .ob-org-support-v1__title {
/*         font-size: 23px; */
        margin-bottom: 26px;
    }

    .ob-org-support-v1__text p {
/*         font-size: 16px; */
        margin-bottom: 14px;
    }

    .ob-org-support-v1__features {
        padding-top: 10px;
        padding-right: 52px;
    }

    .ob-org-support-v1__grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        column-gap: 24px;
        row-gap: 26px;
    }

    .ob-org-support-v1__item-text {
/*         font-size: 15px; */
    }

    .ob-org-support-v1__bg {
        width: 170px;
    }
}

/* ===================== 991 ===================== */

@media (max-width: 991px) {
    .ob-org-support-v1__wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ob-org-support-v1__box {
        border-radius: 16px;
    }

    .ob-org-support-v1__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    padding: 28px 22px 22px 22px;
    }

    .ob-org-support-v1__content {
        max-width: 100%;
    }

    .ob-org-support-v1__title {
        max-width: 100%;
        margin-bottom: 22px;
    }

    .ob-org-support-v1__text {
        max-width: 100%;
    }

    .ob-org-support-v1__features {
        padding-top: 0;
        padding-right: 90px;
    }

    .ob-org-support-v1__grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        column-gap: 24px;
        row-gap: 24px;
    }

    .ob-org-support-v1__bg {
        width: 150px;
        opacity: 0.28;
    }
}

/* ===================== 767 ===================== */

@media (max-width: 767px) {
    .ob-org-support-v1__wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ob-org-support-v1__box {
        border-radius: 14px;
    }

    .ob-org-support-v1__inner {
        gap: 24px;
    padding: 28px 22px 22px 22px;
    }

    .ob-org-support-v1__eyebrow {
        margin-bottom: 10px;
/*         font-size: 11px; */
/*         letter-spacing: 0.24em; */
    }

    .ob-org-support-v1__title {
/*         font-size: 19px; */
/*         line-height: 1.4; */
        margin-bottom: 18px;
    }

    .ob-org-support-v1__text p {
/*         font-size: 15px; */
/*         line-height: 1.56; */
        margin-bottom: 12px;
    }

    .ob-org-support-v1__features {
        padding-right: 0;
    }

    .ob-org-support-v1__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ob-org-support-v1__item {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .ob-org-support-v1__icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin-bottom: 0;
        border-radius: 12px;
    }

    .ob-org-support-v1__icon img {
        width: 28px;
        height: 28px;
    }

    .ob-org-support-v1__item-text {
/*         font-size: 15px; */
/*         line-height: 1.4; */
        padding-top: 4px;
    }

    .ob-org-support-v1__bg {
        width: 112px;
        opacity: 0.18;
    }
}

/* ===================== 420 ===================== */

@media (max-width: 420px) {
    .ob-org-support-v1__wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ob-org-support-v1__inner {    padding: 28px 22px 22px 22px;
    }

    .ob-org-support-v1__title {
/*         font-size: 17px; */
    }

    .ob-org-support-v1__text p {
/*         font-size: 14px; */
    }

    .ob-org-support-v1__icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .ob-org-support-v1__icon img {
        width: 24px;
        height: 24px;
    }

    .ob-org-support-v1__item-text {
/*         font-size: 14px; */
    }

    .ob-org-support-v1__bg {
        width: 88px;
    }
}

/* =========================================================
   ABOUT BLOCK / OB-ABOUT-V1
========================================================= */

.ob-about-v1 {
    width: 100%;
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 0;
}

.ob-about-v1,
.ob-about-v1 * {
    box-sizing: border-box;
}

.ob-about-v1__wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.ob-about-v1__box {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid #9d978d;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7f4f0 0%, #f2eee9 45%, #ebe6e0 75%, #e6e1db 100%);
}

.ob-about-v1__bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ob-about-v1__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    opacity: 0.42;
}

.ob-about-v1__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(640px, 1.15fr);
    gap: 4px;
    padding: 34px 36px 36px 36px;
}

.ob-about-v1__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.ob-about-v1__eyebrow {
    margin: 0 0 12px 0;
    font-family: 'Medium';
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #575249;
}

.ob-about-v1__title {
    margin: 0 0 28px 0;
    max-width: 610px;
    font-family: 'SemiBold';
    font-size: 28px;
    line-height: 1.3;
    color: #282521;
}

.ob-about-v1__text {
    max-width: 500px;
}

.ob-about-v1__text p {
    margin: 0 0 24px 0;
    font-family: 'Regular';
    font-size: 18px;
    line-height: 1.6;
    color: #403b35;
}



.ob-about-v1__bouquet {
    width: 100%;
    max-width: 300px;
    position: absolute;
    bottom: 0px;
    align-self: flex-start;
}

.ob-about-v1__bouquet img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
}

/* RIGHT */

.ob-about-v1__right {
    min-width: 0;
    padding-top: 24px;
    padding-bottom: 34px;
}

.ob-about-v1__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.ob-about-v1__card {
    display: flex;
    flex-direction: column;
    border: 1px solid #c9c2b7;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f3 40%, #f3eee8 75%, #ede7e1 100%);
    padding: 18px 18px 16px 18px;
    min-width: 0;
    min-height: 206px;
}

.ob-about-v1__card--education,
.ob-about-v1__card--qualification,
.ob-about-v1__card--experience {
    min-height: 214px;
}

.ob-about-v1__card--facts,
.ob-about-v1__card--personal {
    min-height: 190px;
}

.ob-about-v1__card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.ob-about-v1__card-title {
    margin: 0;
    padding-top: 4px;
    font-family: 'SemiBold';
    font-size: 18px;
    line-height: 1.32;
    color: #2b2723;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.ob-about-v1__card--education {
    grid-column: 1 / span 4;
}

.ob-about-v1__card--qualification {
    grid-column: 5 / span 4;
}

.ob-about-v1__card--experience {
    grid-column: 9 / span 4;
}

.ob-about-v1__card--facts {
    grid-column: 3 / span 4;
}

.ob-about-v1__card--personal {
    grid-column: 7 / span 4;
}

.ob-about-v1__card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.ob-about-v1__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 10px;
    background: #7c8263;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ob-about-v1__icon img {
    display: block;
    width: 21px;
    height: 21px;
    object-fit: contain;
}

.ob-about-v1__card-title {
    margin: 0;
    padding-top: 5px;
    font-family: 'SemiBold';
    font-size: 16px;
    line-height: 1.35;
    color: #2b2723;
    min-width: 0;
    word-break: break-word;
}

.ob-about-v1__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ob-about-v1__list li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 15px;
    font-family: 'Regular';
    font-size: 15px;
    line-height: 1.5;
    color: #403b35;
}

.ob-about-v1__list li:last-child {
    margin-bottom: 0;
}

.ob-about-v1__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #403b35;
}

.ob-about-v1__card-text {
    font-family: 'Regular';
    font-size: 15px;
    line-height: 1.5;
    color: #403b35;
}

/* ===================== 1360 ===================== */

@media (max-width: 1360px) {
    .ob-about-v1__wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ob-about-v1__inner {
        padding: 30px 28px 0 28px;
        gap: 24px;
    }

    .ob-about-v1__title {
/*         font-size: 28px; */
        max-width: 100%;
    }

    .ob-about-v1__text p {
/*         font-size: 17px; */
    }


    .ob-about-v1__grid {
        gap: 16px;
    }
}

/* ===================== 1200 ===================== */

@media (max-width: 1200px) {
    .ob-about-v1__wrap {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ob-about-v1__inner {
        grid-template-columns: minmax(320px, 1fr) minmax(520px, 1fr);
        gap: 22px;
    padding: 28px 22px 22px 22px;
    }

    .ob-about-v1__title {
/*         font-size: 24px; */
        margin-bottom: 22px;
    }

    .ob-about-v1__text p {
/*         font-size: 16px; */
        margin-bottom: 18px;
    }

    .ob-about-v1__bouquet {
        max-width: 320px;
        margin-top: 22px;
    }

    .ob-about-v1__right {
        padding-bottom: 0px;
    }

    .ob-about-v1__card {
        padding: 16px 16px 14px 16px;
    }

    .ob-about-v1__card-title {
/*         font-size: 17px; */
    }

    .ob-about-v1__list li,
    .ob-about-v1__card-text {
/*         font-size: 15px; */
    }

    .ob-about-v1__bg {
        width: 140px;
    }
}

/* ===================== 991 ===================== */

@media (max-width: 991px) {
    .ob-about-v1__wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ob-about-v1__box {
        border-radius: 16px;
    }

    .ob-about-v1__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    padding: 28px 22px 22px 22px;
    }

    .ob-about-v1__title,
    .ob-about-v1__text {
        max-width: 100%;
    }

    .ob-about-v1__bouquet {
        max-width: 280px;
        margin-top: 20px;
    }

    .ob-about-v1__right {
        padding-top: 0;
        padding-bottom: 0px;
    }

    .ob-about-v1__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .ob-about-v1__card--education,
    .ob-about-v1__card--qualification,
    .ob-about-v1__card--experience,
    .ob-about-v1__card--facts,
    .ob-about-v1__card--personal {
        grid-column: auto;
    }

    .ob-about-v1__bg {
        width: 120px;
    }

    .ob-about-v1__bg img {
        opacity: 0.28;
    }
}

/* ===================== 767 ===================== */

@media (max-width: 767px) {
    .ob-about-v1__wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ob-about-v1__box {
        border-radius: 14px;
    }

    .ob-about-v1__inner {
        gap: 22px;
    padding: 28px 22px 22px 22px;
    }

    .ob-about-v1__eyebrow {
        margin-bottom: 10px;
/*         font-size: 11px; */
/*         letter-spacing: 0.24em; */
    }

    .ob-about-v1__title {
/*         font-size: 19px; */
/*         line-height: 1.4; */
        margin-bottom: 18px;
    }

    .ob-about-v1__text p {
/*         font-size: 15px; */
/*         line-height: 1.56; */
        margin-bottom: 14px;
    }

    .ob-about-v1__bouquet {
        max-width: 220px;
        margin-top: 18px;
    }

    .ob-about-v1__right {
        padding-right: 0;
        padding-bottom: 0px;
    }


    .ob-about-v1__card {
        padding: 14px 12px 14px 12px;
        border-radius: 14px;
    }

    .ob-about-v1__card-head {
        gap: 10px;
        margin-bottom: 14px;
    }

    .ob-about-v1__icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        border-radius: 9px;
    }

    .ob-about-v1__icon img {
        width: 18px;
        height: 18px;
    }

    .ob-about-v1__card-title {
/*         font-size: 16px; */
        padding-top: 3px;
    }

    .ob-about-v1__list li,
    .ob-about-v1__card-text {
/*         font-size: 14px; */
/*         line-height: 1.55; */
    }

    .ob-about-v1__list li {
        margin-bottom: 10px;
        padding-left: 14px;
    }

    .ob-about-v1__list li::before {
        top: 9px;
        width: 3px;
        height: 3px;
    }

    .ob-about-v1__bg {
        width: 92px;
    }

    .ob-about-v1__bg img {
        opacity: 0.18;
    }
}

/* ===================== 420 ===================== */

@media (max-width: 420px) {
    .ob-about-v1__wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ob-about-v1__inner {    padding: 28px 22px 22px 22px;
    }

    .ob-about-v1__title {
/*         font-size: 17px; */
    }

    .ob-about-v1__text p {
/*         font-size: 14px; */
    }

    .ob-about-v1__bouquet {
        max-width: 180px;
    }

    .ob-about-v1__card-title {
/*         font-size: 15px; */
    }

    .ob-about-v1__list li,
    .ob-about-v1__card-text {
/*         font-size: 13px; */
    }
}

/* =========================================================
   RESULTS BLOCK / OB-RESULTS-V1
========================================================= */

.ob-results-v1 {
    width: 100%;
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 0;
}

.ob-results-v1,
.ob-results-v1 * {
    box-sizing: border-box;
}

.ob-results-v1__wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.ob-results-v1__box {
    width: 100%;
    border: 1px solid #9d978d;
    border-radius: 18px;
    background: linear-gradient(180deg, #f5f1ec 0%, #ece6df 100%);
    padding: 34px 36px 36px 36px;
}

.ob-results-v1__eyebrow {
    margin: 0 0 28px 0;
    font-family: 'Medium';
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #575249;
}

.ob-results-v1__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    align-items: start;
}

.ob-results-v1__item {
    position: relative;
    padding: 0 12px;
    text-align: center;
    min-width: 0;
}

.ob-results-v1__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: 132px;
    background: rgba(157, 151, 141, 0.28);
}

.ob-results-v1__icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.ob-results-v1__icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #ece6df;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ob-results-v1__icon img {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.ob-results-v1__text {
    margin: 0 auto;
    max-width: 200px;
    font-family: 'Regular';
    font-size: 15px;
    line-height: 1.3;
    color: #403b35;
}

/* ===================== 1360 ===================== */

@media (max-width: 1360px) {
    .ob-results-v1__wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ob-results-v1__box {
        padding: 28px 20px 24px 20px;
    }

    .ob-results-v1__item {
        padding: 0 16px;
    }

    .ob-results-v1__text {
/*         font-size: 15px; */
        max-width: 180px;
    }
}

/* ===================== 1200 ===================== */

@media (max-width: 1200px) {
    .ob-results-v1__wrap {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ob-results-v1__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 28px;
    }

    .ob-results-v1__item {
        padding: 0 20px;
    }

    .ob-results-v1__item::after {
        display: none;
    }

    .ob-results-v1__item:nth-child(1),
    .ob-results-v1__item:nth-child(2),
    .ob-results-v1__item:nth-child(4),
    .ob-results-v1__item:nth-child(5) {
        border-right: 1px solid rgba(157, 151, 141, 0.28);
    }

    .ob-results-v1__text {
        max-width: 220px;
    }
}

/* ===================== 991 ===================== */

@media (max-width: 991px) {
    .ob-results-v1__wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ob-results-v1__box {    padding: 28px 22px 22px 22px;
        border-radius: 16px;
    }

    .ob-results-v1__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 24px;
    }

    .ob-results-v1__item {
        padding: 0 18px;
    }

    .ob-results-v1__item:nth-child(1),
    .ob-results-v1__item:nth-child(3),
    .ob-results-v1__item:nth-child(5) {
        border-right: 1px solid rgba(157, 151, 141, 0.28);
    }

    .ob-results-v1__item:nth-child(2),
    .ob-results-v1__item:nth-child(4) {
        border-right: none;
    }
}

/* ===================== 767 ===================== */

@media (max-width: 767px) {
    .ob-results-v1__wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ob-results-v1__box {    padding: 28px 22px 22px 22px;
        border-radius: 14px;
    }

    .ob-results-v1__eyebrow {
        margin-bottom: 14px;
/*         font-size: 11px; */
/*         letter-spacing: 0.24em; */
    }

    .ob-results-v1__grid {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .ob-results-v1__item {
        padding: 0;
        border-right: none !important;
    }

    .ob-results-v1__item:not(:last-child) {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(157, 151, 141, 0.24);
    }

    .ob-results-v1__icon-wrap {
        margin-bottom: 14px;
    }

    .ob-results-v1__icon {
        width: 64px;
        height: 64px;
    }

    .ob-results-v1__icon img {
        width: 32px;
        height: 32px;
    }

    .ob-results-v1__text {
        max-width: 100%;
/*         font-size: 15px; */
/*         line-height: 1.45; */
    }
}

/* ===================== 420 ===================== */

@media (max-width: 420px) {
    .ob-results-v1__wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ob-results-v1__box {    padding: 28px 22px 22px 22px;
    }

    .ob-results-v1__icon {
        width: 58px;
        height: 58px;
    }

    .ob-results-v1__icon img {
        width: 28px;
        height: 28px;
    }

    .ob-results-v1__text {
/*         font-size: 14px; */
    }
}



/* =========================================================
   REVIEWS BLOCK / OB-REVIEWS-V2
========================================================= */

.ob-reviews-v2 {
    width: 100%;
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 0;
}

.ob-reviews-v2,
.ob-reviews-v2 * {
    box-sizing: border-box;
}

.ob-reviews-v2__wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.ob-reviews-v2__box {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid #9d978d;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7f4f0 0%, #f2eee9 45%, #ebe6e0 75%, #e6e1db 100%);
    padding: 34px 28px 28px 28px;
}

.ob-reviews-v2__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 160px;
    background-image: url('/wp-content/uploads/4422d41c-afe2-481b-867a-926e74781999.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.30;
    pointer-events: none;
    z-index: 1;
}

.ob-reviews-v2__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.ob-reviews-v2__eyebrow {
    margin: 0 0 14px 0;
    font-family: 'Medium';
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #575249;
}

.ob-reviews-v2__title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-family: 'SemiBold';
    font-size: 33px;
    line-height: 1.18;
    color: #2b2723;
}

.ob-reviews-v2__title-leaf {
    display: inline-flex;
    width: 18px;
    height: 18px;
    transform: translateY(2px);
}

.ob-reviews-v2__title-leaf img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ob-reviews-v2__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    padding-top: 6px;
}

.ob-reviews-v2__arrow {
    width: 52px;
    height: 52px;
    border: 1px solid #c8c1b5;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8e877b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ob-reviews-v2__arrow:hover {
    background: rgba(255, 255, 255, 0.72);
    color: #6f7757;
}

.ob-reviews-v2__arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

.ob-reviews-v2__arrow span {
    display: block;
    font-family: 'Light';
    font-size: 28px;
    line-height: 1;
}

.ob-reviews-v2__slider {
    position: relative;
    z-index: 2;
}

.ob-reviews-v2__viewport {
    overflow: hidden;
    width: 100%;
}

.ob-reviews-v2__track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.ob-reviews-v2__page {
    flex: 0 0 100%;
    width: 100%;
}

.ob-reviews-v2__items {
   display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.ob-reviews-v2__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.ob-reviews-v2__card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 980px);
    max-width: 980px;
    text-decoration: none;
}

.ob-reviews-v2__card img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    object-position: center center;
    border-radius: 18px;
    box-shadow:
        0 0 0 1px rgba(180, 171, 158, 0.58),
        0 8px 24px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.ob-reviews-v2__viewport {
    min-height: 1px;
}
.ob-reviews-v2__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.ob-reviews-v2__dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: #d0cac2;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.ob-reviews-v2__dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #7c8263;
}

/* ===================== 1360 ===================== */

@media (max-width: 1360px) {
    .ob-reviews-v2__wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ob-reviews-v2__title {
/*         font-size: 30px; */
    }
}

/* ===================== 1200 ===================== */

@media (max-width: 1200px) {
    .ob-reviews-v2__wrap {
        padding-left: 22px;
        padding-right: 22px;
    }


  
}

/* ===================== 991 ===================== */

@media (max-width: 991px) {
    .ob-reviews-v2__wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ob-reviews-v2__box {
        padding: 28px 22px 22px 22px;
        border-radius: 16px;
    }

    .ob-reviews-v2__title {
/*         font-size: 28px; */
    }

    .ob-reviews-v2__bg {
        width: 120px;
        opacity: 0.22;
    }

}

/* ===================== 767 ===================== */

@media (max-width: 767px) {
    .ob-reviews-v2__wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ob-reviews-v2__box {

        border-radius: 14px;
    }

    .ob-reviews-v2__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 18px;
    }

    .ob-reviews-v2__eyebrow {
        margin-bottom: 10px;
/*         font-size: 11px; */
/*         letter-spacing: 0.24em; */
    }

    .ob-reviews-v2__title {
/*         font-size: 24px; */
/*         line-height: 1.15; */
    }

    .ob-reviews-v2__nav {
        width: 100%;
        justify-content: flex-end;
        padding-top: 0;
    }

    .ob-reviews-v2__arrow {
        width: 44px;
        height: 44px;
    }

    .ob-reviews-v2__arrow span {
/*         font-size: 24px; */
    }




    .ob-reviews-v2__dots {
        margin-top: 22px;
        gap: 12px;
    }

    .ob-reviews-v2__dot {
        width: 10px;
        height: 10px;
    }

    .ob-reviews-v2__dot.is-active {
        width: 24px;
    }
}

/* ===================== 420 ===================== */

@media (max-width: 420px) {
    .ob-reviews-v2__wrap {
        padding-left: 10px;
        padding-right: 10px;
    }



    .ob-reviews-v2__title {
/*         font-size: 21px; */
    }

    .ob-reviews-v2__card img {
        max-width: min(100%, 280px);
        max-height: 340px;
    }
}

/* =========================================================
   VIDEO BLOCK / OB-VIDEO-V1
========================================================= */

.ob-video-v1 {
    width: 100%;
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 0;
}

.ob-video-v1,
.ob-video-v1 * {
    box-sizing: border-box;
}

.ob-video-v1__wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.ob-video-v1__box {
    width: 100%;
    border: 1px solid #9d978d;
    border-radius: 18px;
    background:
radial-gradient(circle at 30% 20%, #f1eee8 0%, #e7e4dc 34%, #d5d7ca 72%, #c7ccbd 100%);
    padding: 34px 36px 36px 36px;
}

.ob-video-v1__head {
    margin-bottom: 26px;
}

.ob-video-v1__eyebrow {
    margin: 0 0 14px 0;
    font-family: 'Medium';
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #575249;
}

.ob-video-v1__title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-family: 'SemiBold';
    font-size: 33px;
    line-height: 1.18;
    color: #2b2723;
}

.ob-video-v1__title-leaf {
    display: inline-flex;
    width: 18px;
    height: 18px;
    transform: translateY(4px);
}

.ob-video-v1__title-leaf img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ob-video-v1__player {
    width: 100%;
}

.ob-video-v1__frame {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #d9d1c7;
    box-shadow:
        0 0 0 1px rgba(180, 171, 158, 0.55),
        0 8px 24px rgba(0, 0, 0, 0.05);
}

.ob-video-v1__frame iframe,
.ob-video-v1__frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===================== 1360 ===================== */

@media (max-width: 1360px) {
    .ob-video-v1__wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ob-video-v1__box {
        padding: 30px 24px 34px 24px;
    }

    .ob-video-v1__title {
/*         font-size: 46px; */
    }
}

/* ===================== 1200 ===================== */

@media (max-width: 1200px) {
    .ob-video-v1__wrap {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ob-video-v1__box {    padding: 28px 22px 22px 22px;
    }

    .ob-video-v1__title {
/*         font-size: 40px; */
    }
}

/* ===================== 991 ===================== */

@media (max-width: 991px) {
    .ob-video-v1__wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ob-video-v1__box {    padding: 28px 22px 22px 22px;
        border-radius: 16px;
    }

    .ob-video-v1__head {
        margin-bottom: 20px;
    }

    .ob-video-v1__title {
/*         font-size: 34px; */
    }

    .ob-video-v1__frame {
        border-radius: 16px;
    }
}

/* ===================== 767 ===================== */

@media (max-width: 767px) {
    .ob-video-v1__wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ob-video-v1__box {    padding: 28px 22px 22px 22px;
        border-radius: 14px;
    }

    .ob-video-v1__head {
        margin-bottom: 16px;
    }

    .ob-video-v1__eyebrow {
        margin-bottom: 10px;
/*         font-size: 11px; */
/*         letter-spacing: 0.24em; */
    }

    .ob-video-v1__title {
/*         font-size: 26px; */
/*         line-height: 1.14; */
        gap: 10px;
    }

    .ob-video-v1__title-leaf {
        width: 15px;
        height: 15px;
        transform: translateY(2px);
    }

    .ob-video-v1__frame {
        border-radius: 14px;
    }
}

/* ===================== 420 ===================== */

@media (max-width: 420px) {
    .ob-video-v1__wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ob-video-v1__box {    padding: 28px 22px 22px 22px;
    }

    .ob-video-v1__title {
/*         font-size: 22px; */
    }
}

/* =========================================================
   FINAL CTA BLOCK / OB-FINAL-CTA-V1
========================================================= */

.ob-final-cta-v1 {
    width: 100%;
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 25px;
}

.ob-final-cta-v1,
.ob-final-cta-v1 * {
    box-sizing: border-box;
}

.ob-final-cta-v1__wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.ob-final-cta-v1__box {
    width: 100%;
    border: 1px solid #9d978d;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7f4f0 0%, #f2eee9 45%, #ebe6e0 75%, #e6e1db 100%);
    overflow: hidden;
}

.ob-final-cta-v1__inner {
    display: grid;
    grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: stretch;
    padding: 34px 36px 36px 36px;
}

.ob-final-cta-v1__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 26px 18px 26px 24px;
    min-width: 0;
}

.ob-final-cta-v1__eyebrow {
    margin: 0 0 34px 0;
    font-family: 'Medium';
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #6b665d;
}

.ob-final-cta-v1__title {
    margin: 0 0 34px 0;
    font-family: 'UniSans';
    font-size: 76px;
    line-height: 1;
    color: #2a2622;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.ob-final-cta-v1__text {
    max-width: 540px;
    margin-bottom: 36px;
}

.ob-final-cta-v1__text p {
    margin: 0 0 22px 0;
    font-family: 'Regular';
    font-size: 21px;
    line-height: 1.45;
    color: #4a453e;
}

.ob-final-cta-v1__text p:last-child {
    margin-bottom: 0;
}

.ob-final-cta-v1__btn {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 88px;
    border-radius: 14px;
    background: #7c8263;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 30px 18px 30px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ob-final-cta-v1__btn:hover {
    background: #6f7757;
}

.ob-final-cta-v1__btn-text {
    font-size: 22px;
    line-height: 1.35;
    color: #ffffff;
}

.ob-final-cta-v1__btn-arrow {
    flex: 0 0 auto;
    font-family: 'Light';
    font-size: 42px;
    line-height: 1;
    color: #ffffff;
    transform: translateY(-1px);
}

.ob-final-cta-v1__visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 0;
}

.ob-final-cta-v1__image-wrap {
    width: 100%;
    height: 100%;
    min-height: 690px;
    border-radius: 0;
    overflow: hidden;
    background: #d9d1c7;
    display: flex;
}

.ob-final-cta-v1__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ===================== 1360 ===================== */

@media (max-width: 1360px) {
    .ob-final-cta-v1__wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ob-final-cta-v1__inner {
        grid-template-columns: minmax(380px, 1fr) minmax(300px, 0.88fr);
        gap: 22px;
        padding: 18px 18px 18px 18px;
    }

    .ob-final-cta-v1__content {
        padding: 22px 12px 22px 18px;
    }

    .ob-final-cta-v1__title {
 font-size: 67px; 
    }

    .ob-final-cta-v1__text p {
/*         font-size: 21px; */
    }

    .ob-final-cta-v1__btn {
        max-width: 580px;
        min-height: 80px;
    }

    .ob-final-cta-v1__btn-text {
/*         font-size: 20px; */
    }

    .ob-final-cta-v1__image-wrap {
        min-height: 620px;
    }
}

/* ===================== 1200 ===================== */

@media (max-width: 1200px) {
    .ob-final-cta-v1__wrap {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ob-final-cta-v1__inner {
        grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.82fr);
        gap: 18px;
    padding: 28px 22px 22px 22px;
    }

    .ob-final-cta-v1__content {
        padding: 16px 8px 16px 12px;
    }

    .ob-final-cta-v1__eyebrow {
        margin-bottom: 18px;
    }

    .ob-final-cta-v1__title {
        margin-bottom: 24px;
 font-size: 60px;
    }

    .ob-final-cta-v1__text {
        margin-bottom: 28px;
    }

    .ob-final-cta-v1__text p {
/*         font-size: 21px; */
        margin-bottom: 18px;
    }

    .ob-final-cta-v1__btn {
        max-width: 500px;
        min-height: 72px;
        padding: 16px 22px;
    }

    .ob-final-cta-v1__btn-text {
/*         font-size: 18px; */
    }

    .ob-final-cta-v1__btn-arrow {
/*         font-size: 36px; */
    }

    .ob-final-cta-v1__image-wrap {
        min-height: 540px;
    }
}

/* ===================== 991 ===================== */

@media (max-width: 991px) {
    .ob-final-cta-v1__wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ob-final-cta-v1__box {
        border-radius: 16px;
    }

    .ob-final-cta-v1__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    padding: 28px 22px 22px 22px;
    }

    .ob-final-cta-v1__content {
        padding: 6px 4px 0 4px;
    }

    .ob-final-cta-v1__title {
       font-size: 80px; 
        margin-bottom: 22px;
    }

    .ob-final-cta-v1__text {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .ob-final-cta-v1__text p {
/*         font-size: 21px; */
    }

    .ob-final-cta-v1__btn {
        max-width: 100%;
    }

    .ob-final-cta-v1__visual {
        width: 100%;
    }

    .ob-final-cta-v1__image-wrap {
        min-height: 620px;
        width: 100%;
        border-radius: 14px;
    }
}

/* ===================== 767 ===================== */

@media (max-width: 767px) {
    .ob-final-cta-v1__wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ob-final-cta-v1 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .ob-final-cta-v1__box {
        border-radius: 14px;
    }

    .ob-final-cta-v1__inner {
        gap: 16px;
    padding: 28px 22px 22px 22px;
    }

    .ob-final-cta-v1__content {
        padding: 4px 2px 0 2px;
    }

    .ob-final-cta-v1__eyebrow {
        margin-bottom: 14px;
/*         font-size: 11px; */
/*         letter-spacing: 0.24em; */
    }

    .ob-final-cta-v1__title {
font-size: 48px;
/*         line-height: 1; */
        margin-bottom: 18px;
    }

    .ob-final-cta-v1__text {
        margin-bottom: 20px;
    }

    .ob-final-cta-v1__text p {
/*         font-size: 21px; */
/*         line-height: 1.45; */
        margin-bottom: 14px;
    }

    .ob-final-cta-v1__btn {
        min-height: 58px;
        border-radius: 12px;
        gap: 12px;
    }

    .ob-final-cta-v1__btn-text {
 font-size: 15px; 
   line-height: 1.35; 
    }

    .ob-final-cta-v1__btn-arrow {
  font-size: 28px; 
    }

    .ob-final-cta-v1__image-wrap {
        min-height: 460px;
        border-radius: 12px;
    }
}

/* ===================== 420 ===================== */

@media (max-width: 420px) {
    .ob-final-cta-v1__wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ob-final-cta-v1__inner {    padding: 28px 22px 22px 22px;
    }

    .ob-final-cta-v1__title {
/*         font-size: 99px; */
    }

    .ob-final-cta-v1__text p {
/*         font-size: 21px; */
    }

    .ob-final-cta-v1__image-wrap {
        min-height: 380px;
    }
}
/* =========================================================
   OLGA MODAL — FIXED
========================================================= */

.olga-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.olga-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.olga-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(36, 34, 31, 0.56);
    backdrop-filter: blur(3px);
}

.olga-modal__viewport {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.olga-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: auto 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #ece7e1 0%, #e5e0d9 100%);
    box-shadow: 0 24px 80px rgba(21, 18, 15, 0.22);
    overflow: hidden;
    padding: 70px 64px 54px 64px;
    min-height: auto;
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    overflow-x: hidden;
}

.olga-modal__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.olga-modal__close {
    position: absolute;
    top: 34px;
    right: 34px;
    z-index: 4;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(130, 122, 111, 0.45);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.olga-modal__close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.03);
}

.olga-modal__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1.5px;
    background: #8e877d;
    transform-origin: center;
}

.olga-modal__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.olga-modal__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.olga-modal__leaf {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 360px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.34;
    background-image: url('/wp-content/uploads/4422d41c-afe2-481b-867a-926e74781999.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
}

.olga-modal__eyebrow {
    margin-bottom: 24px;
    font-family: 'Medium';
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #565046;
}

.olga-modal__title {
        margin: 0 0 20px 0;
    font-family: 'Regular';
    font-size: 28px;
    line-height: 1.3;
    color: #3f3b36;
    letter-spacing: -0.02em;
}

.olga-modal__subtitle {
    margin-bottom: 20px;
    font-family: 'Regular';
    font-size: 18px;
    line-height: 1.6;
    color: #4e4942;
}

.olga-modal__field {
    margin-bottom: 18px;
}

.olga-modal__input {
   width: 100%;
    border: 1px solid rgba(126, 119, 109, 0.45);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    outline: none;
    box-shadow: none;
    font-family: 'Light';
    font-size: 18px;
    line-height: 1.2;
    color: #45403a;
}

.olga-modal__input::placeholder {
    color: #8a847b;
    opacity: 1;
}

.olga-modal__input:focus {
    border-color: rgba(104, 113, 79, 0.85);
    background: rgba(255, 255, 255, 0.2);
}

.olga-modal__check {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.olga-modal__check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.olga-modal__check-box {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 8px;
    border: 1px solid rgba(126, 119, 109, 0.5);
    background: rgba(255, 255, 255, 0.16);
}

.olga-modal__check-input:checked + .olga-modal__check-box::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
    width: 10px;
    height: 16px;
    border-right: 2px solid #6c7357;
    border-bottom: 2px solid #6c7357;
    transform: rotate(45deg);
}

.olga-modal__check-text {
    font-family: 'Regular';
    font-size: 16px;
    line-height: 1.45;
    color: #4a453e;
}

.olga-modal__policy {
    max-width: 820px;
    margin-bottom: 34px;
    font-family: 'Regular';
    font-size: 14px;
    line-height: 1.75;
    color: #56514b;
}

.olga-modal__policy a {
    color: #56514b;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.olga-modal__submit {
    width: 100%;
    max-width: 820px;
    /* min-height: 96px; */
    border: none;
    border-radius: 18px;
    background: #6f775c;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.olga-modal__submit:hover {
    opacity: 0.94;
    transform: translateY(-1px);
    background: #677051;
}

.olga-modal__submit-text {
    font-size: 18px;
    line-height: 1.2;
}

.olga-modal__submit-arrow {
    font-family: 'Regular';
    font-size: 42px;
    line-height: 1;
    transform: translateY(-1px);
}

/* =========================================================
   1200
========================================================= */

@media (max-width: 1200px) {
    .olga-modal__dialog {
        max-width: 980px;
        padding: 60px 46px 42px 46px;
        max-height: calc(100dvh - 40px);
    }

    .olga-modal__leaf {
        width: 300px;
    }

    .olga-modal__title {
/*         font-size: 58px; */
    }

    .olga-modal__subtitle {
/*         font-size: 20px; */
    }

    .olga-modal__input {
        height: 78px;
/*         font-size: 20px; */
    }

    .olga-modal__submit {
        min-height: 84px;
    }

    .olga-modal__submit-text {
/*         font-size: 22px; */
    }
}

/* =========================================================
   991
========================================================= */

@media (max-width: 991px) {
    .olga-modal__viewport {
        padding: 18px;
    }

    .olga-modal__dialog {
        max-width: 100%;
        padding: 48px 28px 30px 28px;
        border-radius: 18px;
        max-height: calc(100dvh - 36px);
    }

    .olga-modal__content {
        max-width: 100%;
    }

    .olga-modal__leaf {
        width: 220px;
        opacity: 0.24;
    }

    .olga-modal__close {
        top: 22px;
        right: 22px;
        width: 52px;
        height: 52px;
    }

    .olga-modal__eyebrow {
        margin-bottom: 18px;
/*         font-size: 14px; */
    }

    .olga-modal__title {
/*         font-size: 44px; */
/*         line-height: 1.08; */
        margin-bottom: 22px;
        padding-right: 52px;
    }

    .olga-modal__subtitle {
/*         font-size: 18px; */
/*         line-height: 1.55; */
        margin-bottom: 26px;
        max-width: 640px;
    }

    .olga-modal__input {
        height: 68px;
        border-radius: 14px;
        padding: 0 22px;
/*         font-size: 18px; */
    }

    .olga-modal__check {
        gap: 12px;
        margin-bottom: 16px;
        align-items: flex-start;
    }

    .olga-modal__check-box {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        border-radius: 7px;
    }

    .olga-modal__check-input:checked + .olga-modal__check-box::before {
        left: 8px;
        top: 4px;
        width: 8px;
        height: 13px;
    }

    .olga-modal__check-text {
/*         font-size: 16px; */
    }

    .olga-modal__policy {
/*         font-size: 15px; */
/*         line-height: 1.65; */
        margin-bottom: 24px;
    }

    .olga-modal__submit {
        min-height: 72px;
        border-radius: 14px;
    }

    .olga-modal__submit-text {
/*         font-size: 20px; */
    }

    .olga-modal__submit-arrow {
/*         font-size: 34px; */
    }
}

/* =========================================================
   640
========================================================= */

@media (max-width: 640px) {
    .olga-modal__viewport {
        padding: 10px;
    }

    .olga-modal__dialog {
        padding: 44px 22px 22px 22px;
        border-radius: 16px;
        max-height: calc(100dvh - 20px);
    }

    .olga-modal__close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .olga-modal__close span {
        width: 18px;
    }

    .olga-modal__leaf {
        width: 140px;
        opacity: 0.17;
    }

    .olga-modal__eyebrow {
/*         font-size: 12px; */
/*         letter-spacing: 0.22em; */
        margin-bottom: 14px;
    }

    .olga-modal__title {
/*         font-size: 30px; */
/*         line-height: 1.12; */
        margin-bottom: 18px;
        padding-right: 34px;
    }

    .olga-modal__subtitle {
/*         font-size: 15px; */
/*         line-height: 1.55; */
        margin-bottom: 18px;
    }

    .olga-modal__field {
        margin-bottom: 12px;
    }

    .olga-modal__input {
        height: 58px;
/*         font-size: 16px; */
        padding: 0 16px;
    }

    .olga-modal__check {
        gap: 10px;
        margin-top: 6px;
        margin-bottom: 14px;
    }

    .olga-modal__check-text {
/*         font-size: 14px; */
/*         line-height: 1.5; */
    }

    .olga-modal__policy {
/*         font-size: 13px; */
/*         line-height: 1.6; */
        margin-bottom: 18px;
    }

    .olga-modal__submit {
        min-height: 58px;
        padding: 0 18px;
    }

    .olga-modal__submit-text {
/*         font-size: 17px; */
    }

    .olga-modal__submit-arrow {
/*         font-size: 28px; */
    }
}

@media (max-width: 1400px) {

.ob-about-v1__inner {
grid-template-columns: minmax(390px, 0.85fr) minmax(840px, 1.15fr);
        gap: 14px;
}
}

@media (max-width: 1330px) {
.ob-hero__person-wrap {
    left: 0px;
    height: 110%;
}

.ob-about-v1__card--education, .ob-about-v1__card--qualification, .ob-about-v1__card--experience {
    min-height: 1px;
}

.ob-hero__title-line {
    font-size: 80px;
}

.ob-about-v1__inner {
grid-template-columns: minmax(640px, 0.85fr) minmax(40px, 1.15fr);
        gap: 24px;
}

.ob-about-v1__text
 {
    max-width: 90%;
}

.ob-hero__buttons {
    display: block;
}

.ob-about-v1__bouquet {
    position: absolute;
    top: auto;
    bottom: 0px;
    max-width: 850px;
}

.ob-hero__btn--primary {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
}

.ob-hero__btn--secondary {
    width: 100%;
}

    .ob-hero__stats {
        /* width: 215px; */
        top: auto;
        bottom: 42px;
        right: 0;
        z-index: 10;
        /* padding: 22px 20px; */
    }

    .ob-about-v1__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        position: relative;
    }

    .ob-about-v1__card--education, .ob-about-v1__card--qualification, .ob-about-v1__card--experience, .ob-about-v1__card--facts, .ob-about-v1__card--personal
 {
        grid-column: auto;
    }
}

@media (max-width: 1210px) {
.ob-hero__title-line
 {
        font-size: 67px;
    }

.ob-services-v1__box
 {
padding: 28px 22px 22px 22px;
	}

.ob-about-v1__inner {
    display: block;
}

}



@media (max-width: 991px) {
.ob-services-v1__card--one .ob-services-v1__card-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8)), url(/wp-content/uploads/chatgpt-image-16-apr.-2026-g.-13_46_55.png);
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.ob-services-v1__card--two .ob-services-v1__card-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8)), url(/wp-content/uploads/e5df81b7-4a71-4b0e-86f0-8d911e9138df.png);
    background-position: right bottom;
    background-size: auto 95%;
    background-repeat: no-repeat;
}

.ob-services-v1__card--three .ob-services-v1__card-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8)), url(/wp-content/uploads/f2f1130f-ed39-4da5-b599-94615a5ae977.png);
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
}


}






@media (max-width: 767px) {
    
}


/* =========================================================
   OLGA COOKIE NOTICE
========================================================= */

.olga-cookie {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    max-width: 1180px;
    margin: 0 auto;
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 22px 24px;
    border: 1px solid rgba(125, 119, 109, 0.34);
    border-radius: 20px;
    background: linear-gradient(180deg, #ece7e1 0%, #e5e0d9 100%);
    box-shadow: 0 16px 44px rgba(29, 25, 20, 0.14);
    overflow: hidden;
}

.olga-cookie.is-visible {
    display: grid;
}

.olga-cookie__leaf {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 180px;
    height: 180px;
    background-image: url('');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.22;
    pointer-events: none;
}

.olga-cookie__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.olga-cookie__title {
    margin: 0 0 8px 0;
    font-family: 'Medium';
    font-size: 22px;
    line-height: 1.2;
    color: #312d28;
}

.olga-cookie__text {
    margin: 0;
    max-width: 820px;
    font-family: 'Regular';
    font-size: 15px;
    line-height: 1.65;
    color: #4f4942;
}

.olga-cookie__text a {
    color: #4f4942;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.olga-cookie__actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.olga-cookie__btn {
    min-width: 132px;
    min-height: 56px;
    padding: 0 26px;
    border: none;
    border-radius: 14px;
    background: #6f775c;
    color: #ffffff;
    font-family: 'Medium';
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.olga-cookie__btn:hover {
    background: #66704f;
    transform: translateY(-1px);
}

.olga-cookie__btn:active {
    transform: translateY(0);
}

/* =========================================================
   991
========================================================= */

@media (max-width: 991px) {
    .olga-cookie {
        left: 18px;
        right: 18px;
        bottom: 18px;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 18px 18px 18px;
        border-radius: 18px;
    }

    .olga-cookie__leaf {
        width: 130px;
        height: 130px;
        opacity: 0.18;
    }

    .olga-cookie__title {
        font-size: 20px;
    }

    .olga-cookie__text {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.58;
        padding-right: 24px;
    }

    .olga-cookie__actions {
        justify-content: flex-start;
    }

    .olga-cookie__btn {
        min-width: 124px;
        min-height: 52px;
        border-radius: 12px;
        font-size: 15px;
    }
}

/* =========================================================
   640
========================================================= */

@media (max-width: 640px) {
    .olga-cookie {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 16px 14px;
        border-radius: 16px;
        gap: 14px;
    }

    .olga-cookie__leaf {
        width: 92px;
        height: 92px;
        opacity: 0.14;
    }

    .olga-cookie__title {
        font-size: 18px;
    }

    .olga-cookie__text {
        font-size: 13px;
        line-height: 1.55;
        padding-right: 0;
    }

    .olga-cookie__btn {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        font-size: 15px;
    }
}

/* =========================================================
   OBEL TEXT PAGE (политика / инфо-страницы)
========================================================= */

.obelwrapper {
        max-width: 1430px;
    margin: 70px auto 0px;
    padding: 80px 24px 100px 24px;
    background: #ffffff;
}

/* =========================================================
   BREADCRUMBS
========================================================= */

.obelbreadcrumb {
    margin-bottom: 28px;
    font-family: 'Regular';
    font-size: 14px;
    line-height: 1.4;
    color: #8a847b;
}

.obelbreadcrumb a {
    color: #8a847b;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.obelbreadcrumb a:hover {
    opacity: 0.7;
}

/* =========================================================
   TEXT BASE
========================================================= */

.obelwrapper h1,
.obelwrapper h2,
.obelwrapper h3 {
    margin-top: 48px;
    margin-bottom: 18px;
    font-family: 'Regular';
    font-weight: normal;
    color: #2f2a25;
}

.obelwrapper h1 {
    margin-top: 0;
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.obelwrapper h2 {
    font-size: 30px;
    line-height: 1.25;
}

.obelwrapper h3 {
    font-size: 22px;
    line-height: 1.35;
}

/* =========================================================
   PARAGRAPHS
========================================================= */

.obelwrapper p {
    margin-bottom: 18px;
    font-family: 'Regular';
    font-size: 18px;
    line-height: 1.75;
    color: #4b453e;
}

/* =========================================================
   LISTS
========================================================= */

.obelwrapper ul,
.obelwrapper ol {
    margin: 18px 0 24px 0;
    padding-left: 22px;
}

.obelwrapper li {
    margin-bottom: 10px;
    font-family: 'Regular';
    font-size: 18px;
    line-height: 1.7;
    color: #4b453e;
}

/* Маркеры в стиле сайта */

.obelwrapper ul li::marker {
    color: #6f775c;
}

.obelwrapper ol li::marker {
    color: #6f775c;
}

/* =========================================================
   LINKS
========================================================= */

.obelwrapper a {
    color: #4b453e;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.obelwrapper a:hover {
    opacity: 0.7;
}

/* =========================================================
   STRONG / BOLD
========================================================= */

.obelwrapper strong {
    font-family: 'Medium';
    color: #2f2a25;
}

/* =========================================================
   SPACING FIXES
========================================================= */

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

.obelwrapper ul:last-child,
.obelwrapper ol:last-child {
    margin-bottom: 0;
}

/* =========================================================
   TABLE (если вдруг появится)
========================================================= */

.obelwrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
}

.obelwrapper th,
.obelwrapper td {
    padding: 12px 14px;
    border: 1px solid rgba(120, 112, 100, 0.2);
    text-align: left;
}

.obelwrapper th {
    background: #f4f1ec;
}

/* =========================================================
   991
========================================================= */

@media (max-width: 991px) {

    .obelwrapper {
        padding: 60px 20px 80px 20px;
    }

    .obelwrapper h1 {
        font-size: 34px;
    }

    .obelwrapper h2 {
        font-size: 26px;
    }

    .obelwrapper h3 {
        font-size: 20px;
    }

    .obelwrapper p,
    .obelwrapper li {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* =========================================================
   640
========================================================= */

@media (max-width: 640px) {

    .obelwrapper {
        padding: 40px 16px 60px 16px;
    }

    .obelwrapper h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .obelwrapper h2 {
        font-size: 22px;
    }

    .obelwrapper h3 {
        font-size: 18px;
    }

    .obelwrapper p,
    .obelwrapper li {
        font-size: 15px;
        line-height: 1.65;
    }

    .obelbreadcrumb {
        font-size: 13px;
    }
}