/* ========== Front Page (Homepage) Only ========== */
/* Подключается вместе с common.css */

@keyframes shimmerRightToLeft {
    0% { transform: translateX(115vw); }
    100% { transform: translateX(-115vw); }
}

/* Цикличное отдаление/приближение фона героя */
@keyframes heroBgZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Hero - Interactive Slider */
.hero-slider-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider-section .hero {
    padding: 0;
}

.hero-social {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.hero-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease, color 0.35s ease;
}

.hero-social a:hover {
    background: #CFAD65;
    color: #000000;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    width: 100%;
    min-height: 100vh;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 100px;
}

.hero-slide .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: #000000;
    z-index: 0;
}

.hero-slide .hero-bg-inner {
    position: absolute;
    inset: -2%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroBgZoom 12s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide .hero-bg-inner {
        animation: none;
    }
}

.hero-slide .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slide .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23CFAD65' stroke-opacity='0.06' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 2;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Поочерёдное плавное появление текста при смене слайда */
@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-slide .hero-content .hero-title,
.hero-slide .hero-content .hero-subtitle,
.hero-slide .hero-content .btn {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}

.hero-slide.active .hero-content .hero-title {
    animation: heroContentIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-slide.active .hero-content .hero-subtitle {
    animation: heroContentIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.hero-slide.active .hero-content .btn {
    animation: heroContentIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* Slider dots - bottom left */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 24px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-dots .dot:hover {
    border-color: #CFAD65;
    background: rgba(207, 173, 101, 0.5);
    transform: scale(1.25);
    box-shadow: 0 0 0 2px rgba(207, 173, 101, 0.3);
}

.hero-dots .dot:focus-visible {
    outline: 2px solid #CFAD65;
    outline-offset: 2px;
}

.hero-dots .dot.active {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.hero-dots .dot.active:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

/* Slider arrows - right side */
.hero-slider-nav {
    position: absolute;
    right: 24px;
    bottom: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-arrow {
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.5);
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-arrow:hover {
    background: #CFAD65;
    border-color: #CFAD65;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(207, 173, 101, 0.4);
}

.hero-arrow:focus-visible {
    outline: 2px solid #CFAD65;
    outline-offset: 2px;
}

/* Consulting Services - stats layout (percent + short text) */
.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-stat {
    text-align: left;
}

.service-percent {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #CFAD65;
    line-height: 1.1;
    margin-bottom: 16px;
}

.service-stat p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.section-dark .service-stat p {
    color: rgba(255, 255, 255, 0.75);
}

/* Consulting Leaders (decorative + animated line) */
.consulting-leaders {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #1a1714 0%, #252119 40%, #1c1916 100%);
    color: #FFFFFF;
}

.leaders-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Точки: двигаются, пропадают и меняют размер */
.leaders-dots {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.leaders-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #CFAD65;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(207, 173, 101, 0.5);
    animation: leadersDotPulse 5s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes leadersDotPulse {
    0%, 100% {
        opacity: 0.15;
        transform: translate(0, 0) scale(0.7);
    }
    25% {
        opacity: 0.5;
        transform: translate(3px, -4px) scale(1.1);
    }
    50% {
        opacity: 0.08;
        transform: translate(-2px, 2px) scale(0.85);
    }
    75% {
        opacity: 0.45;
        transform: translate(-3px, -2px) scale(1.05);
    }
}

.leaders-dot:nth-child(1)  { left: 4%;   top: 8%;  animation-delay: 0s;    animation-duration: 4.5s; }
.leaders-dot:nth-child(2)  { left: 18%;  top: 14%; animation-delay: 0.8s;  animation-duration: 5.2s; }
.leaders-dot:nth-child(3)  { left: 92%;  top: 6%;  animation-delay: 1.5s;  animation-duration: 4.8s; }
.leaders-dot:nth-child(4)  { left: 78%;  top: 22%; animation-delay: 2.1s;  animation-duration: 5.5s; }
.leaders-dot:nth-child(5)  { left: 12%;  top: 35%; animation-delay: 0.3s;  animation-duration: 5s;  }
.leaders-dot:nth-child(6)  { left: 52%;  top: 12%; animation-delay: 1.2s;  animation-duration: 4.2s; }
.leaders-dot:nth-child(7)  { left: 35%;  top: 28%; animation-delay: 2.5s;  animation-duration: 5.8s; }
.leaders-dot:nth-child(8)  { left: 88%;  top: 38%; animation-delay: 0.6s;  animation-duration: 4.6s; }
.leaders-dot:nth-child(9)  { left: 6%;   top: 58%; animation-delay: 1.8s;  animation-duration: 5.3s; }
.leaders-dot:nth-child(10) { left: 65%;  top: 48%; animation-delay: 0.4s;  animation-duration: 4.9s; }
.leaders-dot:nth-child(11) { left: 42%;  top: 55%; animation-delay: 2.2s;  animation-duration: 5.1s; }
.leaders-dot:nth-child(12) { left: 95%;  top: 62%; animation-delay: 1s;   animation-duration: 4.4s; }
.leaders-dot:nth-child(13) { left: 22%;  top: 72%; animation-delay: 1.6s;  animation-duration: 5.4s; }
.leaders-dot:nth-child(14) { left: 58%;  top: 78%; animation-delay: 0.2s;  animation-duration: 4.7s; }
.leaders-dot:nth-child(15) { left: 8%;   top: 88%; animation-delay: 2.8s;  animation-duration: 5.6s; }

.leaders-visual {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(207, 173, 101, 0.15) 0%, transparent 60%);
    opacity: 0.8;
}

.animated-line-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    transform: translateY(-50%);
    overflow: hidden;
    pointer-events: none;
}

.animated-line {
    position: absolute;
    left: 50%;
    width: 30vw;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(207, 173, 101, 0) 0%,
        rgba(207, 173, 101, 0.3) 10%,
        #CFAD65 20%,
        #CFAD65 80%,
        rgba(207, 173, 101, 0.3) 90%,
        rgba(207, 173, 101, 0) 100%);
    animation: shimmerRightToLeft 4s linear infinite;
    will-change: transform;
    transform: translateX(115vw);
}

.consulting-leaders .container,
.consulting-leaders-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.consulting-leaders-content {
    padding: 24px 0;
}

.leaders-title {
    color: #CFAD65;
    text-align: center;
}

.leaders-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.leaders-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}


/* Consulting Leaders: background particles (coming soon style) */
.leaders-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.leaders-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #CFAD65;
    border-radius: 50%;
    opacity: 0.5;
    animation: leadersFloat 14s infinite ease-in-out;
    will-change: transform, opacity;
}

.leaders-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.leaders-particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 16s; }
.leaders-particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 14s; }
.leaders-particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 15s; }
.leaders-particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 13s; }
.leaders-particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 17s; }
.leaders-particle:nth-child(7) { left: 20%; animation-delay: 6s; animation-duration: 11s; }
.leaders-particle:nth-child(8) { left: 60%; animation-delay: 0.5s; animation-duration: 18s; }

