/* Global Responsive Styles */
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .section-title {
    font-size: 1.1rem;
    padding: 0.5rem 0.2rem;
  }
  .about-grid {
    display: block !important;
    padding: 0.5rem 0;
  }
  .about-education, .about-competencies {
    margin-top: 1rem;
    padding: 0.5rem 0.2rem;
  }
  .competency-card {
    font-size: 0.95rem;
    padding: 0.7rem 0.4rem;
    margin-bottom: 0.7rem;
  }
  .edu-item {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.7rem;
  }
  .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
  }
  .project-card {
    font-size: 0.95rem;
    padding: 0.7rem 0.4rem;
    margin-bottom: 0.7rem;
  }
  .timeline {
    padding: 0.5rem 0.2rem;
  }
  .timeline-event {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
  .skills-grid {
    grid-template-columns: 1fr !important;
    gap: 0.7rem;
  }
  .skill-card {
    font-size: 0.95rem;
    padding: 0.7rem 0.4rem;
    margin-bottom: 0.7rem;
  }
  .contact-form {
    padding: 0.5rem 0.2rem;
  }
  .contact-info {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
}
/* About Me Renewed Bold Style */
.about-me-renew .about-me-bold {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: none;
  padding: 0 0.1em;
}
/* About Me Renewed Paragraph Style */
.about-me-renew p {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}
@media (max-width: 600px) {
  .about-me-renew p {
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0.5rem 0.2rem;
    word-break: keep-all;
  }
  .about-me-renew .about-me-bold {
    font-size: 1rem;
    display: inline;
    word-break: keep-all;
    padding: 0 0.05em;
  }
  .about-me-renew {
    margin-bottom: 1rem;
  }
}
/* ===== CSS Variables ===== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1526;
  --bg-card: #141b2d;
  --bg-card-hover: #1a2340;
  --accent: #4fc3f7;
  --accent-dim: rgba(79, 195, 247, 0.15);
  --accent-glow: rgba(79, 195, 247, 0.3);
  --text-primary: #e0e6f0;
  --text-secondary: #8892a8;
  --text-muted: #5a6480;
  --border: #1e2a45;
  --border-hover: #2a3a5c;
  --green: #66bb6a;
  --red: #ef5350;
  --yellow: #fdd835;
  --tag-bg: rgba(79, 195, 247, 0.1);
  --tag-border: rgba(79, 195, 247, 0.25);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --nav-height: 64px;
  --container-max: 1100px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #81d4fa;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  color: var(--accent);
  font-weight: 600;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 14, 26, 0.95);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-mono);
  letter-spacing: -1px;
}

.nav-logo .accent {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--accent-dim);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 195, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 195, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  order: 2;
  padding-left: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: #81d4fa;
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-dim);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-visual {
  position: relative;
  order: 1;
}

.hero-image-frame {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(79, 195, 247, 0.16);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  object-position: 30% 22%;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.04) 0%, rgba(10, 14, 26, 0.18) 60%, rgba(10, 14, 26, 0.78) 100%),
    linear-gradient(135deg, rgba(79, 195, 247, 0.08), transparent 45%);
}

.hero-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(10, 14, 26, 0.72);
  border: 1px solid rgba(79, 195, 247, 0.22);
  backdrop-filter: blur(10px);
}

.hero-badge-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.hero-image-badge strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.hero-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  background: rgba(10, 14, 26, 0.8);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.hero-metric-item {
  padding: 10px 12px;
  border: 1px solid rgba(79, 195, 247, 0.18);
  border-radius: 10px;
  background: rgba(79, 195, 247, 0.04);
}

.hero-metric-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 5px;
  font-weight: 700;
}

.hero-metric-item span {
  display: block;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 24px; }
  50% { opacity: 1; height: 32px; }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.title-number {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  margin-right: 12px;
}

.section-desc {
  color: var(--text-secondary);
  margin-top: -32px;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-education {
  margin-top: 32px;
}

.about-education h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.edu-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.edu-icon {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.edu-item strong {
  color: var(--text-primary);
}

.edu-date {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.edu-detail {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.edu-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79, 195, 247, 0.1);
  border: 1px solid rgba(79, 195, 247, 0.18);
  color: var(--text-primary);
}

.edu-highlight-score {
  color: var(--accent);
  font-weight: 700;
}

.edu-highlight-sep {
  color: var(--text-muted);
}

.edu-highlight-award {
  color: var(--text-primary);
  font-weight: 600;
}

.about-competencies h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.competency-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 12px;
  transition: border-color 0.3s, transform 0.2s;
}

.competency-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.competency-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.competency-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.competency-card p {
  color: var(--text-secondary);
  font-size: 0.825rem;
  line-height: 1.6;
}

/* ===== Experience ===== */
.experience-header {
  margin-bottom: 40px;
}

.company-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.company-role {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 4px;
}

.company-period {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  margin-top: 4px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-marker {
  position: absolute;
  left: -32px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  z-index: 1;
}

.timeline-item:hover .timeline-marker {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.2s;
}

.project-card[role="link"] {
  cursor: pointer;
}

.project-card[role="link"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.project-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.project-number {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

.project-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
}

.project-client {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.project-details {
  list-style: none;
  margin-bottom: 16px;
}

.project-details li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

.project-details li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 195, 247, 0.28);
  background: rgba(79, 195, 247, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.project-link::after {
  content: '↗';
  font-size: 0.85rem;
}

.project-link:hover {
  color: #81d4fa;
  border-color: rgba(129, 212, 250, 0.42);
  background: rgba(79, 195, 247, 0.14);
}

.tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  border-radius: 20px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
}

/* Proposal */
.proposal-section {
  margin-top: 60px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.proposal-section h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proposal-section h3 i {
  color: var(--accent);
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.proposal-item {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: border-color 0.2s;
}

.proposal-item:hover {
  border-color: var(--border-hover);
}

/* ===== Projects (Side) ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.github-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  color: var(--text-primary);
}

.github-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79, 195, 247, 0.1);
  color: var(--text-primary);
}

.github-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.github-card-header i:first-child {
  font-size: 2rem;
  color: var(--accent);
}

.github-card-header i:last-child {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.github-card:hover .github-card-header i:last-child {
  color: var(--accent);
}

.github-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.github-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.github-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Skills ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s;
}

.skill-category:hover {
  border-color: var(--border-hover);
}

.skill-category-soft {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.06);
}

.skill-category-soft h3 {
  color: var(--text-secondary);
}

.skill-category-soft h3 i {
  color: rgba(79, 195, 247, 0.75);
}

.skill-category-soft .skill-tag {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
  color: #9aa6bf;
}

.skill-category-soft .skill-tag:hover {
  border-color: rgba(79, 195, 247, 0.28);
  color: var(--text-primary);
}

.skill-category h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-category h3 i {
  color: var(--accent);
  font-size: 0.85rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

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

/* ===== Contact ===== */
.contact-container {
  text-align: center;
}

.contact-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: border-color 0.3s, transform 0.2s, color 0.2s;
  font-size: 0.9rem;
}

.contact-card i {
  font-size: 1.2rem;
  color: var(--accent);
}

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

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    padding-left: 0;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-desc br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .hero-image-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 8px;
  }

  .hero-metric-item strong {
    font-size: 1.1rem;
  }

  .hero-metric-item span {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }

  .project-card {
    padding: 20px;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .project-actions {
    justify-content: flex-start;
  }

  .proposal-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  .contact-desc br {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 16px;
  }
}
