* {
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   margin: 0;
   font-family: 'Manrope', sans-serif;
   background: #16283A;
   color: #E8EAED;
   overflow-x: hidden;
}

::selection {
   background: #C39A5F;
   color: #16283A;
}

/* ---------- Утилиты ---------- */
.u-accent {
   color: #C39A5F;
}

.u-muted {
   color: #97A3B0;
}

.u-serif {
   font-family: 'Playfair Display', serif;
}

.eyebrow {
   font-family: 'Playfair Display', serif;
   font-style: italic;
   font-size: 18px;
   color: #C39A5F;
   margin-bottom: 10px;
}

.divider-gold {
   width: 64px;
   height: 2px;
   background: #C39A5F;
}

.divider-gold--center {
   margin: 0 auto;
}

/* ---------- Ссылки и кнопки ---------- */
.navlk {
   transition: color .25s ease;
}

.navlk:hover {
   color: #C39A5F;
}

.lk {
   transition: opacity .25s ease, color .25s ease;
}

.lk:hover {
   color: #C39A5F;
}

.btn-g {
   display: inline-block;
   background: linear-gradient(135deg, #D3AC72, #B5854A);
   color: #16283A;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: .5px;
   text-decoration: none;
   padding: 16px 32px;
   border-radius: 2px;
   border: none;
   cursor: pointer;
   font-family: inherit;
   transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-g:hover {
   transform: translateY(-2px);
   box-shadow: 0 14px 34px rgba(195, 154, 95, .34);
}

.btn-g--block {
   display: block;
   width: 100%;
   text-align: center;
}

.btn-g--compact {
   padding: 14px;
}

.btn-g--pill {
   border-radius: 100px;
}

.btn-o {
   display: inline-block;
   color: #C39A5F;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: .5px;
   text-decoration: none;
   border: 1px solid rgba(195, 154, 95, .5);
   padding: 13px 26px;
   border-radius: 2px;
   background: transparent;
   cursor: pointer;
   transition: background .25s ease, color .25s ease, border-color .25s ease;
   width: fit-content;
}

.btn-o:hover {
   background: #C39A5F;
   color: #16283A;
   border-color: #C39A5F;
}

.btn-o--sm {
   padding: 10px 20px;
   font-size: 13px;
}

.btn-o--icon {
   display: inline-flex;
   align-items: center;
   gap: 10px;
}

.btn-o--solid-dark {
   display: inline-block;
   background: #16283A;
   color: #E8EAED;
   border-color: #16283A;
   padding: 16px 34px;
}

.btn-o--outline-dark {
   display: inline-block;
   background: transparent;
   color: #16283A;
   border-color: rgba(22, 40, 58, .4);
   padding: 16px 34px;
}

.btn-o--pill {
   flex: 1;
   text-align: center;
   border-radius: 100px;
   padding: 13px;
}

.gnav {
   transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease;
}

.gnav:hover {
   background: #C39A5F;
   border-color: #C39A5F;
   color: #16283A;
}

.gnav:active {
   transform: scale(.94);
}

.gdot {
   transition: width .3s ease, background .3s ease;
   cursor: pointer;
}

.pulse {
   animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

   0%,
   100% {
      opacity: 1;
   }

   50% {
      opacity: .4;
   }
}

/* ---------- Шапка сайта ---------- */
.l-header {
   position: sticky;
   top: 0;
   z-index: 50;
   background: rgba(22, 40, 58, .9);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid rgba(195, 154, 95, .16);
}

.l-header__bar {
   max-width: 1280px;
   margin: 0 auto;
   padding: 18px 40px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
}

.l-header__logo {
   display: flex;
   align-items: center;
   gap: 12px;
   text-decoration: none;
   color: #E8EAED;
}

.l-header__logo-icon {
   flex-shrink: 0;
}

.l-header__logo-text-group {
   display: flex;
   flex-direction: column;
   line-height: 1;
}

.l-header__logo-title {
   font-family: 'Playfair Display', serif;
   font-size: 19px;
   font-weight: 600;
   letter-spacing: 3.4px;
}

.l-header__logo-sub {
   font-size: 8.5px;
   letter-spacing: 1.7px;
   color: #C39A5F;
   margin-top: 5px;
}

.l-header__nav {
   display: flex;
   align-items: center;
   gap: 32px;
}

.l-header__nav-link {
   font-size: 13px;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   text-decoration: none;
   color: #E8EAED;
   font-weight: 500;
}

.l-header__nav-link--active {
   color: #C39A5F;
   font-weight: 600;
}

.l-header__caret {
   font-size: 8px;
}

.l-header__divider {
   width: 1px;
   height: 22px;
   background: rgba(232, 234, 237, .18);
}

.l-header__lang {
   display: flex;
   align-items: center;
   gap: 7px;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: .5px;
}

.l-header__lang-item {
   color: rgba(232, 234, 237, .45);
   cursor: pointer;
}

.l-header__lang-item--active {
   color: #C39A5F;
}

.l-header__lang-sep {
   color: rgba(232, 234, 237, .3);
}

.l-header__phone {
   font-size: 13px;
   letter-spacing: .5px;
   padding: 10px 20px;
}

.l-header__mobile-actions {
   display: none;
   align-items: center;
   gap: 16px;
}

.l-header__phone-mobile {
   font-size: 13px;
   font-weight: 600;
   letter-spacing: .3px;
   color: #C39A5F;
   text-decoration: none;
   white-space: nowrap;
}

.r-mobile-menu__sub {
   padding-left: 18px !important;
   font-size: 14px !important;
   color: #9AA6B2 !important;
}

.r-mobile-menu__lang {
   display: flex;
   align-items: center;
   gap: 7px;
   padding: 18px 4px 4px;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: .5px;
}

.r-mobile-menu__lang-item {
   color: rgba(232, 234, 237, .45);
   text-decoration: none;
   cursor: pointer;
}

.r-mobile-menu__lang-item--active {
   color: #C39A5F;
}

.r-mobile-menu__lang-sep {
   color: rgba(232, 234, 237, .3);
}

.l-header__burger {
   background: none;
   border: 1px solid rgba(195, 154, 95, .5);
   border-radius: 4px;
   color: #C39A5F;
   cursor: pointer;
   width: 46px;
   height: 42px;
   align-items: center;
   justify-content: center;
   font-size: 20px;
}

.l-header__mobile-menu {
   display: none;
   flex-direction: column;
   padding: 6px 22px 16px;
   background: rgba(20, 32, 48, .98);
   border-top: 1px solid rgba(195, 154, 95, .16);
}

.r-mobile-menu a {
   padding: 13px 4px;
   font-size: 15px;
   text-decoration: none;
   color: #E8EAED;
   border-bottom: 1px solid rgba(195, 154, 95, .12);
   transition: color .2s ease;
}

.r-mobile-menu a:hover {
   color: #C39A5F;
}

.r-burger {
   display: none;
}

@media (min-width: 981px) {
   .r-mobile-menu {
      display: none !important;
   }
}

.nav-drop {
   position: relative;
}

.nav-drop-menu {
   position: absolute;
   top: 100%;
   left: 50%;
   transform: translateX(-50%) translateY(6px);
   padding-top: 16px;
   min-width: 250px;
   opacity: 0;
   visibility: hidden;
   transition: opacity .25s ease, transform .25s ease;
   z-index: 60;
}

.nav-drop:hover .nav-drop-menu {
   opacity: 1;
   visibility: visible;
   transform: translateX(-50%) translateY(0);
}

.nav-drop-inner {
   background: #16283A;
   border: 1px solid rgba(195, 154, 95, .25);
   border-radius: 12px;
   padding: 8px;
   box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
}

.nav-drop-inner a {
   display: block;
   padding: 12px 16px;
   border-radius: 8px;
   font-size: 13px;
   letter-spacing: normal;
   text-transform: none;
   color: #E8EAED;
   text-decoration: none;
   font-weight: 500;
   transition: background .2s ease, color .2s ease;
}

.nav-drop-inner a:hover {
   background: rgba(195, 154, 95, .12);
   color: #C39A5F;
}

/* ---------- Подвал сайта ---------- */
.l-footer {
   background: #101E2C;
   border-top: 1px solid rgba(195, 154, 95, .16);
}

.l-footer__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 78px 40px 36px;
}

.l-footer__grid {
   display: grid;
   grid-template-columns: 1.5fr .8fr 1.1fr .9fr;
   gap: 48px;
}

.l-footer__brand-top {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 20px;
}

.l-footer__brand-text-group {
   display: flex;
   flex-direction: column;
   line-height: 1;
}

.l-footer__brand-title {
   font-family: 'Playfair Display', serif;
   font-size: 17px;
   font-weight: 600;
   letter-spacing: 3px;
}

.l-footer__brand-sub {
   font-size: 8px;
   letter-spacing: 1.5px;
   color: #C39A5F;
   margin-top: 4px;
}

.l-footer__brand-text {
   font-size: 14px;
   line-height: 1.6;
   color: #8A97A5;
   margin: 0 0 22px;
   max-width: 270px;
}

.l-footer__contacts {
   display: grid;
   gap: 7px;
}

.l-footer__contact-phone {
   font-family: 'Playfair Display', serif;
   font-size: 18px;
   text-decoration: none;
   color: #E8EAED;
}

.l-footer__contact-email {
   font-size: 14px;
   text-decoration: none;
   color: #9AA6B2;
}

.l-footer__contact-addr {
   font-size: 14px;
   color: #8A97A5;
   line-height: 1.5;
}

.l-footer__col-title {
   font-size: 12px;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: #C39A5F;
   margin-bottom: 16px;
}

.l-footer__link {
   display: block;
   font-size: 14px;
   text-decoration: none;
   color: #9AA6B2;
   padding: 6px 0;
}

.l-footer__bottom {
   border-top: 1px solid rgba(195, 154, 95, .16);
   margin-top: 46px;
   padding-top: 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   flex-wrap: wrap;
}

.l-footer__copy {
   font-size: 13px;
   color: #6E7E8E;
}

.l-footer__legal {
   display: flex;
   gap: 24px;
}

.l-footer__legal-link {
   font-size: 13px;
   text-decoration: none;
   color: #6E7E8E;
}

/* ---------- Хлебные крошки ---------- */
.breadcrumb {
   font-size: 13px;
   color: #6E7E8E;
   margin-bottom: 34px;
}

.breadcrumb__link {
   color: #6E7E8E;
   text-decoration: none;
}

.breadcrumb__sep {
   margin: 0 8px;
}

/* ---------- Переиспользуемые фрагменты ---------- */
.icon-check {
   flex-shrink: 0;
   width: 26px;
   height: 26px;
   border: 1px solid #C39A5F;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #C39A5F;
   font-size: 13px;
   margin-top: 2px;
}

.checklist {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 18px 40px;
}

.checklist--narrow {
   max-width: 980px;
   margin: 0 auto;
}

.checklist__item {
   display: flex;
   align-items: flex-start;
   gap: 14px;
}

.checklist__item--divided {
   border-top: 1px solid rgba(195, 154, 95, .16);
   padding-top: 18px;
}

.checklist__text {
   font-size: 16px;
   line-height: 1.6;
   margin: 0;
   padding-top: 2px;
}

.dash-list {
   display: grid;
   gap: 16px;
}

.dash-list__item {
   display: flex;
   align-items: center;
   gap: 16px;
   border-bottom: 1px solid rgba(195, 154, 95, .18);
   padding-bottom: 16px;
}

.dash-list__marker {
   color: #C39A5F;
   font-size: 18px;
}

.dash-list__text {
   font-size: 16px;
   margin: 0;
}

.stat-tile {
   text-align: center;
   padding: 10px;
}

.stat-tile__icon {
   width: 56px;
   height: 56px;
   margin: 0 auto 16px;
   border: 1px solid rgba(195, 154, 95, .4);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #C39A5F;
   font-size: 20px;
}

.stat-tile__icon--sm {
   width: 52px;
   height: 52px;
   font-size: 18px;
}

.stat-tile__text {
   font-size: 14px;
   line-height: 1.55;
   margin: 0;
   color: #97A3B0;
}

.stage-card {
   background: #182C40;
   border: 1px solid rgba(195, 154, 95, .18);
   padding: 30px 26px;
   text-align: center;
}

.stage-card__num {
   font-family: 'Playfair Display', serif;
   font-size: 30px;
   color: #C39A5F;
   margin-bottom: 14px;
}

.stage-card__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 19px;
   margin: 0;
}

