
/* HERO ПК */
.hero-section {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 6rem;
    position: relative;
}

.hero-grid {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 0.95;
    margin: 0;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--color-muted);
}

.hero-desc {
    max-width: 28rem;
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 1rem;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats span:first-child {
    font-size: 2rem;
    line-height: 1;
}

.hero-stats span:last-child {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

.hero-image-wrapper {
    flex: 0 0 55%;
    position: relative;
}

.hero-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
    border: none;
    backdrop-filter: none;
}

.hero-image img {
    width: 100%;
    height: 86dvh;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: var(--glass-bg);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-ink);
}

.hero-badge .badge-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.hero-badge .badge-title {
    font-size: 1.1rem;
}

.scroll-down {
    display: flex;
    justify-content: center;
    color: var(--color-muted);
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}


/* =========================================
   СЕКЦИЯ "О ДАРЬЕ" (ПК)
   ========================================= */
.about-section {
    padding: 8rem 0 6rem 0;
}

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    flex: 0 0 48%;
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: none;
    backdrop-filter: none;
}

.about-image img {
    width: 100%;
    height: 70dvh;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-content h2 {
    font-size: 4rem;
    line-height: 1.05;
    margin: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.8;
}

.about-content .btn-outline {
    align-self: flex-start;
}

/* =========================================
   ПЕРЕОПРЕДЕЛЕНИЕ ТАБОВ ДЛЯ ПК
   ========================================= */
.pc-tabs-block .hero-tabs {
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0;
    gap: 0.5rem;
}

/* =========================================
   СЕКЦИЯ "УСЛУГИ" (ПК)
   ========================================= */
.services-section {
    padding: 6rem 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.services-header h2 {
    font-size: 4rem;
    line-height: 1.05;
    margin-top: 0.25rem;
}

.services-link {
    font-size: 0.875rem;
    color: var(--color-muted);
    transition: color 0.3s ease;
}

.services-link:hover {
    color: var(--color-ink);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Воздушность: базовая позиция */
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* Движение при наведении */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.service-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--color-bg);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.service-title {
    font-size: 1.25rem;
}

.service-desc {
    font-size: 0.75rem;
    color: var(--color-muted);
}

.service-arrow {
    font-size: 1.25rem;
    color: var(--color-ink);
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(4px);
}

/* =========================================
   СЕКЦИЯ "ДО / ПОСЛЕ" (ПК)
   ========================================= */
.before-after-section {
    padding: 4rem 0 6rem 0;
}

.ba-header h2 {
    font-size: 4rem;
    line-height: 1.05;
    margin-top: 0.25rem;
    margin-bottom: 2rem;
}

.ba-grid {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

/* Слайдер */
.ba-slider-wrapper {
    flex: 0 0 50%;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: none;
    backdrop-filter: none;
    background: var(--color-bg);
}

.ba-slider {
    /* ... твои текущие стили ... */
    user-select: none; /* Убирает синее выделение на ПК */
    -webkit-user-select: none;
}

.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    z-index: 1;
    /* Изначально видно 50% правой картинки */
    clip-path: inset(0 50% 0 0);
}

.ba-before {
    z-index: 0;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 2;
    width: 2px;
    background: rgba(255, 255, 255, 0.6);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle .ba-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.4rem;
    height: 2.4rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #333;
}

.ba-badge {
    position: absolute;
    top: 1rem;
    z-index: 2;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    color: #333;
}

.ba-badge-before {
    left: 1rem;
}

.ba-badge-after {
    right: 1rem;
}

/* Текстовый блок */
.ba-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.ba-text-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ba-quote {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--color-ink);
}

.ba-author {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.ba-content .btn-outline {
    align-self: flex-start;
}


/* =========================================
   СЕКЦИЯ "FAQ" (ПК)
   ========================================= */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 800px; /* Ограничиваем ширину, чтобы было красиво по центру */
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 4rem;
    line-height: 1.05;
    margin-top: 0.25rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    font-family: inherit;
    font-size: 1.25rem;
    color: var(--color-ink);
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 1.25rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--color-ink);
    color: #fff;
    border-color: var(--color-ink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.8;
}

/* =========================================
   СЕКЦИЯ "ДВА ПУТИ" (ПК)
   ========================================= */
.paths-section {
    padding: 6rem 0;
}

.paths-header {
    text-align: center;
    margin-bottom: 3rem;
}

.paths-header h2 {
    font-size: 4rem;
    line-height: 1.05;
    margin-top: 0.25rem;
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.path-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    border-radius: var(--radius-lg);
    min-height: 22rem;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.path-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.path-card-light {
    background: #f5f3ee; /* Светло-бежевый */
    color: var(--color-ink);
}

.path-card-dark {
    background: var(--color-ink);
    color: #fff;
}

.path-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.path-content h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0;
}

.path-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 90%;
    color: var(--color-muted);
}

.paths-dark-desc {
    color: rgba(255, 255, 255, 0.7);
}

.paths-dark-eyebrow {
    color: rgba(255, 255, 255, 0.5);
}

.path-link {
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.path-card:hover .path-link {
    transform: translateX(4px);
}

.paths-dark-link {
    color: #fff;
}


