:root {
    --bg-color: #050505;
    --text-main: #e5e5e5;
    --text-muted: #a3a3a3;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Glow Effect */
.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, rgba(5, 5, 5, 0) 50%);
    z-index: -1;
    animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    padding-top: 4rem;
}

/* Buttons */
.cta-group {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 1.6rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #fff;
    color: #000;
}

.btn.primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn.secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn.secondary:hover {
    border-color: var(--glass-highlight);
    background: rgba(255, 255, 255, 0.08);
}

/* Services / Grid */
.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-highlight);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 0.8));
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.profile-frame {
    flex-shrink: 0;
    position: relative;
    width: 250px;
    height: 250px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    opacity: 0.3;
    z-index: -1;
    filter: blur(10px);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-text .lead {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text strong {
    color: #fff;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    text-align: center;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    margin: 2rem 0;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--accent-blue);
    border-color: transparent;
    transform: scale(1.05);
}

.language-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive for About */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-text h2 {
        text-align: center;
    }

    .profile-frame {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
}