.stage-card--row {
   display: flex;
   align-items: center;
   gap: 20px;
   text-align: left;
   border-radius: 14px;
}

.stage-card--row .stage-card__num {
   font-size: 34px;
   font-weight: 600;
   line-height: 1;
   margin-bottom: 0;
}

.stage-card--row .stage-card__title {
   font-size: 17px;
   line-height: 1.3;
}

.rel {
   transition: border-color .25s ease, transform .25s ease;
   text-decoration: none;
   color: inherit;
   border: 1px solid rgba(195, 154, 95, .2);
   border-radius: 12px;
   padding: 28px 30px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   background: #182C40;
}

.rel:hover {
   border-color: rgba(195, 154, 95, .55);
   transform: translateY(-3px);
}

.rel__title {
   font-family: 'Playfair Display', serif;
   font-size: 22px;
}

.rel__arrow {
   color: #C39A5F;
   font-size: 20px;
}

.crow {
   transition: border-color .25s ease, background .25s ease;
   display: block;
   text-decoration: none;
   color: inherit;
   border: 1px solid rgba(195, 154, 95, .2);
   border-radius: 12px;
   padding: 22px 24px;
   background: #182C40;
}

.crow:hover {
   border-color: rgba(195, 154, 95, .55);
   background: #1B3350;
}

