/* base.css */
/* ============================
   VARIABLES
   ============================ */
:root {
    --gold: #c9a84c;
    --gold-light: #e0c76a;
    --gold-dark: #a88a2e;
    --dark: #0f0f13;
    --dark-2: #16161c;
    --dark-3: #1e1e26;
    --dark-4: #282832;
    --white: #ffffff;
    --text: #d0cdc5;
    --text-muted: rgba(255,255,255,0.55);
    --text-faint: rgba(255,255,255,0.35);
    --border: rgba(255,255,255,0.07);
    --border-gold: rgba(201,168,76,0.2);
    --font: 'Inter', -apple-system, sans-serif;
    --font-d: 'Playfair Display', Georgia, serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;
    --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* ============================
   RESET
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--tr);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================
   UTILITY
   ============================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section--alt {
    background: var(--dark-2);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--tr);
    cursor: pointer;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--tr);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    box-shadow: 0 4px 25px rgba(201,168,76,0.3);
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(201,168,76,0.5);
}

.btn--outline {
    border: 2px solid rgba(201,168,76,0.35);
    color: var(--gold);
}

.btn--outline:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
}

.btn--tg {
    background: #2AABEE;
    color: #fff;
}

.btn--tg:hover {
    background: #1d96d1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42,171,238,0.3);
}

.btn--vk {
    background: #2787f5;
    color: #fff;
}

.btn--vk:hover {
    background: #1f6fd4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 135, 245, 0.35);
}

.btn--wa {
    background: #25D366;
    color: #fff;
}

.btn--wa:hover {
    background: #1eb854;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn--max {
    background: linear-gradient(135deg, #00c6ff 0%, #6b5b95 55%, #8b5cf6 100%);
    color: #fff;
}

.btn--max:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 91, 149, 0.35);
}

.btn--mail {
    background: #c42b2b;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--mail:hover {
    background: #a61f1f;
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(196, 43, 43, 0.35);
}

.contact-btns .btn,
.contact-btns .btn--lg {
    position: relative;
    gap: 0;
}

.contact-btns__ico {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-btns__ico svg {
    display: block;
}

.contact-btns .btn:hover .contact-btns__ico svg {
    transform: none;
}

.btn--lg {
    padding: 20px 48px;
    font-size: 16px;
}

/* ============================
   SECTION HEADERS
   ============================ */
.sh {
    margin-bottom: clamp(36px, 6vw, 56px);
}

.sh--c {
    text-align: center;
}

.sh__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.sh__label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.sh__title {
    font-family: var(--font-d);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.sh__title em {
    font-style: italic;
    color: var(--gold);
}

.sh__desc {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.sh--c .sh__desc {
    margin: 0 auto;
}
/* ============================
   HEADER
   ============================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--tr);
}

.header.scrolled {
    background: rgba(15,15,19,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    z-index: 1001;
    display: flex;
    align-items: center;
    font-family: var(--font-d);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
}

.logo__da { color: var(--gold); }
.logo__vi { color: var(--white); }

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--tr);
    cursor: pointer;
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.07);
}

.nav__link.active {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

/* Header socials */
.h-socials {
    display: flex;
    gap: 8px;
}

.soc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tr);
}

.soc svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.6);
    transition: fill var(--tr);
}

.soc:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
}

.soc:hover svg {
    fill: var(--gold);
}

/* ============================
   MOBILE MENU
   ============================ */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    z-index: 1001;
    padding: 6px 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--tr);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,15,19,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mob-overlay.active {
    display: flex;
}

.mob-nav {
    text-align: center;
}

.mob-nav a {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    transition: all var(--tr);
    cursor: pointer;
}

.mob-nav a:hover,
.mob-nav a.active {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.mob-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

/* ============================
   PAGE SYSTEM
   ============================ */
.page {
    display: none;
    animation: pageIn 0.4s ease-out;
}

.page.active {
    display: block;
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 40px 0 24px;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copy {
    font-size: 13px;
    color: var(--text-faint);
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer-seo {
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-seo__summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 28px;
    font-family: var(--font-r, 'Raleway', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--gold, #c9a84c);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 50px;
    cursor: pointer;
    list-style: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-seo__summary::-webkit-details-marker {
    display: none;
}

.footer-seo__summary::marker {
    content: '';
}

.footer-seo__details .footer-seo__summary:hover {
    background: rgba(201, 168, 76, 0.14);
    border-color: rgba(201, 168, 76, 0.55);
}

.footer-seo__body {
    margin-top: 20px;
    padding-top: 4px;
}

.footer-seo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px 28px;
    font-size: 13px;
}

.footer-seo__title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-seo__list {
    list-style: none;
}

.footer-seo__list li {
    margin-bottom: 6px;
}

.footer-seo__list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--tr);
}

.footer-seo__list a:hover {
    color: var(--gold);
}

/* ============================
   FLOATING LEAD WIDGET
   ============================ */
.lead-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
 z-index: 99999;
 width: min(300px, calc(100vw - 24px));
}

.lead-widget__launcher {
 display: none;
}

.lead-widget__body {
    position: relative;
    background: rgba(22, 22, 28, 0.96);
    border: 1px solid rgba(201, 168, 76, 0.24);
 border-radius: 14px;
 padding: 14px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.lead-widget__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 22px;
    line-height: 1;
}

.lead-widget__close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.lead-widget__title {
    color: var(--white);
 font-size: 17px;
    line-height: 1.25;
 margin-bottom: 8px;
    padding-right: 28px;
}

.lead-widget__text {
    color: var(--text);
 font-size: 13px;
    line-height: 1.45;
 margin-bottom: 10px;
}

.lead-widget__text strong {
 color: var(--white);
 font-weight: 800;
}

.lead-widget__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lead-widget__input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
 padding: 10px 12px;
 font-size: 14px;
}

.lead-widget__input:focus {
    outline: none;
    border-color: var(--gold);
}

.lead-widget__submit {
    width: 100%;
    border-radius: 12px;
 padding: 10px 12px;
 font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
 position: relative;
 overflow: hidden;
}

.lead-widget__submit:disabled {
    opacity: 0.75;
    cursor: wait;
}

.lead-widget__status {
 display: none;
 margin-top: 6px;
    color: var(--text-muted);
 font-size: 12px;
}

.lead-widget__status:not(:empty) {
 display: block;
}

.lead-widget__status.is-error {
    color: #ff8b8b;
}

