.hero {
    position: relative;
    padding: 180px 0 120px;
    background: radial-gradient(100% 100% at 50% 0%, #111115 0%, var(--color-bg) 100%);
    overflow: hidden;
}

.hero__soundwave {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.wave-bar {
    width: 6px;
    height: 15px;
    background-color: var(--color-neon);
    border-radius: 3px;
    animation: bounce-wave 1.2s ease-in-out infinite alternate;
}

.wave-bar:nth-child(2) { animation-delay: 0.15s; animation-duration: 0.8s; }
.wave-bar:nth-child(3) { animation-delay: 0.3s; animation-duration: 1.4s; }
.wave-bar:nth-child(4) { animation-delay: 0.45s; animation-duration: 1.1s; }
.wave-bar:nth-child(5) { animation-delay: 0.1s; animation-duration: 1.3s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; animation-duration: 0.9s; }
.wave-bar:nth-child(7) { animation-delay: 0.25s; animation-duration: 1.5s; }
.wave-bar:nth-child(8) { animation-delay: 0.35s; animation-duration: 1s; }
.wave-bar:nth-child(9) { animation-delay: 0.6s; animation-duration: 1.2s; }
.wave-bar:nth-child(10) { animation-delay: 0.2s; animation-duration: 0.7s; }

@keyframes bounce-wave {
    0% { height: 10px; }
    100% { height: 80px; }
}

.hero__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-neon);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    background-color: rgba(255, 81, 0, 0.05);
    text-transform: uppercase;
}

.hero__title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero__title-neon {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-neon);
    text-shadow: 0 0 20px rgba(255, 81, 0, 0.4);
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speaker-vibe {
    position: relative;
    width: clamp(280px, 35vw, 420px);
    height: clamp(280px, 35vw, 420px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--color-bg-darker);
}

.speaker-vibe__ring-outer {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 4px dotted rgba(255, 183, 0, 0.4);
    animation: spin-dots 60s linear infinite;
}

@keyframes spin-dots {
    100% { transform: rotate(360deg); }
}

.speaker-vibe__ring-mid {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 81, 0, 0.1) 0%, rgba(255, 183, 0, 0.25) 70%, rgba(255, 81, 0, 0.6) 100%);
    box-shadow: inset 0 0 30px rgba(255, 81, 0, 0.5), 0 0 40px rgba(255, 81, 0, 0.3);
    animation: speaker-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
}

@keyframes speaker-pulse {
    0% { transform: scale(0.96); box-shadow: inset 0 0 20px rgba(255, 81, 0, 0.4), 0 0 30px rgba(255, 81, 0, 0.2); }
    100% { transform: scale(1.02); box-shadow: inset 0 0 40px rgba(255, 81, 0, 0.7), 0 0 60px rgba(255, 81, 0, 0.5); }
}

.speaker-vibe__ring-inner {
    position: relative;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, #0e0e12, #0e0e12 4px, #16161c 8px, #0e0e12 12px);
    border: 6px solid #20202b;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.speaker-vibe__logo-text {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    font-style: italic;
    color: var(--color-neon);
    text-shadow: 0 0 15px rgba(255, 81, 0, 0.7);
    line-height: 1;
}

.directions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.direction-card {
    position: relative;
    background-color: #0d0d12;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.direction-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-6px);
    box-shadow: var(--shadow-neon);
}

.direction-card__glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 81, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: transform var(--transition);
}

.direction-card:hover .direction-card__glow {
    transform: translate(-20px, 20px) scale(1.3);
}

.direction-card__number {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-neon);
    opacity: 0.6;
    margin-bottom: 24px;
    display: block;
    z-index: 1;
}

.direction-card__title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    z-index: 1;
}

.direction-card__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
    z-index: 1;
}

.direction-card__detail {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.about__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about__content {
    display: flex;
    flex-direction: column;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-stat__num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-neon);
    text-shadow: 0 0 8px rgba(255, 81, 0, 0.3);
    line-height: 1;
}

.about-stat__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.about__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__photo-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
}

.photo-card {
    position: absolute;
    width: 75%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-neon);
    border: 4px solid var(--color-bg-darker);
    background-color: #16161c;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-card--1 {
    top: 0;
    left: 0;
    transform: rotate(-4deg);
    z-index: 1;
}

.photo-card--2 {
    bottom: 0;
    right: 0;
    transform: rotate(6deg);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 32px;
}

.team-card {
    background-color: #0d0d12;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.team-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.team-card__img-wrapper {
    aspect-ratio: 1/1;
    background-color: #16161c;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.team-card__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.team-card:hover .team-card__img-wrapper img {
    transform: scale(1.03);
}

.team-card__info {
    padding: 24px;
}

.team-card__name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-card__role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    display: block;
    line-height: 1.4;
}

.contacts__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

.contacts__info {
    display: flex;
    flex-direction: column;
}

.contacts__desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contacts__list li {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contacts__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-neon);
}

.contacts__value {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.contacts__link:hover {
    color: var(--color-neon);
    text-shadow: 0 0 8px rgba(255, 81, 0, 0.2);
}

.contacts__form-wrapper {
    background-color: #0d0d12;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.contacts__form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.contacts__form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.contacts__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-darker);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.form-group input::placeholder {
    color: #52525b;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-neon);
    background-color: var(--color-bg);
    box-shadow: 0 0 0 3px rgba(255, 81, 0, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

.contacts__map {
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
    .hero__container,
    .about__container {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .hero__content,
    .about__content {
        text-align: center;
    }
    
    .hero__tag,
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .about__visual {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .contacts__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 130px 0 80px;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .speaker-vibe {
        margin-top: 16px;
    }
    
    .directions__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .direction-card {
        padding: 36px 24px;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contacts__form-wrapper {
        padding: 32px 24px;
    }
    
    .contacts__map {
        height: 360px;
    }
}