.crow__label {
   font-size: 12px;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: #C39A5F;
   margin-bottom: 8px;
   font-weight: 600;
}

.crow__value {
   font-family: 'Playfair Display', serif;
   font-size: 24px;
}

.crow__value--sm {
   font-size: 22px;
   line-height: 1.3;
}

.crow__note {
   font-size: 13px;
   color: #97A3B0;
   margin-top: 6px;
}

/* ---------- CTA-плашка (золотой градиент) ---------- */
.cta-band {
   color: #16283A;
   background: linear-gradient(135deg, #D3AC72, #B5854A);
}

.cta-band__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 70px 40px;
   text-align: center;
}

.cta-band__eyebrow {
   font-family: 'Playfair Display', serif;
   font-style: italic;
   font-size: 18px;
   margin-bottom: 12px;
   opacity: .7;
}

.cta-band__title {
   font-family: 'Playfair Display', serif;
   font-weight: 700;
   font-size: 36px;
   line-height: 1.2;
   margin: 0 0 14px;
}

.cta-band__text {
   font-size: 16px;
   line-height: 1.6;
   margin: 0 auto 30px;
   max-width: 560px;
   opacity: .85;
}

.cta-band__actions {
   display: inline-flex;
   gap: 14px;
   flex-wrap: wrap;
   justify-content: center;
}

.cta-band--services .cta-band__inner {
   padding: 90px 40px;
}

.cta-band--services .cta-band__title {
   font-size: clamp(28px, 3.6vw, 44px);
   margin: 0 auto 16px;
   max-width: 780px;
}

.cta-band--services .cta-band__text {
   font-size: 17px;
   max-width: 560px;
   margin: 0 auto 32px;
}

.cta-band--wide .cta-band__title {
   max-width: 720px;
   margin: 0 auto 14px;
}

.cta-band--wide.cta-band--tall .cta-band__inner {
   padding: 80px 40px;
}

.cta-band--narrowtext .cta-band__text {
   max-width: 600px;
}

/* ---------- FAQ ---------- */
.faq {
   max-width: 920px;
   margin: 0 auto;
   padding: 96px 40px;
}

.faq__head {
   margin-bottom: 50px;
}

.faq__title {
   font-size: 44px;
}

.faq__list {
   border-top: 1px solid rgba(195, 154, 95, .2);
}

.faq-item {
   border-bottom: 1px solid rgba(195, 154, 95, .2);
}

.faq-toggle {
   width: 100%;
   background: none;
   border: none;
   cursor: pointer;
   text-align: left;
   padding: 26px 0;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   font-family: inherit;
   color: #E8EAED;
}

.faq-toggle__q {
   font-family: 'Playfair Display', serif;
   font-size: 21px;
   font-weight: 500;
}

.faq-icon {
   font-size: 26px;
   font-weight: 300;
   color: #C39A5F;
   transition: transform .3s ease;
   flex-shrink: 0;
   display: inline-block;
}

.faq-panel {
   max-height: 0;
   overflow: hidden;
   transition: max-height .35s ease;
}

.faq-panel__text {
   font-size: 16px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0;
   padding: 0 0 28px;
   max-width: 700px;
}

.faq-panel__text--sm {
   max-width: 680px;
}

/* ---------- Форма ---------- */
.form {
   display: grid;
   gap: 18px;
}

.form__row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 14px;
}

.form__field {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.form__label {
   font-size: 12px;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: #8A97A5;
}

.form__input {
   background: #16283A;
   border: 1px solid rgba(195, 154, 95, .24);
   border-radius: 2px;
   padding: 14px 16px;
   color: #E8EAED;
   font-family: inherit;
   font-size: 15px;
   outline: none;
   width: 100%;
}

.form__input--rounded {
   border-radius: 8px;
}

.form__input--textarea {
   resize: none;
}

.form__disclaimer {
   font-size: 12px;
   color: #6E7E8E;
   margin: 0;
   line-height: 1.5;
}

.form__submit {
   margin-top: 6px;
}

.form__submit--pill {
   margin-top: 4px;
}

/* ============================================================
   ГЛАВНАЯ СТРАНИЦА (index.html)
   ============================================================ */
.home-hero {
   position: relative;
   overflow: hidden;
}

.home-hero__glow {
   position: absolute;
   top: -80px;
   right: -60px;
   width: 520px;
   height: 520px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(195, 154, 95, .10), transparent 68%);
   pointer-events: none;
}

.home-hero__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 96px 40px 90px;
   display: grid;
   grid-template-columns: minmax(320px, 1.05fr) minmax(300px, .95fr);
   gap: 50px;
   align-items: center;
   position: relative;
}

.home-hero__badge {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   padding: 7px 15px;
   border: 1px solid rgba(195, 154, 95, .4);
   border-radius: 100px;
   font-size: 12px;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   margin-bottom: 22px;
   color: #C39A5F;
}

.home-hero__badge-dot {
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: #C39A5F;
}

.home-hero__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: clamp(34px, 4vw, 54px);
   line-height: 1.1;
   letter-spacing: -.5px;
   margin: 0 0 22px;
   max-width: 100%;
}

.home-hero__text {
   font-size: 17px;
   line-height: 1.7;
   max-width: 100%;
   color: #97A3B0;
   margin: 0 0 30px;
}

.home-hero__actions {
   display: flex;
   align-items: center;
   gap: 22px;
   flex-wrap: wrap;
}

