* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    /* Серебряная палитра */
    --silver-dark: #0d0d0d;
    --silver-darker: #050505;
    --silver-medium: #2a2a2a;
    --silver-light: #4a4a4a;
    --silver-bright: #e8e8e8;
    --silver-shine: #ffffff;
    --silver-glow: rgba(255, 255, 255, 0.1);
    
    /* Градиенты серебра */
    --gradient-silver: linear-gradient(90deg, #1a1a1a 0%, #ffffff 50%, #1a1a1a 100%);
    --gradient-silver-vertical: linear-gradient(180deg, #1a1a1a 0%, #ffffff 50%, #1a1a1a 100%);
    --gradient-silver-diagonal: linear-gradient(135deg, #0d0d0d 0%, #ffffff 50%, #0d0d0d 100%);
    --gradient-silver-card: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(26, 26, 26, 0.95) 100%);
    
    /* Фон */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-strong: rgba(255, 255, 255, 0.06);
    
    /* Текст */
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    
    /* Границы */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-bright: rgba(255, 255, 255, 0.3);
    
    /* Тени и свечение */
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
    --shadow-silver: 0 20px 60px rgba(0, 0, 0, 0.8);
    --glow-silver: 0 0 40px rgba(255, 255, 255, 0.15);
    --glow-silver-strong: 0 0 60px rgba(255, 255, 255, 0.25);
    
    /* Анимации */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Устаревшие переменные для совместимости */
    --primary: #ffffff;
    --primary-light: #ffffff;
    --accent: #ffffff;
    --accent-light: #ffffff;
    --secondary: #ffffff;
    --secondary-light: #ffffff;
    --gray: #707070;
    --light-gray: rgba(255, 255, 255, 0.1);
    --dark: #000000;
    --darker: #050505;
    --light: #0a0a0a;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --glow-emerald: 0 0 40px rgba(255, 255, 255, 0.15);
    --glow-amber: 0 0 40px rgba(255, 255, 255, 0.15);
    --glow-cyan: 0 0 40px rgba(255, 255, 255, 0.15);
    --glow: 0 0 40px rgba(255, 255, 255, 0.15);
    
    --border-radius: 20px;
}

body {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02), transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.75;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    pointer-events: none;
    z-index: 0;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-container {
    position: relative;
    z-index: 1;
}

/* Header - Металлический эффект */
header {
    background: linear-gradient(180deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(13, 13, 13, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-bright);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    animation: headerShine 4s linear infinite;
}

@keyframes headerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-silver);
    opacity: 0.6;
    animation: silverFlow 3s ease-in-out infinite;
}

@keyframes silverFlow {
    0%, 100% { 
        background-position: 0% 50%;
        opacity: 0.6;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 0.9;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.logo::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    border-radius: 50%;
    transition: var(--transition);
    filter: blur(20px);
}

.logo:hover::before {
    opacity: 1;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    transform: scale(1.05) rotate(5deg);
}

.logo-icon-small {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 900;
    background: var(--gradient-silver);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    position: relative;
    transition: var(--transition);
    animation: silverTextShine 4s ease-in-out infinite;
}

@keyframes silverTextShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    transform: scale(1.02);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-silver);
    border-radius: 999px;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 8px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
    border-radius: 50%;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--text-color);
}

nav a:hover::before, nav a.active::before {
    width: 100%;
}

nav a:hover::after, nav a.active::after {
    width: 80%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 100;
    position: relative;
    margin-left: auto;
    order: 3;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: var(--border-bright);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gradient-silver);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.mobile-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px) saturate(200%);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 90;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    flex: 1;
}

.mobile-menu ul li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    padding: 0.75rem;
    transition: var(--transition);
    border-radius: 12px;
    position: relative;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gradient-silver);
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.mobile-menu a:hover, .mobile-menu a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.5rem;
}

.mobile-menu a:hover::before, .mobile-menu a.active::before {
    height: 60%;
}

.breadcrumbs {
    padding: 2rem 0;
    font-size: 0.98rem;
    color: var(--text-primary);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.breadcrumbs a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-silver);
    transition: var(--transition);
    border-radius: 2px;
}

.breadcrumbs a:hover {
    color: var(--text-primary);
}

.breadcrumbs a:hover::after {
    width: 100%;
}

.breadcrumbs span {
    margin: 0 12px;
    color: var(--gray);
    opacity: 0.6;
}

/* About Page Styles */
.about-header {
    text-align: center;
    margin: 3rem 0 4rem;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    background: var(--gradient-silver);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
    animation: titleFloat 4s ease-in-out infinite, gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.page-subtitle {
    font-size: 1.18rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-silver);
    border-radius: 999px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.section-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-silver);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: gradientShift 3s ease infinite;
}

.section-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.section-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 350px;
    background: var(--gradient-silver);
    background-size: 200% 200%;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-silver), 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    animation: buttonSilverShine 3s ease-in-out infinite;
}

@keyframes buttonSilverShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        transparent, 
        rgba(255, 255, 255, 0.1)
    );
    animation: placeholderShine 3s linear infinite;
}

@keyframes placeholderShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-silver-strong), 0 25px 70px rgba(0, 0, 0, 0.7);
    border-color: var(--border-bright);
}

.image-placeholder i {
    font-size: 5.5rem;
    color: #000000;
    opacity: 0.95;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), var(--glow-emerald), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    box-shadow: var(--glow-emerald), 0 0 40px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-cyan), 0 0 50px rgba(6, 182, 212, 0.4);
}

.value-icon i {
    font-size: 2.2rem;
    color: #000000;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.value-card:hover h3 {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.78;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2.8rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(6, 182, 212, 0.1) 50%, 
        rgba(245, 158, 11, 0.1) 100%
    );
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), var(--glow-emerald), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.team-card:hover::before {
    opacity: 1;
}

.team-avatar {
    width: 136px;
    height: 136px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    box-shadow: var(--glow-emerald), 0 0 40px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.team-card:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-cyan), 0 0 50px rgba(6, 182, 212, 0.4);
    border-color: var(--primary);
}

.team-avatar i {
    font-size: 3.2rem;
    color: #000000;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.team-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.team-card:hover h3 {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-role {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.team-card p:last-child {
    color: var(--text-secondary);
    line-height: 1.78;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    background: var(--gradient-silver-card);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid var(--border-color);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-silver-vertical);
    opacity: 0.5;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-bright);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.6rem;
    background: var(--gradient-silver);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 48px;
    text-align: center;
    padding-top: 0.25rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.contact-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-link {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-logo-block {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.social-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-silver);
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-silver), 0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--border-bright);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-icon:hover i {
    color: #000000;
    transform: rotate(360deg);
}

/* Footer */
footer {
    background: #050505;
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    box-shadow: inset 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-silver);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-silver);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(8px);
}

.footer-links a i {
    transition: var(--transition);
}

.footer-links a:hover i {
    color: var(--text-primary);
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-text h2 {
        font-size: 1.7rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0 1rem;
    }
    
    .about-header {
        margin: 2rem 0 3rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .contact-section {
        padding: 2rem 1.5rem;
    }
    
    .value-card, .team-card {
        padding: 1.5rem;
    }
}

