* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0a0d1a 0%, #121520 50%, #0a0d1a 100%);
    color: #e8e5dc;
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 28px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 13, 26, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(232, 229, 220, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.nav-logo {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #e8d4a8;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #f0e0c0;
}

.nav-links {
    display: flex;
    gap: 56px;
    list-style: none;
}

.nav-links a {
    color: rgba(232, 229, 220, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 6px 0;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8d4a8, transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #e8d4a8;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 140px 32px 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    opacity: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 212, 168, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 0.9; 
        transform: translate(-50%, -50%) scale(1.08); 
    }
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: linear-gradient(135deg, #ffffff 0%, #e8d4a8 40%, #d4c5a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1.1;
    word-spacing: 0.05em;
}

.hero .subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.75rem);
    color: rgba(232, 212, 168, 0.75);
    font-weight: 400;
    letter-spacing: 0.25em;
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, rgba(232, 212, 168, 0.6), transparent);
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards, float 3.5s ease-in-out infinite;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 160px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 120px;
    align-items: start;
}

.about-text h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 0%, #e8d4a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
}

.about-text p {
    font-size: 1.08rem;
    line-height: 2;
    color: rgba(232, 229, 220, 0.75);
    margin-bottom: 28px;
    font-weight: 400;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat {
    padding: 42px 32px;
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.05) 0%, rgba(232, 212, 168, 0.02) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e8d4a8 50%, transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    border-color: rgba(232, 212, 168, 0.35);
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.1) 0%, rgba(232, 212, 168, 0.05) 100%);
    box-shadow: 0 20px 60px rgba(232, 212, 168, 0.2);
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 200;
    color: #e8d4a8;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(232, 229, 220, 0.55);
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
}

/* Projects Section */
.projects {
    padding: 160px 0;
    position: relative;
}

.section-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 200;
    text-align: center;
    margin-bottom: 120px;
    letter-spacing: -0.03em;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8d4a8, transparent);
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.project {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    padding: 80px 0;
    border-top: 1px solid rgba(232, 229, 220, 0.06);
    position: relative;
}

.project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #e8d4a8, transparent);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.project:hover::before {
    width: 200px;
}

.project:nth-child(even) {
    direction: rtl;
}

.project:nth-child(even) > * {
    direction: ltr;
}

.project-info {
    padding: 24px 0;
}

.project-number {
    font-size: 0.88rem;
    color: rgba(232, 212, 168, 0.45);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.project h3 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 200;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1.25;
}

.project-header-with-level {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.project-header-with-level h3 {
    margin-bottom: 0;
}

.skill-level {
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.skill-level.beginner {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.skill-level.intermediate {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.skill-level.advanced {
    background: rgba(232, 212, 168, 0.12);
    color: #e8d4a8;
    border: 1px solid rgba(232, 212, 168, 0.25);
}

.skill-level.expert {
    background: rgba(212, 197, 160, 0.12);
    color: #d4c5a0;
    border: 1px solid rgba(212, 197, 160, 0.25);
}

.skill-level:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 212, 168, 0.15);
}

.project-description {
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(232, 229, 220, 0.7);
    margin-bottom: 40px;
    font-weight: 400;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.tag {
    padding: 12px 28px;
    border: 1px solid rgba(232, 212, 168, 0.2);
    border-radius: 40px;
    font-size: 0.82rem;
    color: rgba(232, 212, 168, 0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 0.04em;
    background: rgba(232, 212, 168, 0.04);
    text-transform: uppercase;
}

.tag:hover {
    border-color: rgba(232, 212, 168, 0.5);
    color: #e8d4a8;
    transform: translateY(-4px);
    background: rgba(232, 212, 168, 0.12);
    box-shadow: 0 12px 28px rgba(232, 212, 168, 0.2);
}

.project-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.06) 0%, rgba(232, 212, 168, 0.03) 100%);
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image:hover {
    border-color: rgba(232, 212, 168, 0.4);
    transform: scale(1.04);
    box-shadow: 0 24px 80px rgba(232, 212, 168, 0.25);
}

.project-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.12) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.project-image:hover::before {
    opacity: 1;
}

.placeholder-text {
    font-size: 2.2rem;
    color: rgba(232, 212, 168, 0.45);
    font-weight: 300;
    letter-spacing: 0.12em;
    z-index: 1;
}

/* Positions Section */
.positions {
    padding: 160px 0;
    position: relative;
    border-top: 1px solid rgba(232, 229, 220, 0.06);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    margin-top: 100px;
}

.position-card {
    padding: 44px 40px;
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.85) 0%, rgba(18, 21, 32, 0.7) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(232, 212, 168, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-card:hover {
    border-color: rgba(232, 212, 168, 0.35);
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.1) 0%, rgba(232, 212, 168, 0.05) 100%);
    box-shadow: 0 20px 70px rgba(232, 212, 168, 0.25);
}

.position-card:hover::before {
    transform: scaleX(1);
}