.home-hero__call {
   font-size: 14px;
   font-weight: 600;
   letter-spacing: .3px;
   text-decoration: none;
   color: #E8EAED;
   display: inline-flex;
   align-items: center;
   gap: 10px;
}

.home-hero__call-icon {
   width: 40px;
   height: 40px;
   border: 1px solid rgba(195, 154, 95, .5);
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: #C39A5F;
}

.home-hero__portrait {
   position: relative;
   height: 580px;
   min-width: 300px;
}

.home-hero__portrait-frame {
   position: absolute;
   top: 34px;
   right: 26px;
   width: 66%;
   max-width: 372px;
   height: 486px;
   border: 1.5px solid rgba(195, 154, 95, .55);
}

.home-hero__portrait-img {
   position: absolute;
   top: 0;
   right: 12%;
   width: 66%;
   max-width: 372px;
   height: 540px;
   object-fit: cover;
   object-position: 50% 18%;
   display: block;
   box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
}

.home-hero__badge-card {
   position: absolute;
   bottom: 6px;
   left: 0;
   display: flex;
   align-items: center;
   gap: 16px;
   background: #16283A;
   padding: 14px 22px 14px 14px;
   border: 1px solid rgba(195, 154, 95, .3);
   max-width: 90%;
}

.home-hero__badge-num {
   font-family: 'Playfair Display', serif;
   font-size: 62px;
   font-weight: 600;
   color: #C39A5F;
   line-height: .9;
}

.home-hero__badge-label {
   font-family: 'Playfair Display', serif;
   font-size: 20px;
   line-height: 1.15;
}

.trust {
   border-top: 1px solid rgba(195, 154, 95, .16);
   border-bottom: 1px solid rgba(195, 154, 95, .16);
   background: #142334;
}

.trust__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 24px 40px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px;
   flex-wrap: wrap;
}

.trust__label {
   font-size: 11px;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: #6E7E8E;
}

.trust__list {
   display: flex;
   align-items: center;
   gap: 44px;
   color: #9AA6B2;
   font-family: 'Playfair Display', serif;
   font-size: 17px;
   flex-wrap: wrap;
}

.section-head {
   text-align: center;
   margin-bottom: 56px;
}

.section-head__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 42px;
   margin: 0 0 18px;
}

/* ---------- SERVICES PREVIEW (карточки с фото) ---------- */
.services-preview {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.services-preview__head {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 30px;
   flex-wrap: wrap;
   margin-bottom: 46px;
}

.services-preview__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 42px;
   line-height: 1.14;
   margin: 0;
   max-width: 520px;
}

.services-preview__lead {
   font-size: 15px;
   line-height: 1.7;
   color: #97A3B0;
   max-width: 330px;
   margin: 0;
}

.services-preview__grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px;
}

.services-preview__card {
   text-decoration: none;
   color: inherit;
   border: 1px solid rgba(195, 154, 95, .22);
   background: #182C40;
   display: flex;
   flex-direction: column;
   overflow: hidden;
   transition: transform .4s cubic-bezier(.2, .8, .2, 1), border-color .4s ease;
}

.services-preview__card:hover {
   transform: translateY(-6px);
   border-color: rgba(195, 154, 95, .6);
}

.services-preview__card:hover .services-preview__card-img {
   transform: scale(1.07);
}

.services-preview__card:hover .services-preview__card-arrow {
   transform: translateX(6px);
}

.services-preview__card-media {
   position: relative;
   height: 290px;
   overflow: hidden;
}

.services-preview__card-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.services-preview__card-gradient {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(12, 24, 38, .62) 0%, rgba(14, 28, 44, .42) 34%, rgba(20, 35, 52, .94) 100%);
}

.services-preview__card-frame {
   position: absolute;
   inset: 14px;
   border: 1px solid rgba(195, 154, 95, .4);
   pointer-events: none;
}

.services-preview__card-num {
   position: absolute;
   top: 26px;
   left: 30px;
   font-family: 'Playfair Display', serif;
   font-size: 58px;
   font-weight: 700;
   color: #C39A5F;
   line-height: 1;
}

.services-preview__card-title {
   position: absolute;
   bottom: 28px;
   left: 30px;
   right: 30px;
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 26px;
   line-height: 1.24;
   margin: 0;
}

.services-preview__card-body {
   padding: 30px;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.services-preview__card-text {
   font-size: 15px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0 0 24px;
   flex: 1;
}

.services-preview__card-link {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   color: #C39A5F;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: .5px;
}

.services-preview__card-arrow {
   transition: transform .35s ease;
}

/* ---------- ABOUT PREVIEW (коллаж фото) ---------- */
.about-preview {
   background: #142334;
   overflow: hidden;
}

.about-preview__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.about-preview__head {
   text-align: center;
   margin-bottom: 52px;
}

.about-preview__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 42px;
   margin: 0 0 18px;
}

.about-preview__grid {
   position: relative;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 56px;
   align-items: center;
}

.about-preview__watermark {
   position: absolute;
   top: -104px;
   left: -14px;
   font-family: 'Playfair Display', serif;
   font-size: clamp(70px, 8vw, 116px);
   font-weight: 700;
   letter-spacing: 10px;
   line-height: 1;
   color: transparent;
   -webkit-text-stroke: 1px rgba(232, 234, 237, .09);
   white-space: nowrap;
   pointer-events: none;
   user-select: none;
}

.about-preview__content {
   position: relative;
}

.about-preview__subtitle {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.28;
   margin: 0 0 26px;
   max-width: 460px;
}

.about-preview__text {
   font-size: 15px;
   line-height: 1.8;
   color: #97A3B0;
   margin: 0 0 22px;
   max-width: 430px;
}

.about-preview__list {
   display: grid;
   gap: 12px;
   margin-bottom: 32px;
   max-width: 430px;
}

.about-preview__item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
}

.about-preview__item-marker {
   color: #C39A5F;
   font-size: 15px;
   line-height: 1.6;
}

.about-preview__item-text {
   font-size: 15px;
   line-height: 1.6;
   margin: 0;
   color: #B9C2CC;
}

.about-preview__collage {
   position: relative;
   min-height: 580px;
}

.about-preview__frame {
   position: absolute;
   border: 1px solid rgba(195, 154, 95, .45);
   padding: 14px;
}

.about-preview__frame img {
   width: 100%;
   object-fit: cover;
   display: block;
}

.about-preview__frame--lg {
   top: 0;
   right: 0;
   width: 86%;
}

.about-preview__frame--lg img {
   height: 546px;
}

