/* ============================
   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;
}

/* ============================
   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__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__btns {
    display: flex;
    gap: 10px;
}

.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;
}
