:root {
    /* Main Theme Variables - Clean Light Mode */
    --bg-main: #fcfcfc;
    --bg-panel: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    
    /* Accents */
    --accent-blue: #2563eb; 
    --accent-red: #e11d48;
    --accent-green: #10b981;
    --accent-green-bg: #d1fae5;
    
    /* Terminal Colors */
    --term-bg: #1e1e1e;
    --term-header: #2d2d2d;
    --term-text: #d4d4d4;
    --term-keyword: #569cd6;
    --term-string: #ce9178;
    --term-function: #dcdcaa;
    --term-variable: #9cdcfe;
    --term-operator: #d4d4d4;
    --term-prompt: #4af626;
    
    --mac-red: #ff5f56;
    --mac-yellow: #ffbd2e;
    --mac-green: #27c93f;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Grid Pattern */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: var(--bg-main);
}

/* Typography Utility */
.font-mono {
    font-family: 'Fira Code', monospace;
}
.text-blue { color: var(--accent-blue); }
.text-muted { color: var(--text-muted); }
.mb-3 { margin-bottom: 1rem; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-panel);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    background-color: #0f172a;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}
.logo-circle-small {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nav Pill */
.nav-pill {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    padding: 0.3rem 1rem;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
    padding: 0.4rem 0.6rem;
    border-radius: 9999px;
}

.nav-links a:hover {
    color: var(--text-primary);
    background-color: rgba(0,0,0,0.03);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.2s;
}
.social-icon:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn-sm {
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

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

.btn-dark {
    background-color: #0f172a;
    color: white;
    border: 1px solid #0f172a;
}
.btn-dark:hover {
    background-color: #1e293b;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Language Toggle */
:root:not([lang="id"]) .lang-id { display: none !important; }
:root[lang="id"] .lang-en { display: none !important; }

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease;
}
.lang-btn:hover { color: var(--text-primary); }

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Main Layout */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 40px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-green-bg);
    color: var(--accent-green);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

.hero-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Terminal Window UI */
.terminal-window {
    background-color: var(--term-bg);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background-color: var(--term-header);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    position: relative;
}

.terminal-buttons { display: flex; gap: 8px; }
.terminal-buttons span { width: 12px; height: 12px; border-radius: 50%; }
.close { background-color: var(--mac-red); }
.minimize { background-color: var(--mac-yellow); }
.maximize { background-color: var(--mac-green); }

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #888;
    font-size: 0.75rem;
}

.terminal-body {
    padding: 1.5rem;
    color: var(--term-text);
    min-height: 320px;
    line-height: 1.6;
}

.term-line { margin-bottom: 0.5rem; }
.term-line.mb-4 { margin-bottom: 1.5rem; }
.term-prompt { color: var(--term-prompt); margin-right: 8px; }
.term-keyword { color: var(--term-keyword); }
.term-string { color: var(--term-string); }
.term-function { color: var(--term-function); }
.term-operator { color: var(--term-operator); }
.term-variable { color: var(--term-variable); }

.terminal-footer {
    border-top: 1px solid #333;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.7rem;
}
.terminal-footer-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
}

/* Sections */
.section { padding: 60px 0 30px 0; }

.section-title {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8; /* Slate-400 */
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
}