@media (max-width: 767px) {
    .lead-widget {
 --lead-mobile-offset: 0px;
 right: 10px;
 bottom: calc(10px + var(--lead-mobile-offset));
 width: min(280px, calc(100vw - 20px));
    }

 .lead-widget:not(.is-open) {
 width: 72px;
 }

 .lead-widget__launcher {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 width: 72px;
 height: 72px;
 border-radius: 16px;
 border: 2px solid rgba(255, 255, 255, 0.42);
 background: radial-gradient(circle at 30% 30%, #f0d77a 0%, var(--gold) 45%, var(--gold-dark) 100%);
 color: #101015;
 box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42), 0 8px 20px rgba(201, 168, 76, 0.4), inset 0 1px 0 rgba(255,255,255,0.45);
 position: relative;
 overflow: hidden;
 transform: none;
}

 .lead-widget__launcher-main,
 .lead-widget__launcher-sub {
 display: block;
 text-align: center;
 width: 44px;
 line-height: 1;
 position: relative;
 z-index: 1;
 }

 .lead-widget__launcher-main {
 font-size: 23px;
 font-weight: 900;
 letter-spacing: 0.2px;
 }

 .lead-widget__launcher-sub {
 margin-top: 1px;
 font-size: 10px;
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: 0.25px;
 transform: scaleX(0.82);
 transform-origin: center;
 }

 .lead-widget__launcher::after {
 content: '';
 position: absolute;
 top: -25%;
 left: -140%;
 width: 62%;
 height: 160%;
 transform: rotate(20deg);
 background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.92), rgba(255,255,255,0));
 animation: leadWidgetShine 5s ease-in-out infinite;
}

 .lead-widget__body {
 margin-top: 8px;
}

 .lead-widget:not(.is-open) .lead-widget__body {
 display: none;
}

 .lead-widget.is-open .lead-widget__launcher {
 display: none !important;
 }

    .lead-widget__title {
 font-size: 16px;
    }
}

@keyframes leadWidgetShine {
 0%, 78%, 100% {
 left: -120%;
 opacity: 0;
 }
 82% {
 opacity: 1;
 }
 90% {
 left: 150%;
 opacity: 0.95;
 }
}

.lead-widget__submit::after {
 content: '';
 position: absolute;
 top: -30%;
 left: -140%;
 width: 28%;
 height: 170%;
 transform: rotate(24deg);
 background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.85), rgba(255,255,255,0));
 animation: leadSubmitShine 5s ease-in-out infinite;
 pointer-events: none;
}

@keyframes leadSubmitShine {
 0%, 78%, 100% {
 left: -140%;
 opacity: 0;
 }
 82% {
 opacity: 1;
 }
 90% {
 left: 155%;
 opacity: 0.95;
 }
}

/* pages.css */
/* ============================
   HERO (Главная)
   ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.03;
}

.hero__shape--1 {
    width: 800px;
    height: 800px;
    top: -300px;
    right: -200px;
    animation: shapeFloat 25s ease-in-out infinite;
}

.hero__shape--2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    animation: shapeFloat 20s ease-in-out 5s infinite;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease-out both;
}

.hero__dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-d);
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeUp 0.7s ease-out 0.1s both;
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
}

.hero__sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeUp 0.7s ease-out 0.2s both;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
    animation: fadeUp 0.7s ease-out 0.3s both;
}

.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.7s ease-out 0.4s both;
}

.stat__val {
    font-family: var(--font-d);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stat__lbl {
    font-size: 13px;
    color: var(--text-faint);
}

/* Hero visual (photo + floating cards) */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero__photo-wrap {
    position: relative;
    width: clamp(260px, 85%, 360px);
}

.hero__photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.15);
    box-shadow: var(--shadow);
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__corner {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(201,168,76,0.25);
}

.hero__corner--tl {
    top: -14px;
    left: -14px;
    border-right: none;
    border-bottom: none;
    border-radius: 6px 0 0 0;
}

.hero__corner--br {
    bottom: -14px;
    right: -14px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 6px 0;
}

.float-card {
    position: absolute;
    background: rgba(30,30,38,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.float-card--1 {
    top: 20px;
    left: -55px;
    animation: cardFloat 5s ease-in-out infinite;
}

.float-card--2 {
    bottom: 40px;
    right: -45px;
    animation: cardFloat 5s ease-in-out 2.5s infinite;
}

.float-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(201,168,76,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.float-card__t {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.float-card__s {
    font-size: 11px;
    color: var(--text-faint);
}

/* ============================
   SERVICES GRID (Главная)
   ============================ */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.srv {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--tr);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.srv::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--tr);
}

.srv:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.srv:hover::after { opacity: 1; }

.srv__icon {
    width: 56px;
    height: 56px;
    background: rgba(201,168,76,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.srv__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.srv__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.srv__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.srv__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.srv__price-f {
    font-size: 12px;
    color: var(--text-faint);
}

.srv__price-v {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.srv__price-u {
    font-size: 12px;
    color: var(--text-faint);
}

.srv__arr {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tr);
}

.srv__arr svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    transition: all var(--tr);
}

.srv:hover .srv__arr {
    background: var(--gold);
}

.srv:hover .srv__arr svg {
    fill: var(--dark);
    transform: translateX(2px);
}

/* ============================
   ABOUT (Главная)
   ============================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about__img {
    position: relative;
}

.about__pic {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.12);
}

.about__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__exp {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--dark);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about__exp-v {
    font-family: var(--font-d);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about__exp-l {
    font-size: 12px;
    font-weight: 600;
}

.about__name {
    font-family: var(--font-d);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 4px;
}

.about__role {
    font-size: 14px;
    color: var(--text-faint);
    margin-bottom: 20px;
}

.about__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about__tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.about__tool {
    padding: 8px 16px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
}
/* ============================
   ADVANTAGES
   ============================ */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.adv {
    background: rgba(201,168,76,0.03);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--tr);
}

.adv:hover {
    background: rgba(201,168,76,0.06);
    transform: translateY(-4px);
}

.adv__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.adv__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.adv__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================
   CTA BLOCK
   ============================ */
.cta {
    padding: clamp(50px, 8vw, 90px) 0;
}

.cta__box {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--radius);
    padding: clamp(36px, 6vw, 64px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(201,168,76,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta__title {
    font-family: var(--font-d);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

.cta__text {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 28px;
    position: relative;
    line-height: 1.7;
}

.cta__btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
}

.contact-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 22px;
    margin-top: 22px;
    position: relative;
    z-index: 1;
}

.contact-copy__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-copy__text {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.contact-copy__gap {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.contact-copy__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    cursor: pointer;
    transition: background var(--tr), border-color var(--tr), color var(--tr);
}

.contact-copy__btn:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.55);
}

.contact-copy__btn.is-copied {
    border-color: rgba(74, 222, 128, 0.6);
    color: #86efac;
}

.contact-copy__glyph {
    width: 18px;
    height: 18px;
}

.contact-copy--sticky {
    margin-top: 0;
    gap: 10px 16px;
}

.contact-copy--sticky .contact-copy__text {
    font-size: 13px;
    font-weight: 500;
}

.contact-copy--sticky .contact-copy__btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.contact-copy--sticky .contact-copy__glyph {
    width: 15px;
    height: 15px;
}

.contact-copy--sticky .contact-copy__gap {
    height: 16px;
}

/* ============================
   CONTACT MODAL («Связаться»)
   ============================ */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100050;
    overflow-y: auto;
    padding: 20px 16px;
    box-sizing: border-box;
}

.contact-modal[hidden] {
    display: none !important;
}

.contact-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    margin: 32px auto 24px;
    max-height: min(86vh, 640px);
    overflow-y: auto;
    padding: 28px 24px 24px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--dark-3), var(--dark-2));
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.contact-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background var(--tr), color var(--tr);
}

