:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a24;
    --text-primary: #e4e4e7;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-cyan: #00f0ff;
    --accent-cyan-dim: rgba(0, 240, 255, 0.15);
    --accent-purple: #a855f7;
    --accent-purple-dim: rgba(168, 85, 247, 0.15);
    --accent-green: #10b981;
    --accent-green-dim: rgba(16, 185, 129, 0.15);
    --gradient-mesh: radial-gradient(ellipse at 20% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 240, 255, 0.3);
    --font-display: 'Syne', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

body {
    font-family: var(--font-display);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

/* Scanline Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    pointer-events: none;
    z-index: 9999;
}

/* Noise Texture */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9998;
}

::selection { background: var(--accent-cyan); color: var(--bg-primary); }

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    box-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo::before {
    content: '>';
    color: var(--accent-cyan);
    animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before { content: '['; opacity: 0; transition: opacity 0.3s ease; color: var(--accent-cyan); }
.nav-link::after { content: ']'; opacity: 0; transition: opacity 0.3s ease; color: var(--accent-cyan); }

.nav-link:hover, .nav-link.active { color: var(--accent-cyan); }
.nav-link:hover::before, .nav-link:hover::after,
.nav-link.active::before, .nav-link.active::after { opacity: 1; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-mesh);
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    overflow: hidden;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

.particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 20s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 15s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 19s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; transform: translateY(90vh) scale(1); }
    90% { opacity: 0.6; transform: translateY(10vh) scale(1); }
    100% { transform: translateY(0) scale(0); opacity: 0; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text { max-width: 650px; }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.typewriter {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-right: 3px solid var(--accent-cyan);
    padding-right: 0.1em;
    animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
    0%, 100% { border-color: var(--accent-cyan); }
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-meta {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-meta span { color: var(--accent-cyan); }

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn i { width: 18px; height: 18px; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #00c8d4);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glow);
}

.btn-secondary:hover {
    background: var(--accent-cyan-dim);
    border-color: var(--accent-cyan);
}

.btn-green {
    background: linear-gradient(135deg, var(--accent-green), #059669);
    color: white;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.5);
}

.btn-full { width: 100%; justify-content: center; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 60px;
}

.profile-container {
    position: relative;
    width: 350px; height: 350px;
    flex-shrink: 0;
}

.holo-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
                conic-gradient(from 0deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan)) border-box;
    animation: rotate 8s linear infinite;
}

.holo-ring::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 240, 255, 0.3);
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.profile-image {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.2);
}

/* Sections */
section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

#value { background: var(--bg-secondary); }
#trust { background: var(--bg-primary); }
#workflow { background: var(--bg-secondary); }
#contact { background: var(--bg-primary); }

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Value Cards */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.1);
}

.value-card:hover::before { transform: scaleX(1); }

.value-card.featured {
    border-color: var(--accent-purple);
}

.value-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}

