/* === Audionyx 프로듀서 페이지 스타일 === */

/* === 브랜드 디자인 시스템 변수 상속 === */
:root {
    /* 색상 */
    --color-primary: #3EB489;
    --color-primary-hover: #2A9D74;
    --color-accent: #A8E6CE;
    --color-neutral-dark: #0C0C0C;
    --color-neutral-light: #F0FFF0;
    --color-surface: #FFFFFF;
    --color-border: #2A9D74;
    --color-text-light: #F0FFF0;
    --color-text-dark: #0C0C0C;
    --color-text-gray: #A7D3C9;
    
    /* 배경 및 테마 색상 */
    --dark-bg: #000000;
    --darker-bg: #000000;
    --bg-dark: var(--dark-bg);
    --bg-darker: var(--darker-bg);
    
    --nav-height: 84px;

    /* 카드 및 글래스모피즘 */
    --card-bg-gradient: linear-gradient(135deg, #000000 0%, #3EB489 55%, #000000 100%);
    --bg-card: rgba(12, 12, 12, 0.65);
    --bg-card-hover: rgba(20, 20, 20, 0.75);
    --bg-glass: rgba(12, 12, 12, 0.7);
    --border-glass: rgba(168, 230, 206, 0.2);
    --lime-color: #A8E6CE;

    /* 타이포그래피 */
    --font-primary: 'Pretendard', 'Inter', sans-serif;
    --font-numeric: 'Inter', 'Pretendard', sans-serif;
    
    /* 간격 & 사이즈 */
    --container-width: 1400px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* 테두리 반경 */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* 그림자 */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* === 네비게이션 정렬 수정 (공통 CSS 상속) === */
.menu-area {
    flex: 1;
}

/* === 가로스크롤 방지 === */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-light);
    background-color: var(--dark-bg);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    overflow: hidden;
}

/* === 풀스크린 히어로 배너 === */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            to bottom, 
            rgba(0, 0, 0, 0.1) 0%, 
            rgba(0, 0, 0, 0.2) 50%, 
            rgba(0, 0, 0, 0.4) 80%, 
            rgba(0, 0, 0, 0.7) 95%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.2) 0%, 
            rgba(0, 0, 0, 0.1) 50%, 
            rgba(62, 180, 137, 0.15) 100%
        );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw + 1rem, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw + 0.2rem, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-section .btn-primary,