.about-preview__frame--sm {
   bottom: 34px;
   left: -56px;
   width: 60%;
   padding: 12px;
   background: #142334;
}

.about-preview__frame--sm img {
   height: 350px;
}

@media (max-width: 980px) {
	.about-preview__frame--sm img {
		height: 500px;
	}
}

.stages {
   max-width: 1280px;
   margin: 0 auto;
   padding: 96px 40px;
}

.stages__title {
   max-width: 760px;
   margin-left: auto;
   margin-right: auto;
}

.stages__lead {
   font-size: 16px;
   line-height: 1.7;
   max-width: 620px;
   margin: 0 auto;
}

.stages__divider {
   margin-top: 26px;
}

.stages__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

.full-control {
   background: #142334;
}

.full-control__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 96px 40px;
}

.full-control__head {
   margin-bottom: 50px;
}

.special-cases {
   background: #101E2C;
}

.special-cases__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 96px 40px;
}

.special-cases__grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.special-cases__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.2;
   margin: 0 0 20px;
}

.special-cases__title--tight {
   margin: 0;
}

.special-cases__text {
   font-size: 15px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0;
}

.reputation {
   max-width: 1280px;
   margin: 0 auto;
   padding: 96px 40px;
}

.reputation__head {
   margin-bottom: 50px;
}

.reputation__title {
   max-width: 680px;
   margin-left: auto;
   margin-right: auto;
}

.reputation__lead {
   font-size: 16px;
   line-height: 1.7;
   max-width: 560px;
   margin: 0 auto;
}

.reputation__divider {
   margin-top: 26px;
}

.reputation__grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 18px;
}

.reviews {
   background: #142334;
}

.reviews__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 96px 40px;
}

.reviews__head {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 30px;
   flex-wrap: wrap;
   margin-bottom: 40px;
}

.reviews__rating {
   display: flex;
   align-items: center;
   gap: 22px;
   background: #182C40;
   border: 1px solid rgba(195, 154, 95, .2);
   padding: 22px 28px;
}

.reviews__rating-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 52px;
   height: 52px;
   background: #fff;
   border-radius: 50%;
}

.reviews__rating-title {
   font-size: 14px;
   font-weight: 600;
   margin-bottom: 3px;
   color: #E8EAED;
}

.reviews__rating-row {
   display: flex;
   align-items: center;
   gap: 10px;
}

.reviews__rating-score {
   font-family: 'Playfair Display', serif;
   font-size: 30px;
   font-weight: 700;
   line-height: 1;
   color: #C39A5F;
}

.reviews__rating-stars {
   color: #FBBC05;
   font-size: 18px;
   letter-spacing: 2px;
}

.reviews__rating-count {
   font-size: 12px;
   color: #6E7E8E;
   margin-top: 4px;
}

.reviews__headline {
   display: flex;
   align-items: flex-end;
   gap: 26px;
   flex: 1;
   justify-content: space-between;
   min-width: 340px;
}

.reviews__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 40px;
   line-height: 1.12;
   margin: 0;
   max-width: 420px;
}

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

.reviews__nav-btn {
   width: 52px;
   height: 52px;
   border: 1px solid rgba(195, 154, 95, .4);
   background: transparent;
   color: #C39A5F;
   cursor: pointer;
   font-size: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.reviews__viewport {
   overflow: hidden;
   margin: 0 -11px;
}

.reviews__track {
   display: flex;
   transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.reviews__slide {
   flex: 0 0 33.333%;
   min-width: 0;
   padding: 0 11px;
}

.reviews__card {
   background: #fff;
   border-radius: 4px;
   padding: 28px;
   height: 100%;
}

.reviews__card-head {
   display: flex;
   align-items: center;
   gap: 13px;
   margin-bottom: 16px;
}

.reviews__avatar {
   width: 46px;
   height: 46px;
   border-radius: 50%;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Playfair Display', serif;
   font-size: 20px;
   flex-shrink: 0;
}

.reviews__avatar--1 {
   background: #C39A5F;
}

.reviews__avatar--2 {
   background: #16283A;
}

.reviews__avatar--3 {
   background: #3B7A57;
}

.reviews__avatar--4 {
   background: #7A4FC4;
}

.reviews__avatar--5 {
   background: #B5854A;
}

.reviews__avatar--6 {
   background: #C4453B;
}

.reviews__author {
   flex: 1;
   min-width: 0;
}

.reviews__author-name {
   font-size: 15px;
   font-weight: 700;
   color: #16283A;
}

.reviews__author-count {
   font-size: 12px;
   color: #7A8794;
}

.reviews__stars-row {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 14px;
}

.reviews__stars {
   color: #FBBC05;
   font-size: 16px;
   letter-spacing: 1px;
}

.reviews__date {
   font-size: 12px;
   color: #9AA6B2;
}

.reviews__text {
   font-size: 14px;
   line-height: 1.65;
   color: #3C4A57;
   margin: 0;
}

.reviews__dots {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   margin-top: 34px;
}

.home-contact {
   background: #142334;
   border-top: 1px solid rgba(195, 154, 95, .16);
}

.home-contact__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 96px 40px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 70px;
   align-items: start;
}

.home-contact__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 46px;
   line-height: 1.1;
   margin: 0 0 26px;
}

.home-contact__text {
   font-size: 16px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0 0 40px;
   max-width: 420px;
}

.home-contact__list {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.home-contact__row {
   display: flex;
   align-items: baseline;
   gap: 16px;
}

.home-contact__label {
   font-size: 11px;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: #6E7E8E;
   width: 80px;
}

.home-contact__value {
   font-family: 'Playfair Display', serif;
   font-size: 22px;
   text-decoration: none;
   color: #E8EAED;
}

.home-contact__panel {
   background: #182C40;
   border: 1px solid rgba(195, 154, 95, .22);
   padding: 38px;
}

/* ============================================================
   ОБО МНЕ (about.html)
   ============================================================ */
.about-hero {
   max-width: 1280px;
   margin: 0 auto;
   padding: 80px 40px 60px;
}

.about-hero__grid {
   display: grid;
   grid-template-columns: 1.1fr .9fr;
   gap: 56px;
   align-items: center;
}

.about-hero__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: clamp(32px, 4vw, 48px);
   line-height: 1.12;
   letter-spacing: -.5px;
   margin: 0 0 24px;
}

.about-hero__text {
   font-size: 18px;
   line-height: 1.75;
   color: #97A3B0;
   margin: 0 0 16px;
}

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

.about-hero__media {
   position: relative;
}