.contact-modal__close:hover {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.contact-modal__title {
    font-family: var(--font-d);
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 600;
    color: var(--white);
    margin: 0 36px 8px 0;
    padding: 0;
}

.contact-modal__lead {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 20px;
}

.contact-btns--modal {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: none !important;
}

.contact-btns--modal .btn {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 46px;
    padding: 12px 18px !important;
    border-radius: var(--radius-full) !important;
    justify-content: center;
    gap: 10px !important;
}

.contact-btns--modal .contact-btns__ico {
    display: inline-flex !important;
}

.contact-btns--modal .contact-btns__txt {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    border: 0 !important;
}

.contact-copy--modal {
    margin-top: 18px;
    margin-bottom: 0;
}

body.contact-modal-open {
    overflow: hidden;
}

/* ============================
   LANDING HERO (страницы услуг — основной экран)
   ============================ */
/* ============================
   LH — LANDING HERO
   ============================ */
.lh {
    padding: clamp(120px, 15vw, 160px) 0 clamp(50px, 8vw, 70px);
    position: relative;
    overflow: hidden;
}

.lh__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

/* ====== ROW: ТЕКСТ + GIF ====== */
.lh__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.lh__content {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 560px;
}

.lh__usp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease-out both;
}

.lh__title {
    font-family: var(--font-d);
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease-out 0.1s both;
}

.lh__title em {
    font-style: italic;
    color: var(--gold);
}

.lh__desc {
    font-size: clamp(16px, 1.7vw, 18px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 100%;
    animation: fadeUp 0.6s ease-out 0.15s both;
}

.lh__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
    animation: fadeUp 0.6s ease-out 0.2s both;
}

.lh__contact-cta {
    padding: 14px 36px;
    font-weight: 700;
}

.lh__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    animation: fadeUp 0.6s ease-out 0.25s both;
}

.lh__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ====== GIF VISUAL ====== */
.lh__visual {
    flex: 0 0 380px;
    width: 380px;
    height: 380px;
    position: relative;
    animation: visualFloat 4s ease-in-out infinite;
}

.lh__gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.lh__visual::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: linear-gradient(135deg, rgba(201,168,76,0.5), rgba(201,168,76,0.1) 50%, rgba(201,168,76,0.5));
    z-index: -1;
}

.lh__glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.12), transparent 60%);
    border-radius: 50%;
    z-index: -2;
    filter: blur(40px);
    pointer-events: none;
}

@keyframes visualFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ====== TRUST (старый формат) ====== */
.trust {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.trust__text {
    font-size: 13px;
    color: var(--text-muted);
}

.trust__text strong {
    color: var(--white);
    font-weight: 600;
}

/* ============================
   BEFORE / AFTER SLIDER
   ============================ */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
    gap: 24px;
}

.ba {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--tr);
}

.ba:hover {
    border-color: var(--border-gold);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.ba__head {
    padding: 14px 20px;
    background: var(--dark-4);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba__head svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.ba-slider__img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-slider__img--before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-slider__img--after {
    z-index: 0;
}

.ba-slider__line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--gold);
    z-index: 10;
    pointer-events: none;
    transform: translateX(-50%);
}

.ba-slider__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    cursor: col-resize;
}

.ba-slider__handle svg {
    width: 20px;
    height: 20px;
    fill: var(--dark);
}

.ba-slider__label {
    position: absolute;
    bottom: 10px;
    padding: 4px 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
}

.ba-slider__label--b {
    left: 10px;
}

.ba-slider__label--a {
    right: 10px;
}
/* ============================
   BA-SLIDER: ИЗОБРАЖЕНИЯ
   ============================ */
.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: col-resize;
    border-radius: var(--radius);
}

.ba-slider__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-slider__img--after {
    z-index: 1;
}

.ba-slider__img--before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-slider__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gold);
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-slider__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ba-slider__handle svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
}

.ba-slider__label {
    position: absolute;
    bottom: 12px;
    z-index: 4;
    background: rgba(0,0,0,0.7);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    pointer-events: none;
}

.ba-slider__label--b {
    left: 12px;
}

.ba-slider__label--a {
    right: 12px;
}

/* ============================
   PROCESS STEPS
   ============================ */
.proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.proc-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.15), var(--gold));
    z-index: 0;
}

.proc {
    text-align: center;
    position: relative;
    z-index: 1;
}

.proc__num {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--dark);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    transition: all var(--tr);
}

.proc:hover .proc__num {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(201,168,76,0.3);
    transform: scale(1.1);
}

.proc__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.proc__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ============================
   REVIEWS
   ============================ */
.rev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.rev {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--tr);
}

.rev:hover {
    border-color: var(--border-gold);
}

.rev__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 16px;
}

.rev__text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.rev__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev__ava {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.rev__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.rev__date {
    font-size: 12px;
    color: var(--text-faint);
}

/* ============================
   PRICING INLINE
   ============================ */
.pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.price-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--tr);
}

.price-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.price-card--pop {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, var(--dark-3), rgba(201,168,76,0.04));
    position: relative;
}

.price-card--pop::before {
    content: 'Популярное';
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.price-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.price-card__val {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.price-card__from {
    font-size: 13px;
    color: var(--text-faint);
}

.price-card__num {
    font-family: var(--font-d);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.price-card__cur {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
}

.price-card__list {
    margin-bottom: 20px;
}

.price-card__list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.price-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ============================
   FAQ
   ============================ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq {
    border-bottom: 1px solid var(--border);
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: color var(--tr);
}

.faq__q:hover {
    color: var(--gold);
}

.faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--tr);
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    transition: all var(--tr);
}

.faq__icon::before {
    width: 10px;
    height: 2px;
}

.faq__icon::after {
    width: 2px;
    height: 10px;
}

.faq.active .faq__icon {
    border-color: var(--gold);
    transform: rotate(45deg);
}

.faq.active .faq__icon::before,
.faq.active .faq__icon::after {
    background: var(--gold);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq.active .faq__a {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq__a p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================
   GUARANTEE BANNER
   ============================ */
.guarantee {
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.guarantee__icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.guarantee__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.guarantee__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================
   LANDING EXTRA: service includes list
   ============================ */
.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.incl {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--tr);
}

.incl:hover {
    border-color: var(--border-gold);
    background: rgba(201,168,76,0.03);
}

.incl__icon {
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.incl__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.incl__text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================
   STICKY CTA BAR (нижний на лендингах)
   ============================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15,15,19,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 14px 0;
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-cta__text {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.sticky-cta__text span {
    color: var(--gold);
}

.sticky-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 0;
}

.sticky-cta__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.sticky-cta__btns .btn {
    padding: 12px 28px;
    font-size: 14px;
}
/* ============================
   HERO GIF VISUAL
   ============================ */
.lh__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.lh__content {
    flex: 1;
    max-width: 55%;
}

.lh__visual {
    flex: 0 0 340px;
    width: 340px;
    height: 340px;
    position: relative;
    animation: visualFloat 4s ease-in-out infinite;
}

.lh__gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Красивый фрейм вокруг GIF */
.lh__visual::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.6) 0%,
        rgba(201, 168, 76, 0.1) 30%,
        rgba(201, 168, 76, 0.1) 70%,
        rgba(201, 168, 76, 0.6) 100%
    );
    z-index: -1;
}

/* Внешняя декоративная рамка */
.lh__visual::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 30px;
    z-index: -2;
}