.value-badge {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-purple);
    background: var(--accent-purple-dim);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-icon {
    width: 60px; height: 60px;
    background: var(--accent-cyan-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
}

.value-icon i { width: 28px; height: 28px; }

.value-icon.purple {
    background: var(--accent-purple-dim);
    color: var(--accent-purple);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features { list-style: none; }

.value-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}

.value-features li:last-child { border-bottom: none; }

.value-features li i {
    color: var(--accent-cyan);
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 18px; height: 18px;
}

.value-features li i.purple { color: var(--accent-purple); }

.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.tag:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

/* Tech Stack */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tech-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.tech-icon {
    width: 50px; height: 50px;
    margin: 0 auto 1rem;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon i { width: 28px; height: 28px; }

.tech-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
    border-left: 2px solid var(--border-subtle);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px; top: 0;
    width: 14px; height: 14px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-cyan);
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.timeline-company {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-role {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.timeline-desc {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}

.industry-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.industry-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.industry-card i {
    color: var(--accent-cyan);
    width: 24px; height: 24px;
}

.industry-card span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* CV Request Form */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.cv-form-wrapper {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    position: relative;
    animation: slideDown 0.3s ease;
}

.cv-form-wrapper.active {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cv-form-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.cv-form-close:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
    transform: rotate(90deg);
}

.cv-form-close i { width: 18px; height: 18px; }

.cv-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cv-form-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cv-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cv-form-row .form-input {
    flex: 1;
}

.cv-privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.cv-privacy-note i {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

/* Workflow Steps */
.workflow-steps {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    border-color: var(--border-glow);
    transform: translateX(10px);
}

.step-number {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-primary);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Box */
.cta-box {
    background: var(--bg-tertiary);
    border: 2px solid var(--accent-cyan);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, var(--accent-cyan-dim), transparent 70%);
    pointer-events: none;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-box .btn { position: relative; }

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--accent-cyan);
    transform: translateX(5px);
}

.contact-method.highlight {
    border-color: var(--accent-green);
    background: var(--accent-green-dim);
}

.contact-method i {
    color: var(--accent-cyan);
    width: 24px; height: 24px;
}

.contact-method.highlight i { color: var(--accent-green); }

.contact-method-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.contact-method-value {
    font-family: var(--font-mono);
    font-size: 0.95rem;
}

.contact-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-location i { width: 18px; height: 18px; color: var(--accent-cyan); }

/* Contact Form */
.contact-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan-dim);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

.form-select { cursor: pointer; }
.form-select option { background: var(--bg-tertiary); }

.form-textarea { min-height: 120px; resize: vertical; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input {
    width: 18px; height: 18px;
    accent-color: var(--accent-cyan);
    margin-top: 0.2rem;
    cursor: pointer;
}

.form-checkbox span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-checkbox a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.form-checkbox a:hover { text-decoration: underline; }

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover { color: var(--accent-cyan); }

/* Glitch Effect */
.glitch { position: relative; }

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    color: var(--accent-cyan);
}

.glitch::after {
    animation: glitch-2 2s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    color: var(--accent-purple);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-visual { order: -1; }
    .profile-container { width: 280px; height: 280px; }
    .holo-ring { width: 310px; height: 310px; }
    .value-grid { grid-template-columns: 1fr; }
    .tech-stack { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Global mobile overflow fix */
    html, body { overflow-x: hidden !important; }
    *, *::before, *::after { max-width: 100%; }
    
    /* Navigation */
    .nav { padding: 1rem 0; }
    .nav-container { padding: 0 1rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav-links.active { display: flex; }
    .nav-links li { padding: 1rem 0; border-bottom: 1px solid var(--border-subtle); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-toggle { display: flex; }
    
    /* Hero */
    .hero { padding: 6rem 1rem 3rem; min-height: auto; }
    .hero-grid { display: none; }
    .hero-title { font-size: 1.8rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-meta { font-size: 0.75rem; margin-bottom: 1.5rem; }
    .hero-cta { flex-direction: column; gap: 0.75rem; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .profile-container { width: 200px; height: 200px; margin-bottom: 1.5rem; flex-shrink: 0; max-width: none; }
    .holo-ring { width: 230px; height: 230px; max-width: none; }
    .profile-image { max-width: none; }
    
    /* Sections */
    section { padding: 3rem 1rem; }
    .section-header { margin-bottom: 2rem; }
    .section-tag { font-size: 0.7rem; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.95rem; }
    
    /* Value Cards */
    .value-card { padding: 1.5rem; }
    .value-badge { top: 1rem; right: 1rem; font-size: 0.65rem; }
    .value-icon { width: 50px; height: 50px; margin-bottom: 1rem; }
    .value-icon i { width: 24px; height: 24px; }
    .value-title { font-size: 1.2rem; }
    .value-description { font-size: 0.9rem; margin-bottom: 1rem; }
    .value-features li { font-size: 0.85rem; padding: 0.5rem 0; }
    .value-features li i { width: 16px; height: 16px; }
    .value-tags { gap: 0.4rem; margin-top: 1rem; padding-top: 1rem; }
    .tag { font-size: 0.65rem; padding: 0.3rem 0.6rem; }
    
    /* Tech Stack */
    .tech-card { padding: 1.5rem; }
    .tech-icon { width: 40px; height: 40px; }
    .tech-icon i { width: 22px; height: 22px; }
    .tech-title { font-size: 1rem; }
    .tech-desc { font-size: 0.8rem; }
    .tech-tags { gap: 0.3rem; }
    
    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
    .stat-item { padding: 1.25rem 1rem; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.7rem; }
    
    /* Timeline */
    .timeline { margin-bottom: 2rem; }
    .timeline-item { padding-left: 2rem; padding-bottom: 2rem; }
    .timeline-item::before { width: 10px; height: 10px; left: -6px; }
    .timeline-date { font-size: 0.7rem; }
    .timeline-company { font-size: 1.1rem; }
    .timeline-role { font-size: 0.85rem; }
    .timeline-desc { font-size: 0.85rem; }
    
    /* Industries */
    .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 2rem; }
    .industry-card { padding: 1rem 0.75rem; }
    .industry-card i { width: 20px; height: 20px; }
    .industry-card span { font-size: 0.7rem; }
    
    /* CTA Box */
    .cta-box { padding: 2rem 1.5rem; margin-top: 2rem; }
    .cta-box h3 { font-size: 1.2rem; }
    .cta-box p { font-size: 0.9rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    
    /* CV Form */
    .cv-form-wrapper { padding: 1.5rem; margin-top: 1.5rem; }
    .cv-form-close { width: 32px; height: 32px; top: 0.75rem; right: 0.75rem; }
    .cv-form-title { font-size: 1.1rem; padding-right: 2rem; }
    .cv-form-description { font-size: 0.85rem; margin-bottom: 1rem; }
    .cv-form-row { flex-direction: column; gap: 0.75rem; }
    .cv-form-row .btn { width: 100%; }
    .cv-privacy-note { font-size: 0.7rem; }
    
    /* Workflow */
    .workflow-steps { gap: 1rem; }
    .workflow-step { grid-template-columns: 1fr; text-align: center; padding: 1.5rem; gap: 1rem; }
    .step-number { margin: 0 auto; width: 50px; height: 50px; font-size: 1.2rem; }
    .step-content h3 { font-size: 1.1rem; }
    .step-content p { font-size: 0.85rem; }
    
    /* Contact */
    .contact-info h3 { font-size: 1.4rem; }
    .contact-info p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .contact-methods { gap: 0.75rem; margin-bottom: 1.5rem; }
    .contact-method { padding: 1rem; gap: 0.75rem; }
    .contact-method i { width: 20px; height: 20px; }
    .contact-method-label { font-size: 0.7rem; }
    .contact-method-value { font-size: 0.85rem; }
    .contact-location { font-size: 0.8rem; }
    .contact-location i { width: 16px; height: 16px; }
    
    /* Contact Form */
    .contact-form { padding: 1.5rem; border-radius: 12px; }
    .form-group { margin-bottom: 1rem; }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .form-label { font-size: 0.7rem; margin-bottom: 0.4rem; }
    .form-input, .form-select, .form-textarea { padding: 0.875rem; font-size: 0.9rem; }
    .form-textarea { min-height: 100px; }
    .form-checkbox { gap: 0.5rem; }
    .form-checkbox input { width: 16px; height: 16px; }
    .form-checkbox span { font-size: 0.8rem; }
    .btn { padding: 0.875rem 1.5rem; font-size: 0.85rem; }
    .btn-full { padding: 1rem; }
    
    /* Footer */
    .footer { padding: 2rem 1rem; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { gap: 1.5rem; }
    .footer-link { font-size: 0.8rem; }
    .footer-copy { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .profile-container { width: 160px; height: 160px; }
    .holo-ring { width: 190px; height: 190px; }
    
    .section-title { font-size: 1.3rem; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 1rem; }
    .stat-number { font-size: 1.75rem; }
    
    .industries-grid { grid-template-columns: 1fr 1fr; }
    
    .value-title { font-size: 1.1rem; }
    .value-features li { flex-direction: column; gap: 0.5rem; text-align: center; }
    .value-features li i { margin: 0 auto; }
    
    .timeline-company { font-size: 1rem; }
    .tech-tags { justify-content: flex-start; }
    
    .contact-method { flex-direction: column; text-align: center; }
}