.about-hero__frame {
   position: absolute;
   inset: -14px -14px auto auto;
   width: 120px;
   height: 120px;
   border: 1.5px solid rgba(195, 154, 95, .4);
   border-radius: 14px;
   z-index: 0;
}

.about-hero__photo {
   position: relative;
   z-index: 1;
   aspect-ratio: 4/5;
   border-radius: 16px;
   overflow: hidden;
   border: 1px solid rgba(195, 154, 95, .25);
}

.about-hero__photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.about-hero__badge {
   position: absolute;
   z-index: 2;
   bottom: 18px;
   left: -14px;
   background: #142334;
   border: 1px solid rgba(195, 154, 95, .35);
   border-radius: 12px;
   padding: 14px 20px;
}

.about-hero__badge-num {
   font-family: 'Playfair Display', serif;
   font-size: 30px;
   font-weight: 700;
   color: #C39A5F;
   line-height: 1;
}

.about-hero__badge-label {
   font-size: 11px;
   color: #A6AEB8;
   margin-top: 3px;
}

.support {
   background: #142334;
}

.support__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.support__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 38px;
   line-height: 1.18;
   margin: 0 0 16px;
   max-width: 700px;
}

.support__text {
   font-size: 16px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0 0 44px;
   max-width: 620px;
}

.support__grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 16px;
}

.support__card {
   background: #182C40;
   border: 1px solid rgba(195, 154, 95, .18);
   padding: 26px 16px;
   text-align: center;
}

.support__card-num {
   font-family: 'Playfair Display', serif;
   font-size: 24px;
   color: #C39A5F;
   margin-bottom: 10px;
}

.support__card-text {
   font-size: 13px;
   line-height: 1.5;
   margin: 0;
}

.what-we-do {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.what-we-do__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 38px;
   line-height: 1.18;
   margin: 0 0 16px;
   max-width: 760px;
}

.what-we-do__text {
   font-size: 16px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0 0 44px;
   max-width: 620px;
}

.representation {
   background: #142334;
}

.representation__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.representation__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 38px;
   line-height: 1.18;
   margin: 0 0 16px;
   max-width: 700px;
}

.representation__text {
   font-size: 16px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0 0 40px;
   max-width: 620px;
}

.duo-cards {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.duo-cards__item {
   background: #182C40;
   border: 1px solid rgba(195, 154, 95, .18);
   padding: 34px;
}

.duo-cards__title {
   font-family: 'Playfair Display', serif;
   font-size: 21px;
   color: #C39A5F;
   margin-bottom: 10px;
}

.duo-cards__text {
   font-size: 15px;
   line-height: 1.65;
   color: #97A3B0;
   margin: 0;
}

.about-complex {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.about-complex__grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.about-complex__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 34px;
   line-height: 1.2;
   margin: 0 0 18px;
}

.about-complex__text {
   font-size: 15px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0;
}

.why-us {
   background: #101E2C;
}

.why-us__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.why-us__head {
   text-align: center;
   margin-bottom: 50px;
}

.why-us__grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 18px;
}

/* ============================================================
   УСЛУГИ (services.html)
   ============================================================ */
.services-hero {
   max-width: 1280px;
   margin: 0 auto;
   padding: 80px 40px 60px;
}

.services-hero__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: clamp(34px, 4.4vw, 58px);
   line-height: 1.08;
   letter-spacing: -.5px;
   margin: 0 0 24px;
   max-width: 820px;
}

.services-hero__text {
   font-size: 18px;
   line-height: 1.75;
   max-width: 720px;
   color: #97A3B0;
   margin: 0;
}

.services-main {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 40px 90px;
}

.services-main__grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.svc {
   text-decoration: none;
   color: inherit;
   background: #182C40;
   border: 1px solid rgba(195, 154, 95, .2);
   border-radius: 20px;
   padding: 44px 40px;
   display: flex;
   flex-direction: column;
   min-height: 280px;
   transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.svc:hover {
   transform: translateY(-6px);
   background: #1E374F;
   border-color: rgba(195, 154, 95, .55);
}

.svc:hover .svc-ar {
   transform: translate(4px, -4px);
   color: #C39A5F;
}

.svc__top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 24px;
}

.svc__label {
   font-family: 'Playfair Display', serif;
   font-size: 17px;
   color: #C39A5F;
   font-style: italic;
}

.svc-ar {
   width: 46px;
   height: 46px;
   border: 1px solid rgba(195, 154, 95, .4);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #C39A5F;
   font-size: 18px;
   transition: transform .35s ease, color .35s ease;
}

.svc__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 28px;
   margin: 0 0 14px;
   line-height: 1.2;
}

.svc__text {
   font-size: 15px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0 0 24px;
   flex: 1;
}

.svc__link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: #C39A5F;
   font-size: 14px;
   font-weight: 700;
}

.services-stages {
   background: #142334;
}

.services-stages__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.services-stages__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.2;
   margin: 0 0 16px;
   max-width: 700px;
}

.services-stages__text {
   font-size: 16px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0 0 44px;
   max-width: 620px;
}

.services-stages__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
}

.services-checklist {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.services-checklist__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.2;
   margin: 0 0 40px;
}

.services-special {
   background: #101E2C;
}

.services-special__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.services-special__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 34px;
   line-height: 1.2;
   margin: 0;
}

/* ============================================================
   СТРАНИЦЫ УСЛУГ (urgent-defense.html, complex-cases.html)
   ============================================================ */
.svc-hero {
   max-width: 1280px;
   margin: 0 auto;
   padding: 70px 40px 60px;
}

.svc-hero__grid {
   display: grid;
   grid-template-columns: 1.25fr .75fr;
   gap: 52px;
   align-items: start;
}

.svc-hero__badge {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   padding: 7px 15px;
   border: 1px solid rgba(195, 154, 95, .4);
   border-radius: 100px;
   font-size: 12px;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   margin-bottom: 22px;
   color: #C39A5F;
   font-weight: 600;
}

.svc-hero__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: clamp(32px, 3.6vw, 48px);
   line-height: 1.12;
   letter-spacing: -.5px;
   margin: 0 0 24px;
}

.svc-hero__text {
   font-size: 17px;
   line-height: 1.75;
   color: #97A3B0;
   margin: 0 0 16px;
}

.svc-hero__text--last {
   margin: 0 0 30px;
}

.svc-hero__actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
}