/* Свечение позади */
.lh__visual .lh__glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 168, 76, 0.15) 0%,
        transparent 60%
    );
    border-radius: 50%;
    z-index: -3;
    filter: blur(40px);
    pointer-events: none;
}

/* Анимация лёгкого парения */
@keyframes visualFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-8px) rotate(0.5deg); 
    }
    50% { 
        transform: translateY(-12px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-6px) rotate(-0.5deg); 
    }
}
/* ============================
   FIX: HERO ROW FLEX
   ============================ */
.lh__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.lh__content {
    flex: 1;
    max-width: 560px;
}

.lh__visual {
    flex: 0 0 380px;
    width: 380px;
    height: auto;
}

.lh__gif {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
/* ============================
   HERO — ГЛАВНАЯ СТРАНИЦА
   ============================ */
.hero {
    padding: clamp(120px, 15vw, 160px) 0 clamp(50px, 8vw, 70px);
    position: relative;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.hero__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero__content {
    flex: 1;
    max-width: 560px;
}

.hero__usp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-d);
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
}

.hero__desc {
    font-size: clamp(16px, 1.7vw, 18px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ====== VISUAL: PNG + ПЛАШКИ ====== */
.hero__visual {
    flex: 0 0 450px;
    width: 450px;
    position: relative;
    /* Всё вместе парит */
    animation: heroFloat 4s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.hero__img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

/* Свечение позади */
.hero__visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 168, 76, 0.12) 0%,
        transparent 60%
    );
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
    pointer-events: none;
}

/* ====== ПЛАШКИ (BADGES) ====== */
.hero__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    white-space: nowrap;
}

.hero__badge-icon {
    font-size: 16px;
}

/* Плашка Photoshop Pro — слева вверху */
.hero__badge--ps {
    top: 10%;
    left: -20px;
    animation: badgeFloat1 3s ease-in-out infinite;
}

/* Плашка от 1 часа — справа внизу */
.hero__badge--time {
    bottom: 15%;
    right: -10px;
    animation: badgeFloat2 3.5s ease-in-out infinite;
}

/* Свои анимации для каждой плашки — создаёт эффект "живости" */
@keyframes badgeFloat1 {
    0%, 100% { 
        transform: translate3d(0, 0, 0); 
    }
    50% { 
        transform: translate3d(-5px, -8px, 0); 
    }
}

@keyframes badgeFloat2 {
    0%, 100% { 
        transform: translate3d(0, 0, 0); 
    }
    50% { 
        transform: translate3d(5px, -10px, 0); 
    }
}

/* Главная анимация всего блока */
@keyframes heroFloat {
    0%, 100% { 
        transform: translate3d(0, 0, 0); 
    }
    50% { 
        transform: translate3d(0, -12px, 0); 
    }
}

/* Кнопка Kwork */
.btn-kwork {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--gold);
    border-radius: 50px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-kwork:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
    background: #d4b44a;
}