@keyframes leadersFloat {
    0%, 100% {
        transform: translateY(100%) translateX(0) scale(0);
        opacity: 0;
    }
    12% { opacity: 0.5; }
    50% {
        transform: translateY(50%) translateX(15px) scale(1);
        opacity: 0.7;
    }
    88% { opacity: 0.5; }
    100% {
        transform: translateY(-20%) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Consulting Leaders: circles (coming soon style) */
.leaders-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.leaders-circle {
    position: absolute;
    border: 2px solid rgba(207, 173, 101, 0.2);
    border-radius: 50%;
    animation: leadersPulse 4s ease-in-out infinite;
    will-change: transform, opacity;
}

.leaders-circle-1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.leaders-circle-2 {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 12%;
    animation-delay: 1.2s;
}

.leaders-circle-3 {
    width: 140px;
    height: 140px;
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes leadersPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    .leaders-particle,
    .leaders-circle {
        animation: none;
        opacity: 0.2;
    }
    .leaders-dot {
        animation: none;
        opacity: 0.25;
        transform: scale(1);
    }
}

/* Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.expertise-img-placeholder {
    aspect-ratio: 1;
    background-color: rgba(0,0,0,0.05);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.expertise-image:hover .expertise-img-placeholder {
    box-shadow: 0 12px 40px rgba(207, 173, 101, 0.15);
    transform: scale(1.02);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.expertise-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #CFAD65;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.1);
    background: #b8954a;
}

.expertise-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.expertise-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.section-dark.expertise .expertise-item h4 {
    color: #FFFFFF;
}

.section-dark.expertise .expertise-item p {
    color: rgba(255, 255, 255, 0.75);
}

.section-dark.expertise .expertise-icon {
    color: #CFAD65;
}

@media (max-width: 768px) {
    .expertise-icon {
        transform: scale(1.1);
        background: #b8954a;
    }
}

/* Testimonial - person cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    border: 1px solid transparent;
    transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.testimonial-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.08);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-body {
    flex: 1;
    min-width: 0;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #555;
}

.section-dark.testimonial .testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark.testimonial .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.section-dark.testimonial .testimonial-quote {
    color: rgba(255, 255, 255, 0.9);
}

.section-dark.testimonial .testimonial-name {
    color: #FFFFFF;
}

.section-dark.testimonial .testimonial-role {
    color: rgba(255, 255, 255, 0.6);
}


/* Process */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
    padding: 24px 16px;
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #CFAD65;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-step:hover .process-number {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(207, 173, 101, 0.4);
}

.process-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: #CFAD65;
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.process-arrow {
    color: #CFAD65;
    font-size: 1.5rem;
    margin-top: 60px;
}

/* Projects - slider */
.project-slider-wrap {
    position: relative;
}

.project-showcase {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.project-slides {
    display: flex;
    width: 100%;
    min-height: 400px;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.project-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    min-height: 400px;
}

.project-slide .project-image {
    position: absolute;
    inset: 0;
}

.project-slide .project-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-slide .project-overlay {
    position: relative;
    z-index: 2;
    max-width: 480px;
    padding: 48px 40px;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent);
    color: #FFFFFF;
}

.project-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.5;
}