.svc-hero__call {
   font-size: 14px;
   font-weight: 600;
   text-decoration: none;
   color: #E8EAED;
   display: inline-flex;
   align-items: center;
   gap: 10px;
}

.svc-hero__call-icon {
   width: 40px;
   height: 40px;
   border: 1px solid rgba(195, 154, 95, .5);
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: #C39A5F;
}

.svc-hero__photo {
   aspect-ratio: 4/3;
   border-radius: 14px;
   overflow: hidden;
   border: 1px solid rgba(195, 154, 95, .25);
   margin-bottom: 16px;
}

.svc-hero__photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.svc-hero__facts {
   background: #101E2C;
   border: 1px solid rgba(195, 154, 95, .2);
   border-radius: 14px;
   padding: 28px;
}

.svc-hero__facts-title {
   font-size: 12px;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: #C39A5F;
   margin-bottom: 20px;
   font-weight: 600;
}

.svc-hero__facts-list {
   display: grid;
   gap: 18px;
}

.svc-hero__fact {
   border-top: 1px solid rgba(195, 154, 95, .2);
   padding-top: 14px;
}

.svc-hero__fact-label {
   font-size: 13px;
   color: #8A97A5;
   margin-bottom: 4px;
}

.svc-hero__fact-value {
   font-family: 'Playfair Display', serif;
   font-size: 21px;
}

.svc-hero__cta {
   display: block;
   text-align: center;
   margin-top: 24px;
}

.svc-when {
   background: #142334;
}

.svc-when__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.svc-when__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.2;
   margin: 0 0 16px;
   max-width: 640px;
}

.svc-when__title--no-text {
   margin-bottom: 40px;
}

.svc-when__text {
   font-size: 16px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 0 0 40px;
   max-width: 620px;
}

.svc-when__grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
}

.svc-when__tile {
   background: #182C40;
   border: 1px solid rgba(195, 154, 95, .18);
   padding: 28px 24px;
}

.svc-when__tile-text {
   font-size: 15px;
   line-height: 1.55;
   margin: 0;
}

.svc-included {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.svc-included__grid {
   display: grid;
   grid-template-columns: .8fr 1.2fr;
   gap: 56px;
}

.svc-included__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.18;
   margin: 0;
}

.svc-included__text {
   font-size: 15px;
   line-height: 1.7;
   color: #97A3B0;
   margin: 24px 0 0;
}

.svc-included__list {
   display: grid;
   gap: 0;
}

.svc-included__row {
   display: flex;
   gap: 22px;
   align-items: baseline;
   border-top: 1px solid rgba(195, 154, 95, .18);
   padding: 22px 0;
}

.svc-included__row-num {
   font-family: 'Playfair Display', serif;
   font-size: 15px;
   color: #C39A5F;
   min-width: 28px;
}

.svc-included__row-title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 20px;
   margin: 0 0 6px;
}

.svc-included__row-text {
   font-size: 15px;
   line-height: 1.6;
   color: #97A3B0;
   margin: 0;
}

.svc-stages {
   background: #101E2C;
}

.svc-stages__inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.svc-stages__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.18;
   margin: 0 0 50px;
}

.svc-stages__grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

.svc-stages__num {
   font-family: 'Playfair Display', serif;
   font-size: 50px;
   font-weight: 300;
   color: #C39A5F;
   line-height: 1;
}

.svc-stages__rule {
   height: 1px;
   background: rgba(195, 154, 95, .28);
   margin: 20px 0;
}

.svc-stages__title-sm {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 20px;
   margin: 0 0 10px;
}

.svc-stages__text {
   font-size: 14px;
   line-height: 1.6;
   color: #97A3B0;
   margin: 0;
}

.svc-pricing {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.svc-pricing__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.18;
   margin: 0 0 14px;
}

.svc-pricing__lead {
   font-size: 16px;
   color: #97A3B0;
   margin: 0 0 46px;
   max-width: 580px;
   line-height: 1.6;
}

.svc-pricing__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

.svc-pricing__card {
   border: 1px solid rgba(195, 154, 95, .2);
   border-radius: 14px;
   padding: 36px 32px;
   background: #182C40;
}

.svc-pricing__label {
   font-size: 13px;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: #C39A5F;
   margin-bottom: 16px;
   font-weight: 600;
}

.svc-pricing__price {
   font-family: 'Playfair Display', serif;
   font-size: 34px;
   font-weight: 600;
   margin-bottom: 14px;
}

.svc-pricing__text {
   font-size: 14px;
   line-height: 1.6;
   color: #97A3B0;
   margin: 0;
}

.svc-pricing__note {
   font-size: 13px;
   color: #6E7E8E;
   margin: 24px 0 0;
   line-height: 1.6;
}

.svc-faq {
   background: #142334;
}

.svc-faq__inner {
   max-width: 920px;
   margin: 0 auto;
   padding: 90px 40px;
}

.svc-faq__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 36px;
   line-height: 1.18;
   margin: 0 0 44px;
   text-align: center;
}

.svc-related {
   max-width: 1280px;
   margin: 0 auto;
   padding: 90px 40px;
}

.svc-related__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 30px;
   margin: 0 0 30px;
}

.svc-related__grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 16px;
}

/* ============================================================
   КОНТАКТЫ (contacts.html)
   ============================================================ */
.contacts-hero {
   max-width: 1280px;
   margin: 0 auto;
   padding: 80px 40px 60px;
}

.contacts-hero__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: clamp(34px, 4.4vw, 56px);
   line-height: 1.08;
   letter-spacing: -.5px;
   margin: 0 0 16px;
   max-width: 760px;
}

.contacts-hero__text {
   font-size: 18px;
   line-height: 1.65;
   color: #97A3B0;
   margin: 0 0 56px;
   max-width: 540px;
}

.contacts-hero__grid {
   display: grid;
   grid-template-columns: .9fr 1.1fr;
   gap: 56px;
   align-items: start;
}

.contact-details {
   display: grid;
   gap: 14px;
}

.contact-details__messengers {
   display: flex;
   gap: 10px;
   margin-top: 4px;
}

.contact-form-panel {
   background: #101E2C;
   border: 1px solid rgba(195, 154, 95, .2);
   border-radius: 14px;
   padding: 40px;
}

.contact-form-panel__title {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 28px;
   margin: 0 0 26px;
}

.contacts-map {
   max-width: 1280px;
   margin: 0 auto;
   padding: 20px 40px 90px;
}