.btn-kwork__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-kwork:hover .btn-kwork__icon {
    transform: translate(2px, -2px);
}
/* Логотип */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo__img {
    height: 30px;
    width: auto;
    max-width: 120px;
    display: block;
}
/* Золотая кнопка */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    padding: 14px 36px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
    background: #d4b44a;
}
.sticky-bar {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-cta {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.srv__btn:hover svg path,
.srv__btn:hover svg polygon,
.srv__btn:hover svg line {
    /* Замените цвет на цвет вашего фона */
    fill: #232228 !important;
    stroke: #232228 !important;
}
.srv:hover .srv__arr svg path {
    stroke: #1a1a20 !important;
}
.ba-slider {
    touch-action: pan-y;
}
.price-card:first-child .btn,
.price-card:last-child .btn {
    border: 1px solid #c9a84c;
}
.page-404__visual {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.page-404__img {
    width: 60%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}
.page-404__title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.page-404__text {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}
.page-404__title {
    font-size: 32px !important;
}

.page-404__text {
    font-size: 14px !important;
}

/* SEO-текст внизу лендингов (после sticky CTA) */
.seo-sect .seo-block {
    max-width: 820px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    text-align: left;
}

.seo-sect .seo-block p {
    margin: 0 0 1.1em;
}

.seo-sect .seo-block p:last-child {
    margin-bottom: 0;
}


/* responsive.css */
/* ============================
   RESPONSIVE — 1024px
   ============================ */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .float-card--1 {
        left: -20px;
    }

    .float-card--2 {
        right: -20px;
    }

    .srv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about__img {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__tools {
        justify-content: center;
    }

    .proc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .proc-grid::before {
        display: none;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================
   RESPONSIVE — 768px
   ============================ */
@media (max-width: 768px) {
    /* Header */
    .nav {
        display: none;
    }

    .h-socials {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(30px, 8vw, 42px);
    }

    .hero__stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__photo-wrap {
        width: clamp(220px, 70%, 300px);
    }

    .float-card {
        display: none;
    }

    .hero__corner {
        display: none;
    }

    /* Services */
    .srv-grid {
        grid-template-columns: 1fr;
    }

    /* Landing hero */
    .lh {
        padding: 100px 0 40px;
    }

    .lh__title {
        font-size: clamp(26px, 7vw, 38px);
    }

    .lh__trust {
        flex-direction: column;
        gap: 14px;
    }

    .lh__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lh__actions .btn {
        width: 100%;
    }

    /* Before/After */
    .ba-grid {
        grid-template-columns: 1fr;
    }

    /* Process */
    .proc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* Pricing */
    .pricing-row {
        grid-template-columns: 1fr;
    }

    /* Reviews */
    .rev-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta__box {
        padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
    }

    .cta__btns:not(.contact-btns) {
        flex-direction: column;
        align-items: center;
    }

    .cta__btns:not(.contact-btns) .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-btns .contact-btns__ico {
        display: inline-flex !important;
    }

    .cta__btns.contact-btns {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: 8px;
    }

    .cta__btns.contact-btns .btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        max-width: none;
        padding: 0;
        border-radius: 12px;
        flex: 0 0 auto;
    }

    .cta__btns.contact-btns .contact-btns__txt {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .cta__btns.contact-btns .contact-btns__ico svg {
        width: 22px;
        height: 22px;
    }

    .contact-copy {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    .contact-copy__gap {
        display: block;
    }

    /* Includes */
    .includes-grid {
        grid-template-columns: 1fr;
    }

    /* Sticky CTA */
    .sticky-cta__inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .sticky-cta__text {
        font-size: 13px;
    }

    .sticky-cta__actions {
        width: 100%;
        align-items: center;
    }

    .sticky-cta__btns {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .sticky-cta__btns.contact-btns .btn {
        flex: 0 0 auto;
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 0;
        border-radius: 12px;
        font-size: 0;
    }

    .sticky-cta__btns.contact-btns .contact-btns__txt {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .sticky-cta__btns.contact-btns .contact-btns__ico svg {
        width: 22px;
        height: 22px;
    }

    .contact-copy--sticky {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* FAQ */
    .faq__q {
        font-size: 15px;
        padding: 18px 0;
    }

    /* About */
    .about__exp {
        bottom: -14px;
        right: -10px;
        padding: 14px 18px;
    }

    .about__exp-v {
        font-size: 28px;
    }
}

/* ============================
   RESPONSIVE — 480px
   ============================ */
@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__stats {
        gap: 20px;
    }

    .stat__val {
        font-size: 26px;
    }

    .lh__title {
        font-size: 26px;
    }

    .sh__title {
        font-size: 26px;
    }

    .srv {
        padding: 24px 20px;
    }

    .srv__title {
        font-size: 18px;
    }

    .srv__price-v {
        font-size: 20px;
    }

    .adv-grid {
        grid-template-columns: 1fr;
    }

    .proc-grid {
        grid-template-columns: 1fr;
    }

    .cta__title {
        font-size: 24px;
    }

    .ba-slider__handle {
        width: 36px;
        height: 36px;
    }

    .ba-slider__handle svg {
        width: 16px;
        height: 16px;
    }

    .price-card__num {
        font-size: 26px;
    }

    .guarantee {
        padding: 24px 20px;
    }

    .guarantee__icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .mob-nav a {
        font-size: 18px;
        padding: 12px 24px;
    }

    .hero__photo-wrap {
        width: clamp(200px, 65%, 260px);
    }

    .about__pic {
        aspect-ratio: 3/4;
    }

    .about__name {
        font-size: 20px;
    }

    .about__desc {
        font-size: 15px;
    }

    .about__tool {
        font-size: 12px;
        padding: 6px 12px;
    }

    .rev {
        padding: 22px;
    }

    .rev__text {
        font-size: 14px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }

    .footer-seo {
        text-align: center;
    }

    .footer-seo__body {
        text-align: left;
    }

    .footer-seo__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   HOVER STATES — touch devices
   ============================ */
@media (hover: none) {
    .srv:hover {
        transform: none;
        box-shadow: none;
    }

    .adv:hover {
        transform: none;
    }

    .price-card:hover {
        transform: none;
    }

    .btn--gold:hover {
        transform: none;
    }

    .btn--tg:hover {
        transform: none;
    }

    .btn--vk:hover {
        transform: none;
    }

    .btn--wa:hover {
        transform: none;
    }

    .btn--mail:hover {
        transform: none;
    }

    .btn--max:hover {
        transform: none;
    }

    .proc:hover .proc__num {
        background: var(--dark);
        color: var(--gold);
        box-shadow: none;
        transform: none;
    }
}
/* ============================
   HERO GIF — RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
    .lh__row {
        gap: 40px;
    }
    
    .lh__visual {
        flex: 0 0 300px;
        width: 300px;
        height: 300px;
    }
    
    .lh__content {
        max-width: 60%;
    }
}

@media (max-width: 900px) {
    .lh__row {
        flex-direction: column;
        text-align: center;
    }
    
    .lh__content {
        max-width: 100%;
    }
    
    .lh__visual {
        flex: none;
        width: 280px;
        height: 280px;
        order: -1;
        margin-bottom: 20px;
    }
    
    .lh__btns {
        justify-content: center;
    }
    
    .lh__trust {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lh__visual {
        width: 240px;
        height: 240px;
    }
    
    .lh__visual::after {
        inset: -8px;
    }
}
/* ============================
   HERO GIF — RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
    .lh__row {
        gap: 40px;
    }
    
    .lh__visual {
        flex: 0 0 300px;
        width: 300px;
        height: 300px;
    }
    
    .lh__content {
        max-width: 60%;
    }
}

@media (max-width: 900px) {
    .lh__row {
        flex-direction: column;
        text-align: center;
    }
    
    .lh__content {
        max-width: 100%;
    }
    
    .lh__visual {
        flex: none;
        width: 280px;
        height: 280px;
        order: -1;
        margin-bottom: 20px;
    }
    
    .lh__btns {
        justify-content: center;
    }
    
    .lh__trust {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lh__visual {
        width: 240px;
        height: 240px;
    }
    
    .lh__visual::after {
        inset: -8px;
    }
}
/* ============================
   LH HERO — RESPONSIVE
   ============================ */
@media (max-width: 968px) {
    .lh__row {
        flex-direction: column;
        text-align: center;
    }
    
    .lh__visual {
        order: -1;
        width: 300px;
        height: 300px;
        flex: none;
        margin-bottom: 30px;
        /* Оптимизация анимации для мобильных */
        animation: visualFloatMobile 5s ease-in-out infinite;
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .lh__content {
        max-width: 100%;
    }
    
    .lh__btns,
    .lh__trust {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lh__visual {
        width: 250px;
        height: 250px;
        /* Отключаем анимацию на очень маленьких экранах */
        animation: none;
    }
}

/* Более плавная анимация для мобильных */
@keyframes visualFloatMobile {
    0%, 100% { 
        transform: translateY(0) translateZ(0); 
    }
    50% { 
        transform: translateY(-8px) translateZ(0); 
    }
}
/* ============================
   HERO ГЛАВНАЯ — RESPONSIVE
   ============================ */
@media (max-width: 968px) {
    .hero__row {
        flex-direction: column;
        text-align: center;
    }
    
    .hero__visual {
        order: -1;
        width: 350px;
        flex: none;
        margin-bottom: 30px;
    }
    
    .hero__badge--ps {
        left: 0;
        top: 5%;
    }
    
    .hero__badge--time {
        right: 0;
        bottom: 10%;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__btns,
    .hero__trust {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__visual {
        width: 280px;
    }
    
    .hero__badge {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .hero__badge--ps {
        left: -5px;
    }
    
    .hero__badge--time {
        right: -5px;
    }
}


.seo-extra-collapse{margin:1rem 0;border:1px solid rgba(201,168,76,.35);border-radius:12px;padding:.25rem 1rem 1rem}
.seo-extra-collapse>summary{cursor:pointer;font-weight:700;color:#fff;list-style:none;padding:.9rem 0}
.seo-extra-collapse>summary::-webkit-details-marker{display:none}
.seo-extra-collapse[open]>summary{color:#c9a84c}
.blog-card-grid a:hover{border-color:rgba(201,168,76,.65);transform:translateY(-2px);transition:.2s ease}


/* GEO/BLOG readability fixes */
.blog-article .container, .seo-extra-collapse .container { max-width: 1000px; }
.blog-article h1 { font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 1rem; color: #fff; }
.blog-article h2 { font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; margin: 2rem 0 .8rem; color: #fff; }
.blog-article h3 { font-size: 1.35rem; line-height: 1.25; margin: 1.2rem 0 .5rem; color: #fff; }
.blog-article p, .seo-extra-collapse p { margin: .65rem 0; color: rgba(255,255,255,.92); line-height: 1.7; }
.blog-article ul, .blog-article ol, .seo-extra-collapse ul, .seo-extra-collapse ol { margin: .6rem 0 .9rem 1.2rem; list-style: initial; }
.blog-article ol, .seo-extra-collapse ol { list-style: decimal; }
.blog-article li, .seo-extra-collapse li { margin: .35rem 0; color: rgba(255,255,255,.9); }
.blog-article table, .seo-extra-collapse table { width: 100%; border-collapse: collapse; margin: 1rem 0; overflow: hidden; border-radius: 10px; border: 1px solid rgba(201,168,76,.25); }
.blog-article th, .blog-article td, .seo-extra-collapse th, .seo-extra-collapse td { padding: .65rem .75rem; border-bottom: 1px solid rgba(201,168,76,.18); text-align: left; }
.blog-article th, .seo-extra-collapse th { color: #fff; font-weight: 700; background: rgba(201,168,76,.10); }
.blog-article td, .seo-extra-collapse td { color: rgba(255,255,255,.88); }
.blog-expert { background: rgba(201,168,76,.08); }
.blog-faq__item { padding: .9rem 1rem; margin: .75rem 0; border: 1px solid rgba(201,168,76,.25); border-radius: 10px; background: rgba(255,255,255,.02); }
.blog-faq__item h3 { margin: 0 0 .35rem; font-size: 1.1rem; color: #fff; }
.blog-faq__item p { margin: 0; color: rgba(255,255,255,.82); }
.blog-card-grid a h2 { font-family: var(--font-d); font-size: 2rem; line-height: 1.08; margin-bottom: .55rem; }
.blog-card-grid a p { color: rgba(255,255,255,.85); }
.seo-extra-collapse { margin: 1.25rem 0; border: 1px solid rgba(201,168,76,.35); border-radius: 12px; padding: .25rem 1rem 1rem; background: rgba(255,255,255,.01); }
.seo-extra-collapse > summary { cursor: pointer; font-weight: 700; color: #fff; list-style: none; padding: .9rem 0; font-size: 1.05rem; }
.seo-extra-collapse > summary::-webkit-details-marker { display: none; }
.seo-extra-collapse[open] > summary { color: #c9a84c; }


/* blog hub + article polish */
.blog-hub__container{max-width:1140px}.blog-hub__hero-grid{display:grid;grid-template-columns:1.4fr .9fr;gap:1rem;align-items:stretch}.blog-hub__chips{display:flex;gap:.55rem;flex-wrap:wrap;margin-top:1rem}.blog-hub__chips span,.blog-hub__chips a{display:inline-flex;align-items:center;padding:.4rem .7rem;border:1px solid rgba(201,168,76,.35);border-radius:999px;color:#fff;font-size:.92rem}.blog-hub__chips--links a:hover{background:rgba(201,168,76,.14)}.blog-hub__expert{display:flex;gap:.75rem;padding:1rem;border:1px solid rgba(201,168,76,.3);border-radius:12px;background:rgba(255,255,255,.02)}.blog-hub__expert img{width:76px;height:76px;border-radius:999px;object-fit:cover}.blog-card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem}.blog-card-grid a{display:block;padding:1rem;border:1px solid rgba(201,168,76,.3);border-radius:12px;text-decoration:none;color:inherit;background:rgba(255,255,255,.01)}.blog-card-grid a h2{margin:0 0 .5rem;font-size:2.2rem;line-height:1.06}.blog-card-grid a p{margin:.35rem 0}.blog-article__container{max-width:920px}.blog-article__meta{padding-top:.7rem}.blog-article__meta{border-top:1px solid rgba(201,168,76,.2)}.blog-expert{padding:1rem;border:1px solid rgba(201,168,76,.35);border-radius:12px;margin:1rem 0 1.5rem}.btn--mail{background:rgba(255,255,255,.06);color:#fff;border:1px solid rgba(201,168,76,.45)}.btn--mail:hover{background:rgba(201,168,76,.18);border-color:#c9a84c}.seo-extra-collapse section{padding-top:.5rem;padding-bottom:.5rem}@media(max-width:900px){.blog-hub__hero-grid{grid-template-columns:1fr}.blog-card-grid a h2{font-size:1.8rem}}

/* visual polish pass */
.blog-card{display:block;padding:1.05rem;border:1px solid rgba(201,168,76,.32);border-radius:12px;text-decoration:none;color:inherit;background:rgba(255,255,255,.01);min-height:100%}.blog-card__title{margin:0 0 .5rem}.blog-card__date{opacity:.72;margin-bottom:0}.blog-author-card{display:flex;gap:1rem;align-items:center;padding:.8rem;border:1px solid rgba(201,168,76,.22);border-radius:12px;background:rgba(255,255,255,.01)}.blog-author-card img{border-radius:999px;object-fit:cover}.blog-author-card p{margin:.3rem 0 0;opacity:.84}.blog-related-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:.6rem;margin-top:.5rem}.blog-related-list li{margin:0}.blog-related-list a{display:block;padding:.75rem .85rem;border:1px solid rgba(201,168,76,.22);border-radius:10px;color:rgba(255,255,255,.9);text-decoration:none}.blog-related-list a:hover{border-color:rgba(201,168,76,.55);background:rgba(201,168,76,.08)}.blog-hub .section{margin-bottom:1rem}@media(max-width:900px){.blog-card__title{font-size:1.65rem;line-height:1.12}.blog-related-list{grid-template-columns:1fr}}

/* blog layout hotfix */
.blog-hub__geo-copy{padding:1.1rem 1.1rem 1.2rem}.blog-hub__geo-copy p{max-width:90ch;margin:.65rem 0;color:rgba(255,255,255,.9);line-height:1.75}.blog-hub__category-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:.75rem;margin-top:.85rem}.blog-hub__category-grid article{border:1px solid rgba(201,168,76,.22);border-radius:10px;padding:.8rem;background:rgba(255,255,255,.01)}.blog-hub__category-grid h3{margin:0 0 .35rem;color:#fff;font-size:1.12rem}.blog-hub__category-grid p{margin:0;color:rgba(255,255,255,.84);line-height:1.55}.blog-hub__start p{max-width:90ch;line-height:1.7;font-size:1.02rem}.blog-card-grid{align-items:stretch}.blog-card{height:100%}.blog-card__title{font-size:clamp(1.55rem,2.35vw,2.05rem);line-height:1.14}.blog-card p{line-height:1.55}.blog-article .blog-article__container{max-width:980px}.blog-article__meta{padding:1rem 0;border-top:1px solid rgba(201,168,76,.2)}.blog-article__meta h2{margin:0 0 .65rem}.blog-article__meta p{font-size:1.04rem;line-height:1.72}.blog-related-list{list-style:none;padding:0;margin:.4rem 0 0}.blog-related-list li{list-style:none}.blog-related-list a{min-height:100%}.blog-author-card strong{font-size:1.24rem}@media(max-width:900px){.blog-hub__geo-copy{padding:.9rem}.blog-hub__start p{font-size:1rem}.blog-card__title{font-size:1.45rem}.blog-article__meta p{font-size:1rem}}

/* blog visual cleanup */
.blog-card-grid .blog-card__title{font-size:clamp(1.35rem,1.9vw,1.72rem);line-height:1.2;letter-spacing:.01em}
.blog-card-grid .blog-card__date{margin-top:.65rem;font-size:.93rem;color:rgba(255,255,255,.72)}
.blog-article__container > h1{font-size:clamp(2rem,4.3vw,3.1rem);line-height:1.1;margin:.15rem 0 1rem}
.blog-article__container > h2{font-size:clamp(1.45rem,3vw,2.15rem);line-height:1.2;margin:1.45rem 0 .6rem}
.blog-article__container > p{font-size:1.05rem;line-height:1.78}
.blog-article__meta a{display:inline-flex;align-items:center;padding:.42rem .72rem;border:1px solid rgba(201,168,76,.28);border-radius:999px;text-decoration:none;color:#fff;transition:.2s ease}
.blog-article__meta a:hover{background:rgba(201,168,76,.12);border-color:rgba(201,168,76,.55)}
.blog-article__meta .blog-author-card a{padding:0;border:0;border-radius:0}
@media(max-width:900px){.blog-card-grid .blog-card__title{font-size:1.28rem}.blog-article__container > p{font-size:1rem;line-height:1.7}}
.blog-breadcrumbs{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem;color:rgba(255,255,255,.7);margin:0 0 1rem}
.blog-breadcrumbs a{display:inline-flex;align-items:center;padding:.18rem .58rem;border:1px solid rgba(201,168,76,.34);border-radius:999px;text-decoration:none;color:#fff;line-height:1.25;transition:.2s ease}
.blog-breadcrumbs a:hover{background:rgba(201,168,76,.13);border-color:rgba(201,168,76,.58)}

/* final blog visual system */
.blog-hub{padding-top:1.2rem;padding-bottom:2rem}
.blog-hub .section,.blog-article .section{margin-bottom:1.15rem}
.blog-hub__hero,.blog-hub__expert-intro,.blog-hub__categories,.blog-hub__geo-copy,.blog-hub__list,.blog-hub__start{
    border:1px solid rgba(201,168,76,.2);
    border-radius:16px;
    background:linear-gradient(180deg,rgba(255,255,255,.028),rgba(255,255,255,.012));
    box-shadow:0 12px 34px rgba(0,0,0,.28);
    padding:1.3rem;
}
.blog-hub__hero{
    background:
      radial-gradient(circle at 8% 8%, rgba(201,168,76,.2), transparent 40%),
      radial-gradient(circle at 95% 90%, rgba(201,168,76,.12), transparent 35%),
      linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
}
.blog-hub__hero .sh__title{font-size:clamp(2.2rem,4.6vw,4rem);line-height:1.04;margin:.35rem 0 .85rem}
.blog-hub__hero .sh__desc{font-size:1.12rem;line-height:1.75;max-width:64ch;color:rgba(255,255,255,.9)}
.blog-hub__chips span{
    background:rgba(255,255,255,.03);
    border-color:rgba(201,168,76,.45);
    padding:.44rem .8rem;
    font-weight:600;
}
.blog-hub__expert{
    border-color:rgba(201,168,76,.34);
    background:rgba(7,9,22,.72);
    align-items:flex-start;
}
.blog-hub__expert strong{font-size:1.65rem;font-family:var(--font-d);line-height:1.08}
.blog-hub__expert p{margin-top:.45rem;font-size:1.04rem;line-height:1.64}
.blog-hub__expert-intro-grid{display:grid;grid-template-columns:1.25fr 1fr;gap:1rem;align-items:stretch}
.blog-hub__expert-intro p{max-width:80ch;color:rgba(255,255,255,.9);line-height:1.75}
.blog-hub__stat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}
.blog-hub__stat-grid article{
    border:1px solid rgba(201,168,76,.3);
    border-radius:12px;
    padding:.95rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:.2rem;
    background:rgba(255,255,255,.015);
}
.blog-hub__stat-grid strong{font-family:var(--font-d);font-size:2rem;line-height:1;color:#fff}
.blog-hub__stat-grid span{color:rgba(255,255,255,.8)}
.blog-hub__categories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:.8rem;
    margin-top:.4rem;
}
.blog-hub__categories-grid a{
    display:flex;
    flex-direction:column;
    gap:.45rem;
    border:1px solid rgba(201,168,76,.3);
    border-radius:12px;
    background:rgba(255,255,255,.012);
    padding:.95rem;
    color:#fff;
    text-decoration:none;
    transition:.22s ease;
}
.blog-hub__categories-grid a strong{font-size:1.12rem}
.blog-hub__categories-grid a span{color:rgba(255,255,255,.78);line-height:1.55}
.blog-hub__categories-grid a:hover{transform:translateY(-2px);border-color:rgba(201,168,76,.62);background:rgba(201,168,76,.1)}
.blog-hub__list .sh__title,.blog-hub__start .sh__title,.blog-hub__geo-copy .sh__title,.blog-hub__categories .sh__title{font-size:clamp(1.85rem,3.3vw,2.8rem)}
.blog-card-grid{gap:1rem}
.blog-card{
    border:1px solid rgba(201,168,76,.3);
    border-radius:14px;
    padding:1.1rem;
    background:linear-gradient(160deg,rgba(255,255,255,.022),rgba(255,255,255,.008));
    box-shadow:0 8px 22px rgba(0,0,0,.24);
    transition:.24s ease;
}
.blog-card:hover{transform:translateY(-3px);border-color:rgba(201,168,76,.62);box-shadow:0 16px 30px rgba(0,0,0,.3)}
.blog-card__title{font-size:clamp(1.4rem,2vw,1.95rem);margin:0 0 .6rem}
.blog-card p{font-size:1.01rem;line-height:1.65;color:rgba(255,255,255,.86)}
.blog-card__date{display:inline-flex;margin-top:.78rem;padding:.2rem .5rem;border-radius:999px;border:1px solid rgba(201,168,76,.26);color:rgba(255,255,255,.72);font-size:.9rem}
.blog-hub__start p{font-size:1.08rem;color:rgba(255,255,255,.92)}
.blog-hub .cta .cta__box{
    border:1px solid rgba(201,168,76,.34);
    background:radial-gradient(circle at 90% 10%, rgba(201,168,76,.12), transparent 38%), rgba(255,255,255,.015);
    box-shadow:0 16px 36px rgba(0,0,0,.28);
}

.blog-article{padding-top:1rem;padding-bottom:2.1rem}
.blog-article__container{max-width:980px}
.blog-article-hero{
    border:1px solid rgba(201,168,76,.26);
    border-radius:16px;
    padding:1.2rem 1.25rem 1.35rem;
    margin-bottom:1.05rem;
    background:
      radial-gradient(circle at 8% 8%, rgba(201,168,76,.18), transparent 42%),
      linear-gradient(170deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    box-shadow:0 16px 34px rgba(0,0,0,.28);
}
.blog-breadcrumbs{margin:0 0 .75rem}
.blog-article-hero h1{
    font-family:var(--font-d);
    font-size:clamp(2.2rem,5vw,4rem);
    line-height:1.02;
    margin:.2rem 0 .65rem;
}
.blog-article__meta-row{display:flex;flex-wrap:wrap;gap:.45rem;margin-bottom:.8rem}
.blog-article__meta-row span{
    display:inline-flex;
    padding:.26rem .66rem;
    border:1px solid rgba(201,168,76,.34);
    border-radius:999px;
    color:rgba(255,255,255,.86);
    font-size:.89rem;
}
.blog-expert{
    margin:.45rem 0 .7rem;
    border:1px solid rgba(201,168,76,.4);
    background:rgba(201,168,76,.09);
    padding:.9rem 1rem;
}
.blog-article__subtitle{
    font-size:1.13rem;
    line-height:1.78;
    color:rgba(255,255,255,.94);
    max-width:84ch;
}
.blog-article-flow{
    border:1px solid rgba(201,168,76,.2);
    border-radius:16px;
    padding:1.2rem 1.25rem;
    background:rgba(255,255,255,.012);
}
.blog-article-flow > h2{
    font-family:var(--font-d);
    font-size:clamp(1.55rem,3vw,2.35rem);
    margin:1.55rem 0 .62rem;
    line-height:1.15;
}
.blog-article-flow > h2:first-child{margin-top:0}
.blog-article-flow > h3{
    font-size:1.28rem;
    margin:1.2rem 0 .48rem;
    color:#fff;
}
.blog-article-flow p,.blog-article-flow li{
    font-size:1.04rem;
    line-height:1.78;
    color:rgba(255,255,255,.91);
}
.blog-note{
    border-radius:12px;
    padding:.78rem .9rem;
    margin:.72rem 0;
    border:1px solid rgba(201,168,76,.32);
    background:rgba(255,255,255,.015);
    line-height:1.66;
}
.blog-note strong{color:#fff}
.blog-note--important{background:rgba(173,128,26,.18);border-color:rgba(201,168,76,.5)}
.blog-note--tip{background:rgba(51,112,95,.2);border-color:rgba(83,171,145,.45)}
.blog-note--error{background:rgba(140,56,66,.22);border-color:rgba(198,97,110,.42)}
.blog-note--summary{background:rgba(108,89,163,.24);border-color:rgba(155,136,220,.45)}
.blog-article__meta{
    border-radius:14px;
    border:1px solid rgba(201,168,76,.24);
    padding:1rem 1.05rem;
    background:rgba(255,255,255,.012);
    margin-top:.92rem;
}
.blog-article__meta h2{font-size:clamp(1.48rem,2.6vw,2.2rem)}
.blog-author-card{border-color:rgba(201,168,76,.32);background:rgba(255,255,255,.02)}
.blog-article__meta--cta{
    background:radial-gradient(circle at 85% 15%, rgba(201,168,76,.13), transparent 40%), rgba(255,255,255,.012);
    border-color:rgba(201,168,76,.4);
}
.blog-article__cta-text{font-size:1.05rem;color:rgba(255,255,255,.9);margin:.2rem 0 .8rem}
.blog-article__cta-btns{display:flex;flex-wrap:wrap;gap:.55rem}
.blog-article__cta-btns .btn{min-width:130px;justify-content:center}
.blog-article__meta--related .blog-related-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:.68rem}
.blog-article__meta--related .blog-related-list a{
    min-height:84px;
    border:1px solid rgba(201,168,76,.3);
    border-radius:12px;
    background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.008));
    color:#fff;
    font-size:1.03rem;
    line-height:1.5;
    transition:.22s ease;
}
.blog-article__meta--related .blog-related-list a:hover{
    border-color:rgba(201,168,76,.62);
    transform:translateY(-2px);
    background:rgba(201,168,76,.11);
}

@media (max-width: 1000px){
    .blog-hub__expert-intro-grid{grid-template-columns:1fr}
}
@media (max-width: 900px){
    .blog-hub{padding-top:.9rem}
    .blog-hub__hero,.blog-hub__expert-intro,.blog-hub__categories,.blog-hub__geo-copy,.blog-hub__list,.blog-hub__start{padding:1rem}
    .blog-hub__hero .sh__desc{font-size:1rem}
    .blog-hub__stat-grid{grid-template-columns:1fr 1fr}
    .blog-article-hero,.blog-article-flow,.blog-article__meta{padding:.95rem}
    .blog-article-hero h1{font-size:clamp(1.8rem,8vw,2.6rem)}
    .blog-article-flow p,.blog-article-flow li{font-size:1rem;line-height:1.7}
    .blog-article__cta-btns .btn{min-width:unset;flex:1 1 calc(50% - .55rem)}
}
@media (max-width: 640px){
    .blog-hub__stat-grid{grid-template-columns:1fr}
    .blog-hub__categories-grid{grid-template-columns:1fr}
    .blog-article__meta--related .blog-related-list{grid-template-columns:1fr}
    .blog-article__cta-btns .btn{flex:1 1 100%}
}