.position-card.current {
    border-color: rgba(232, 212, 168, 0.28);
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.08) 0%, rgba(232, 212, 168, 0.04) 100%);
    box-shadow: 0 8px 32px rgba(232, 212, 168, 0.15);
}

.position-card.irl {
    border-color: rgba(212, 197, 160, 0.22);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 18px;
}

.position-card h3 {
    font-size: 1.7rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.position-badge {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.current-badge {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.shutdown-badge {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.resigned-badge {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.position-badge:hover {
    transform: translateY(-2px);
}

.position-role {
    font-size: 1.2rem;
    color: rgba(232, 212, 168, 0.92);
    font-weight: 400;
    margin-bottom: 14px;
}

.position-members {
    font-size: 0.92rem;
    color: rgba(238, 255, 0, 0.85);
    margin-bottom: 20px;
    font-weight: 400;
}

.position-description {
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(232, 229, 220, 0.65);
    font-weight: 400;
    margin-bottom: 12px;
}

.position-description:last-of-type {
    margin-bottom: 0;
}

/* Extra Info Section */
.extra-info {
    padding: 160px 0;
    border-top: 1px solid rgba(232, 229, 220, 0.06);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 100px;
}

.info-card {
    padding: 56px 44px;
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.05) 0%, rgba(232, 212, 168, 0.02) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e8d4a8, #d4c5a0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    border-color: rgba(232, 212, 168, 0.35);
    transform: translateY(-14px);
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.1) 0%, rgba(232, 212, 168, 0.05) 100%);
    box-shadow: 0 24px 80px rgba(232, 212, 168, 0.25);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 32px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.7rem;
    font-weight: 300;
    margin-bottom: 28px;
    color: #ffffff;
}

.info-card p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: rgba(232, 229, 220, 0.7);
    font-weight: 400;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.info-card li {
    padding: 15px 0;
    color: rgba(232, 229, 220, 0.7);
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(232, 229, 220, 0.06);
    transition: all 0.3s ease;
    font-weight: 400;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: '▸';
    color: #e8d4a8;
    margin-right: 14px;
    font-size: 0.95rem;
}

.info-card li:hover {
    color: rgba(232, 229, 220, 0.9);
    padding-left: 10px;
}

/* Values Section */
.values-section {
    margin-top: 140px;
    padding-top: 100px;
    border-top: 1px solid rgba(232, 229, 220, 0.06);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    margin-top: 100px;
}

.value-card {
    padding: 50px 42px;
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.05) 0%, rgba(232, 212, 168, 0.02) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #e8d4a8, #d4c5a0);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    border-color: rgba(232, 212, 168, 0.35);
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.1) 0%, rgba(232, 212, 168, 0.05) 100%);
    box-shadow: 0 20px 70px rgba(232, 212, 168, 0.25);
}

.value-card:hover::before {
    height: 100%;
}

.value-icon {
    font-size: 2.8rem;
    margin-bottom: 26px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.08);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff;
}

.value-card p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(232, 229, 220, 0.7);
    font-weight: 400;
}

/* Personal Info Section */
.personal-info {
    margin-top: 140px;
    padding-top: 100px;
    border-top: 1px solid rgba(232, 229, 220, 0.06);
}

.info-details {
    max-width: 960px;
    margin: 100px auto 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.detail-item {
    display: flex;
    padding: 36px 44px;
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.05) 0%, rgba(232, 212, 168, 0.02) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 28px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(to bottom, #e8d4a8, #d4c5a0);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-item:hover {
    border-color: rgba(232, 212, 168, 0.35);
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.1) 0%, rgba(232, 212, 168, 0.05) 100%);
    transform: translateX(10px);
}

.detail-item:hover::before {
    width: 4px;
}

.detail-label {
    font-size: 1.05rem;
    color: rgba(232, 212, 168, 0.95);
    font-weight: 500;
    min-width: 220px;
    letter-spacing: 0.02em;
}

.detail-value {
    font-size: 1rem;
    color: rgba(232, 229, 220, 0.75);
    font-weight: 400;
    line-height: 1.75;
    flex: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 72px 32px;
    color: rgba(232, 229, 220, 0.4);
    margin-top: 120px;
    border-top: 1px solid rgba(232, 229, 220, 0.06);
}

footer p {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(24px); }
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for stats */
.stat:nth-child(1) { transition-delay: 0.1s; }
.stat:nth-child(2) { transition-delay: 0.15s; }
.stat:nth-child(3) { transition-delay: 0.2s; }
.stat:nth-child(4) { transition-delay: 0.25s; }
.stat:nth-child(5) { transition-delay: 0.3s; }