.contacts-map__box {
   height: 380px;
   border: 1px solid rgba(195, 154, 95, .2);
   border-radius: 14px;
   background-color: #182C40;
   background-image: repeating-linear-gradient(135deg, rgba(195, 154, 95, .06) 0 2px, transparent 2px 11px);
   display: flex;
   align-items: center;
   justify-content: center;
	overflow: hidden;
}

.contacts-map__box iframe {
	width: 100%;
	height: 100%;
}

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 980px) {
   .r-desk-nav {
      display: none !important;
   }

   .r-burger {
      display: inline-flex !important;
   }

   .l-header__mobile-actions {
      display: flex !important;
   }

   .l-header__bar {
      padding-left: 20px;
      padding-right: 20px;
   }

   .home-hero__inner {
      grid-template-columns: 1fr;
      gap: 44px;
      padding: 56px 22px 60px;
   }

   .home-hero__portrait {
      height: 470px;
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
   }

   .home-hero__portrait-frame {
      top: 34px;
      right: -20px;
      width: 66%;
      max-width: 372px;
      height: 520px;
   }

   .home-hero__portrait-img {
      right: 0%;
      width: 120%;
      max-width: 372px;
   }


   .trust__inner {
      padding-left: 20px;
      padding-right: 20px;
   }

   .services-preview {
      padding-left: 22px;
      padding-right: 22px;
   }

   .services-preview__head {
      margin-bottom: 34px;
   }

   .services-preview__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .about-preview__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .about-preview__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .about-preview__watermark {
      display: none;
   }

   .about-preview__collage {
      min-height: 0;
   }

   .about-preview__frame--lg {
      position: static;
      width: 100%;
   }

   .about-preview__frame--sm {
      position: static;
      left: auto;
      bottom: auto;
      width: 72%;
      margin: -60px 0 0 auto;
   }

   .stages {
      padding-left: 22px;
      padding-right: 22px;
   }

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

   .full-control__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .full-control .checklist {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .special-cases__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .special-cases__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .reputation {
      padding-left: 22px;
      padding-right: 22px;
   }

   .reputation__grid {
      grid-template-columns: repeat(3, 1fr);
   }

   .cta-band__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .reviews__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .reviews__slide {
      flex: 0 0 50%;
   }

   .faq {
      padding-left: 22px;
      padding-right: 22px;
   }

   .home-contact__inner {
      padding-left: 22px;
      padding-right: 22px;
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .l-footer__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .l-footer__grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
   }

   .about-hero {
      padding-left: 22px;
      padding-right: 22px;
   }

   .about-hero__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .support__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .support__grid {
      grid-template-columns: repeat(3, 1fr);
   }

   .what-we-do {
      padding-left: 22px;
      padding-right: 22px;
   }

   .what-we-do .checklist {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .representation__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .duo-cards {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .about-complex {
      padding-left: 22px;
      padding-right: 22px;
   }

   .about-complex__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .why-us__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .why-us__grid {
      grid-template-columns: repeat(3, 1fr);
   }

   .services-hero {
      padding-left: 22px;
      padding-right: 22px;
   }

   .services-main {
      padding-left: 22px;
      padding-right: 22px;
   }

   .services-main__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .services-stages__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

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

   .services-checklist {
      padding-left: 22px;
      padding-right: 22px;
   }

   .services-checklist .checklist {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .services-special__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .services-special .special-cases__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .svc-hero {
      padding-left: 22px;
      padding-right: 22px;
   }

   .svc-hero__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .svc-when__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

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

   .svc-included {
      padding-left: 22px;
      padding-right: 22px;
   }

   .svc-included__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .svc-stages__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

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

   .svc-pricing {
      padding-left: 22px;
      padding-right: 22px;
   }

   .svc-faq__inner {
      padding-left: 22px;
      padding-right: 22px;
   }

   .svc-related {
      padding-left: 22px;
      padding-right: 22px;
   }

   .svc-related__grid {
      grid-template-columns: 1fr;
   }

   .contacts-hero {
      padding-left: 22px;
      padding-right: 22px;
   }

   .contacts-hero__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .contacts-map {
      padding-left: 22px;
      padding-right: 22px;
   }
}

@media (max-width: 640px) {
   h1 {
      font-size: clamp(28px, 8vw, 40px) !important;
   }

   h2 {
      font-size: clamp(24px, 6.2vw, 34px) !important;
   }

   .home-hero__inner {
      padding-top: 54px;
      padding-bottom: 54px;
   }

   .home-hero__portrait {
      height: 405px;
   }


   .home-hero__portrait-frame {
      top: 34px;
      right: -20px;
      width: 66%;
      max-width: 372px;
      height: 486px;
   }

   .home-hero__portrait-img {
      right: 0%;
      width: 102%;
      max-width: 372px;
      height: 460px;
   }

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

   .reviews__slide {
      flex: 0 0 100%;
   }

   .l-footer__grid {
      grid-template-columns: 1fr;
   }

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

   .why-us__grid {
      grid-template-columns: 1fr 1fr;
   }

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

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

   .svc-when__grid {
      grid-template-columns: 1fr;
   }

   .svc-stages__grid {
      grid-template-columns: 1fr;
   }

   .svc-pricing__grid {
      grid-template-columns: 1fr;
   }

	.about-preview__frame--lg {
		display: none;
	}
	.about-preview__frame--sm {
		width: 100%;
		margin: 0;
	}

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


.float-socials {
    position: fixed;
    right: 20px;
    bottom: 100px;
    border-radius: 50%;
	width: 55px; /*ширина кнопки*/
	z-index: 9998;
}

.float-socials__item {
	color: #fff;
}

@media (max-width : 1024px) {  
    .float-socials {
        right: 9px;
        bottom: 76px;
    }
}

.float-socials__list {
	position: absolute;
	left: 0;
	bottom: 0;
	display: none;
}

.float-socials__list > *+* {
	margin-top: 10px;	
}

.float-socials__item {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #25D366; /*цвет кнопки*/
	border-radius: 50%;
	width: 55px; /*ширина кнопки*/
	height: 55px; /*высота кнопки*/
	color: #fff;
	text-align: center;
	line-height: 53px; /*центровка иконки в кнопке*/
	font-size: 35px; /*размер иконки*/
}
.float-socials__item.viber {
	background: #6F5CEA; /*цвет кнопки*/
}
.float-socials__item.whatsapp {
	background: #25D366; /*цвет кнопки*/
}
.float-socials__item.telegram {
	background: #0088cc; /*цвет кнопки*/
}

.float-socials__item svg {
	width: 24px;
	height: auto;
}