/* Wide Card Layout (Academic Background) */
.card-wide {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.card-wide-content { max-width: 80%; }
.card-wide-title { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }
.card-wide-subtitle { font-size: 0.9rem; color: #64748b; margin-bottom: 0.5rem; }
.card-wide-gpa { font-size: 0.85rem; color: var(--accent-blue); font-weight: 600; }
.card-wide-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.mt-2 { margin-top: 0.5rem; }
.badge-year { font-family: 'Fira Code', monospace; font-size: 0.8rem; color: #94a3b8; background-color: var(--bg-main); padding: 4px 12px; border-radius: 9999px; font-weight: 500; }

/* Certifications Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.cert-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cert-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.cert-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.issuer-text { font-size: 0.65rem; font-weight: 800; color: var(--accent-blue); letter-spacing: 1px; text-transform: uppercase; }
.badge-verified { font-size: 0.7rem; font-weight: 600; color: #94a3b8; }
.cert-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; line-height: 1.3; }
.cert-id { font-size: 0.75rem; color: #94a3b8; }

/* Experience: Modern Timeline Cards */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 20px;
}
.timeline-container::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #e2e8f0;
}
.timeline-card-wrapper {
    position: relative;
}
.timeline-node {
    position: absolute;
    left: -24px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0f172a;
    border: 3px solid white;
    box-shadow: 0 0 0 1px #e2e8f0;
}
.timeline-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    margin-left: 1rem;
    box-shadow: var(--shadow-sm);
}
.timeline-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}
.timeline-card-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.timeline-card-title-group h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
}
.badge-role {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-gray { background: #f1f5f9; color: #475569; }
.badge-date {
    font-size: 0.8rem;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 9999px;
}
.timeline-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.text-link { color: var(--accent-blue); text-decoration: none; font-weight: 500;}
.text-link:hover { text-decoration: underline; }
.dot-separator { color: #cbd5e1; font-size: 0.5rem; }

.timeline-card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.bullet-list-blue {
    list-style: none;
    margin-top: 1rem;
}
.bullet-list-blue li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.bullet-list-blue li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
}

.tech-stack { display: flex; flex-wrap: wrap; gap: 8px; }
.mt-3 { margin-top: 1rem; }
.mt-auto { margin-top: auto; padding-top: 1.5rem; }

.tech-stack span {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Project Showcase inside Timeline */
.project-showcase-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.project-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.project-showcase-card {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}
.project-showcase-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.project-showcase-icon-box::before,
.project-showcase-icon-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: -1;
}
.project-showcase-icon-box::before {
    top: 0;
    right: -6px;
    background: inherit;
    opacity: 0.6;
    transform: scale(0.95);
}
.project-showcase-icon-box::after {
    top: 0;
    right: -12px;
    background: inherit;
    opacity: 0.3;
    transform: scale(0.9);
}

.icon-blue { background: #3b82f6; }
.icon-green { background: #10b981; }
.icon-orange { background: #d97706; }

.project-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.project-showcase-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.project-showcase-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}
.project-showcase-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.project-showcase-tags {
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    color: #10b981;
}

/* Projects Grid */
.clean-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.clean-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.card-header { margin-bottom: 0.5rem; }
.card-header h3 { font-size: 1.1rem; font-weight: 700; }
.clean-card .date { font-size: 0.75rem; color: #94a3b8; display: block; margin-top: 0.2rem; }
.flex-grow { flex-grow: 1; }

/* Advanced Skills Section */
.skills-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.skill-main-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.skill-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.skill-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.accent-bar-blue { width: 6px; height: 24px; background-color: var(--accent-blue); border-radius: 4px; }
.accent-bar-red { width: 6px; height: 24px; background-color: var(--accent-red); border-radius: 4px; }
.skill-card-title-wrap h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}
.skill-count {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 600;
}
.skill-card-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.skill-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.skill-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}
.skill-meta {
    font-size: 0.8rem;
    font-weight: 700;
}
.skill-yrs { color: #94a3b8; margin-right: 6px; font-weight: 500;}
.skill-pct { color: #475569; }

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background-color: #f1f5f9;
    border-radius: 9999px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 1.5s ease-in-out;
}
.fill-blue { background-color: var(--accent-blue); }
.fill-red { background-color: var(--accent-red); }

.skill-item-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 0.2rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}
.contact-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }
.contact-details { margin-top: 2rem; }
.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}
.contact-details i { color: var(--accent-blue); font-size: 1.2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.form-group input, .form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--bg-main);
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}
.btn-submit {
    padding: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
}

/* Modern Minimalist Footer */
.footer-modern {
    margin-top: 6rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
}
.footer-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.1rem;
}
.footer-title {
    font-size: 0.8rem;
    color: #64748b;
}
.footer-socials {
    display: flex;
    gap: 1.2rem;
}
.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #f8fafc;
    color: #475569;
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}
.footer-icon:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    transform: translateY(-2px);
}
.footer-back-to-top {
    /* Optional: align right */
}
.btn-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-back-to-top:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright {
    color: #94a3b8;
    font-size: 0.8rem;
}
.footer-status {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 950px) {
    .hero-layout, .contact-container, .skills-card-grid {
        grid-template-columns: 1fr;
    }
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .nav-pill, .nav-controls .btn-sm {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .card-wide {
        flex-direction: column;
        gap: 1rem;
    }
    .card-wide-content {
        max-width: 100%;
    }
    .timeline-card-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