.project-slider-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.project-arrow {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 2px solid #555;
    background: #FFFFFF;
    color: #000000;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.project-arrow:hover {
    border-color: #CFAD65;
    background: #CFAD65;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(207, 173, 101, 0.3);
}

.project-arrow:focus-visible {
    outline: 2px solid #CFAD65;
    outline-offset: 2px;
}

.project-dots {
    display: flex;
    gap: 8px;
}

.project-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #555;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.project-dot:hover {
    border-color: #CFAD65;
    background: rgba(207, 173, 101, 0.4);
    transform: scale(1.25);
    box-shadow: 0 0 0 2px rgba(207, 173, 101, 0.25);
}

.project-dot:focus-visible {
    outline: 2px solid #CFAD65;
    outline-offset: 2px;
}

.project-dot.active {
    background: #CFAD65;
    border-color: #CFAD65;
}

.project-dot.active:hover {
    background: #CFAD65;
    border-color: #CFAD65;
    transform: scale(1.25);
    box-shadow: 0 0 0 2px rgba(207, 173, 101, 0.4);
}

.section-dark.projects .section-heading {
    color: #CFAD65;
}

.section-dark.projects .project-arrow {
    border-color: rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
}

.section-dark.projects .project-arrow:hover {
    border-color: #CFAD65;
    background: #CFAD65;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(207, 173, 101, 0.4);
}

.section-dark.projects .project-dot {
    border-color: rgba(255, 255, 255, 0.6);
}

.section-dark.projects .project-dot:hover {
    border-color: #CFAD65;
    background: rgba(207, 173, 101, 0.4);
    transform: scale(1.25);
    box-shadow: 0 0 0 2px rgba(207, 173, 101, 0.3);
}

.section-dark.projects .project-dot.active,
.section-dark.projects .project-dot.active:hover {
    border-color: #CFAD65;
    background: #CFAD65;
}

.section-dark.projects .project-dot.active:hover {
    transform: scale(1.25);
    box-shadow: 0 0 0 2px rgba(207, 173, 101, 0.4);
}

/* Consultants */
.consultants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.consultant-card {
    text-align: center;
}

.consultant-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.consultant-card:hover .consultant-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(207, 173, 101, 0.25);
}

.consultant-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.consultant-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Let's Talk CTA */
.lets-talk {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23CFAD65' stroke-opacity='0.08' stroke-width='0.5'/%3E%3C/svg%3E");
    z-index: 2;
}

.lets-talk .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: #CFAD65;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

/* Та же анимация наведения у кнопки в Let's Talk (перекрывает .reveal и [data-aos]) */
.lets-talk .btn.btn-outline {
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease !important;
}

/* Front page responsive */
@media (max-width: 1024px) {
    .services-stats-grid {
        grid-template-columns: 1fr;
    }
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    .expertise-image {
        order: -1;
    }
    .expertise-img-placeholder {
        max-height: 320px;
    }
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider-section,
    .hero-slider,
    .hero-slides,
    .hero-slide {
        min-height: 70vh;
    }
    .expertise .expertise-inner {
        overflow-x: visible;
    }
    .expertise .container {
        overflow-x: visible;
    }
    .expertise-image {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        box-sizing: border-box;
    }
    .expertise-img-placeholder {
        width: 100%;
        aspect-ratio: auto;
        min-height: 200px;
        max-height: 280px;
        border-radius: 0;
    }
    .hero-slider-nav {
        right: 16px;
        bottom: 32px;
    }
    .hero-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    .hero-social {
        left: 16px;
    }
    .hero-social a {
        width: 40px;
        height: 40px;
    }
    .hero-dots {
        left: 16px;
        bottom: 32px;
    }
    .hero-slide {
        padding: 100px 16px 80px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .consultants-grid {
        grid-template-columns: 1fr;
    }
    .project-overlay {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        padding: 90px 16px 70px;
    }
    .hero-social {
        left: 12px;
    }
    .hero-dots {
        left: 12px;
        bottom: 24px;
    }
    .hero-slider-nav {
        right: 12px;
        bottom: 24px;
        gap: 8px;
    }
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
}