/* Staggered animation for info cards */
.info-card:nth-child(1) { transition-delay: 0.1s; }
.info-card:nth-child(2) { transition-delay: 0.15s; }
.info-card:nth-child(3) { transition-delay: 0.2s; }
.info-card:nth-child(4) { transition-delay: 0.25s; }

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 36px;
    }

    .nav {
        padding: 24px 36px;
    }

    .nav-links {
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .project {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .project:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 28px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-links {
        gap: 28px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 24px;
    }

    .projects, .about, .extra-info, .positions {
        padding: 120px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .detail-item {
        flex-direction: column;
        gap: 14px;
        padding: 28px 32px;
    }

    .detail-label {
        min-width: auto;
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .stat {
        padding: 36px 28px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .project-tags, .tag {
        font-size: 0.75rem;
    }

    .info-card, .value-card {
        padding: 44px 36px;
    }
}

/* ============================================ */
/* REVIEWS SECTION - ADD TO BOTTOM OF FILE */
/* ============================================ */

.reviews {
    padding: 160px 0;
    border-top: 1px solid rgba(232, 229, 220, 0.06);
}

/* Review Form */
.review-form-container {
    max-width: 800px;
    margin: 100px auto 80px;
    padding: 56px 48px;
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.05) 0%, rgba(232, 212, 168, 0.02) 100%);
}

.review-form-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 0.95rem;
    color: rgba(232, 212, 168, 0.85);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(10, 13, 26, 0.6);
    border: 1px solid rgba(232, 212, 168, 0.2);
    border-radius: 12px;
    color: #e8e5dc;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(232, 212, 168, 0.5);
    background: rgba(10, 13, 26, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
    font-size: 2.5rem;
}

.star {
    color: rgba(232, 212, 168, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star:hover,
.star.active {
    color: #e8d4a8;
    transform: scale(1.1);
}

.submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.15) 0%, rgba(232, 212, 168, 0.08) 100%);
    border: 1px solid rgba(232, 212, 168, 0.3);
    border-radius: 12px;
    color: #e8d4a8;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    margin-top: 12px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.25) 0%, rgba(232, 212, 168, 0.15) 100%);
    border-color: rgba(232, 212, 168, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 212, 168, 0.2);
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 80px;
}

.review-card {
    padding: 40px 44px;
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.85) 0%, rgba(18, 21, 32, 0.7) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(232, 212, 168, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    border-color: rgba(232, 212, 168, 0.35);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.1) 0%, rgba(232, 212, 168, 0.05) 100%);
    box-shadow: 0 20px 60px rgba(232, 212, 168, 0.2);
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.review-author {
    flex: 1;
}

.review-author-name {
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 6px;
}

.review-author-position {
    font-size: 0.9rem;
    color: rgba(232, 212, 168, 0.7);
}

.review-rating {
    display: flex;
    gap: 4px;
    font-size: 1.4rem;
    color: #e8d4a8;
}

.review-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(232, 229, 220, 0.75);
    margin-bottom: 20px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.review-date {
    font-size: 0.85rem;
    color: rgba(232, 229, 220, 0.4);
}

.delete-review-btn {
    padding: 8px 20px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.delete-review-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.review-card.admin-mode .delete-review-btn {
    display: block;
}

.no-reviews {
    text-align: center;
    padding: 80px 40px;
    color: rgba(232, 229, 220, 0.5);
    font-size: 1.1rem;
}

/* Admin Panel */
.admin-toggle {
    text-align: center;
    margin-top: 60px;
}

.admin-toggle-btn {
    padding: 12px 32px;
    background: rgba(232, 212, 168, 0.08);
    border: 1px solid rgba(232, 212, 168, 0.2);
    border-radius: 10px;
    color: rgba(232, 212, 168, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-toggle-btn:hover {
    background: rgba(232, 212, 168, 0.12);
    border-color: rgba(232, 212, 168, 0.3);
}

.admin-panel {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    border: 1px solid rgba(232, 212, 168, 0.15);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.05) 0%, rgba(232, 212, 168, 0.02) 100%);
}

.admin-panel h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 28px;
    color: #ffffff;
    text-align: center;
}

.admin-auth {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.admin-auth input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(10, 13, 26, 0.6);
    border: 1px solid rgba(232, 212, 168, 0.2);
    border-radius: 10px;
    color: #e8e5dc;
    font-size: 0.95rem;
}

.admin-auth input:focus {
    outline: none;
    border-color: rgba(232, 212, 168, 0.5);
}

.admin-auth button {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.15) 0%, rgba(232, 212, 168, 0.08) 100%);
    border: 1px solid rgba(232, 212, 168, 0.3);
    border-radius: 10px;
    color: #e8d4a8;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-auth button:hover {
    background: linear-gradient(135deg, rgba(232, 212, 168, 0.25) 0%, rgba(232, 212, 168, 0.15) 100%);
}

.admin-info {
    text-align: center;
    color: rgba(232, 229, 220, 0.7);
    font-size: 0.95rem;
}

/* Responsive for Reviews */
@media (max-width: 768px) {
    .reviews {
        padding: 120px 0;
    }

    .review-form-container {
        padding: 40px 32px;
        margin: 80px auto 60px;
    }

    .review-card {
        padding: 32px 28px;
    }

    .review-header {
        flex-direction: column;
        gap: 16px;
    }

    .admin-auth {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .review-form-container {
        padding: 32px 24px;
    }

    .star-rating {
        font-size: 2rem;
    }
}