.producer-profile-section .btn-primary,
.contact-section .btn-primary {
    padding: 0.9rem 1.8rem !important;
    background: rgba(62, 180, 137, 0.25) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 8px 25px rgba(62, 180, 137, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    min-width: auto !important;
    width: auto !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-section .btn-primary::before,
.producer-profile-section .btn-primary::before,
.contact-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.hero-section .btn-primary:hover,
.producer-profile-section .btn-primary:hover,
.contact-section .btn-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: rgba(62, 180, 137, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 
        0 12px 35px rgba(62, 180, 137, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.4) !important;
}

.hero-section .btn-primary:hover::before,
.producer-profile-section .btn-primary:hover::before,
.contact-section .btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover::before {
    left: 100%;
}

/* === 프로듀서 프로필 섹션 (mikey.jpg 사용) === */
.producer-profile-section {
    padding: var(--spacing-xxl) 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.producer-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(62, 180, 137, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(62, 180, 137, 0.1) 0%, 
        transparent 50%, 
        rgba(62, 180, 137, 0.05) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.producer-profile-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.profile-image-wrapper:hover .producer-profile-image {
    transform: scale(1.05);
}

.profile-content {
    padding: var(--spacing-lg);
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.profile-badge-icon {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.profile-badge-text {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    font-weight: 500;
}

.profile-title {
    font-size: clamp(1.8rem, 3vw + 0.5rem, 2.2rem);
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.profile-subtitle {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
    line-height: 1.4;
}

.profile-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    font-weight: 500;
}

.profile-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
}

.skill-tag {
    background: rgba(62, 180, 137, 0.1);
    border: 1px solid rgba(62, 180, 137, 0.3);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(62, 180, 137, 0.2);
    transform: translateY(-2px);
}

.profile-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(62, 180, 137, 0.3);
}

.profile-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(62, 180, 137, 0.4);
}

/* === 장르 태그 슬라이더 === */
.genre-tags-section {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.genre-tags-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    text-align: center;
    line-height: 1.3;
}

.genre-tags-slider {
    overflow: hidden;
    padding: 0.5rem 0 1rem 0;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.genre-tags-track {
    display: flex;
    animation: scroll-infinite 40s linear infinite;
    will-change: transform;
}

.genre-tags-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.genre-tags {
    display: flex;
    gap: 0.8rem;
    min-width: max-content;
    padding: 0.5rem 0;
    flex-shrink: 0;
}

.genre-tag {
    background: rgba(62, 180, 137, 0.1);
    border: 1px solid rgba(62, 180, 137, 0.3);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.genre-tag:hover {
    background: rgba(62, 180, 137, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(62, 180, 137, 0.3);
}

/* === 프로듀서 소개 섹션 === */
.producer-intro {
    padding: var(--spacing-xxl) 0;
    background: var(--darker-bg);
    position: relative;
}

.producer-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(62, 180, 137, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(62, 180, 137, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.producer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.producer-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.producer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-bg-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.producer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.producer-card:hover::before {
    opacity: 0.1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(62, 180, 137, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.card-icon svg {
    color: var(--color-primary);
    width: 48px;
    height: 48px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.card-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* === 서비스 프로세스 섹션 === */
.process-section {
    padding: var(--spacing-xxl) 0;
    background: var(--dark-bg);
    position: relative;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) .step-content {
    direction: ltr;
    text-align: left;
}

.process-step:nth-child(odd) .step-content {
    text-align: right;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(62, 180, 137, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    max-width: 400px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.step-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* === 연락처 섹션 === */
.contact-section {
    padding: var(--spacing-xxl) 0;
    background: var(--darker-bg);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(62, 180, 137, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(62, 180, 137, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.contact-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.contact-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.visual-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.visual-content svg {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.visual-content h3 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.visual-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* === 푸터 === */
.site-footer {
    background: var(--darker-bg);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(62, 180, 137, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-shadow: 0 0 10px rgba(62, 180, 137, 0.4);
}

.footer-tagline {
    color: var(--color-text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.footer-nav-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav li {
    list-style: none;
}

.footer-nav a {
    color: var(--color-text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(62, 180, 137, 0.1);
    color: var(--color-text-gray);
}

/* === 반응형 디자인 === */
@media (max-width: 1024px) {
    .hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .profile-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .profile-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-section .btn-primary,
    .producer-profile-section .btn-primary,
    .contact-section .btn-primary,
    .btn-secondary {
        width: 200px !important;
        padding: 0.8rem 1.5rem !important;
        backdrop-filter: blur(15px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(150%) !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step,
    .process-step:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .process-step:nth-child(even) .step-content,
    .process-step:nth-child(odd) .step-content {
        text-align: center;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .producer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .producer-card {
        padding: var(--spacing-md);
    }

    .hero-text {
        padding: 0 var(--spacing-md);
    }

    .hero-actions {
        gap: var(--spacing-sm);
    }

    .contact-actions {
        justify-content: center;
    }

    .hero-section .btn-primary,
    .producer-profile-section .btn-primary,
    .contact-section .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.3rem !important;
        width: 180px !important;
        backdrop-filter: blur(12px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(140%) !important;
    }

    .visual-card {
        padding: var(--spacing-md);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-nav-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .profile-skills {
        justify-content: center;
    }
    
    .genre-tags-title {
        font-size: 1.1rem;
    }
    
    .genre-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .producer-profile-image {
        height: 400px;
    }

    .hero-text {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .producer-intro,
    .process-section,
    .contact-section {
        padding: var(--spacing-xl) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .step-content {
        padding: 0 var(--spacing-sm);
    }

    .process-step {
        gap: var(--spacing-sm);
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .genre-tags-section {
        padding: var(--spacing-md) 0;
    }
    
    .genre-tags-title {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .genre-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
} 