:root {
  --bg: #F5F3EE;
  --bg2: #ECEAE3;
  --bg3: #FFFFFF;
  --ink: #1A1714;
  --ink2: #3D3A35;
  --ink3: #7A766E;
  --accent: #FF4D2E;
  --accent2: #2B5CE6;
  --accent3: #F5A623;
  --green: #1DB954;
  --card: #FFFFFF;
  --card-border: #E2DFD8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 20px rgba(26,23,20,0.08);
  --shadow-lg: 0 8px 48px rgba(26,23,20,0.14);
  --transition: all 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg); color: var(--ink); font-family: 'Outfit', sans-serif; overflow-x: hidden; cursor: none; }

/* CURSOR */
#cur { position: fixed; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width 0.2s, height 0.2s; }
#cur-ring { position: fixed; width: 38px; height: 38px; border: 1.5px solid var(--accent); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all 0.18s ease; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 68px; background: rgba(245,243,238,0.88); backdrop-filter: blur(24px); border-bottom: 1px solid var(--card-border); }
.nav-logo { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px; color: var(--ink); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--ink3); text-decoration: none; padding: 7px 14px; border-radius: 100px; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.nav-links a i { font-size: 16px; }
.nav-links a:hover, .nav-links a.active { background: var(--ink); color: #fff; }
.nav-cta { background: var(--accent); color: #fff; border: none; padding: 10px 22px; border-radius: 100px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; cursor: none; text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.nav-cta i { font-size: 16px; }
.nav-cta:hover { background: var(--ink); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 4px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }

/* HERO */
#hero { min-height: 100vh; padding: 120px 40px 80px; display: flex; align-items: center; background: var(--bg); position: relative; overflow: hidden; }
#hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,77,46,0.08) 0%, transparent 65%); pointer-events: none; }
#hero::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(43,92,230,0.06) 0%, transparent 65%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #FFF3F0; border: 1px solid #FFCFC6; padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.5px; margin-bottom: 28px; animation: fadeUp 0.6s 0.2s both; }
.badge-dot-anim { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-h1 { font-family: 'Outfit', sans-serif; font-size: clamp(52px, 7vw, 88px); font-weight: 800; line-height: 1.0; letter-spacing: -2px; margin-bottom: 24px; animation: fadeUp 0.6s 0.35s both; color: var(--ink); }
.hero-h1 .stroke { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.hero-h1 .accent-word { color: var(--accent); }
.hero-sub { font-size: 17px; line-height: 1.7; color: var(--ink3); max-width: 480px; margin-bottom: 40px; animation: fadeUp 0.6s 0.5s both; font-weight: 400; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.65s both; }
.btn-fill { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition); }
.btn-fill:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,77,46,0.3); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--card-border); color: var(--ink2); padding: 13px 28px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; transition: var(--transition); background: var(--card); }
.btn-outline i { color: var(--ink2); transition: color 0.2s; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline:hover i { color: #0A66C2; }
.hero-stats { display: flex; gap: 20px; margin-top: 52px; animation: fadeUp 0.6s 0.8s both; flex-wrap: wrap; }
.stat-card { display: flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid var(--card-border); padding: 16px 24px; border-radius: 16px; transition: var(--transition); }
.stat-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-icon { width: 48px; height: 48px; background: #FFF3F0; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.stat-icon i { font-size: 22px; color: var(--accent); }
.stat-info { display: flex; flex-direction: column; }
.hero-stat-num { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: var(--ink); display: block; line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--ink3); font-weight: 500; display: block; }

/* AVATAR */
.hero-avatar { position: relative; animation: fadeIn 0.8s 0.4s both; flex-shrink: 0; z-index: 2; }
.avatar-frame { width: 300px; height: 360px; background: var(--bg2); border-radius: 24px; overflow: hidden; position: relative; border: 1px solid var(--card-border); box-shadow: var(--shadow-lg); }
.avatar-img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; background: linear-gradient(160deg, #EBE7DF 0%, #D4CEBF 100%); position: relative; overflow: hidden; }
.av-circle { position: absolute; width: 130px; height: 130px; background: linear-gradient(135deg, #C8C0B0, #B0A898); border-radius: 50%; top: 72px; left: 50%; transform: translateX(-50%); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.av-body { position: absolute; width: 210px; height: 170px; background: linear-gradient(160deg, #C8C0B0, #B0A898); border-radius: 105px 105px 0 0; bottom: -20px; left: 50%; transform: translateX(-50%); }
.avatar-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(26,23,20,0.75)); padding: 32px 20px 20px; }
.avatar-name-card { background: rgba(255,255,255,0.96); border-radius: 12px; padding: 12px 16px; }
.av-name { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; color: var(--ink); }
.av-role { font-size: 11px; color: var(--ink3); margin-top: 2px; }
.float-badge { position: absolute; background: var(--card); border-radius: var(--radius-sm); padding: 10px 14px; box-shadow: var(--shadow); border: 1px solid var(--card-border); }
.float-badge.tr { top: -14px; right: -18px; }
.float-badge.bl { bottom: 90px; left: -22px; }
.fb-num { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--ink); display: block; line-height: 1; }
.fb-lbl { font-size: 10px; color: var(--ink3); font-weight: 500; }
.fb-dot { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink2); font-weight: 500; }
.fdot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; flex-shrink: 0; }

/* SECTION COMMON */
.section { padding: 100px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); background: #FFF3F0; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; border: 1px solid #FFCFC6; }
.section-h { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -1.5px; color: var(--ink); line-height: 1.1; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--ink3); max-width: 520px; line-height: 1.7; margin-bottom: 56px; }

/* ABOUT */
#about { background: var(--bg2); }

.about-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.about-header-new {
  margin-bottom: 48px;
}

.label-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,77,46,0.1);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.about-title-new {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -2px;
}

.about-title-new .text-accent {
  color: var(--accent);
}

.about-grid-new {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-content-new {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-intro-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}

.about-intro-text strong {
  color: var(--accent);
  font-weight: 700;
}

.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(26,23,20,0.08);
}

.achievement-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent), #ff7a5c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.achievement-text {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
}

.achievement-text strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .achievement-item {
    padding: 14px 16px;
  }
  .about-intro-text {
    font-size: 18px;
  }
}

/* SKILLS */
#skills { background: var(--bg); }
.skills-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.skill-group-title { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.sgt-bar { display: block; width: 24px; height: 3px; background: var(--accent); border-radius: 2px; }
.tag-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 13px; font-weight: 500; color: var(--ink2); background: var(--card); border: 1px solid var(--card-border); padding: 8px 16px; border-radius: 100px; transition: all 0.2s; cursor: default; }
.tag:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.tag.hot { background: #FFF3F0; border-color: #FFCFC6; color: var(--accent); font-weight: 600; }
.tag.hot:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.skill-bars { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sbar { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 20px; }
.sbar-top { display: flex; justify-content: space-between; margin-bottom: 12px; }
.sbar-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.sbar-pct { font-size: 13px; font-weight: 700; color: var(--accent); }
.sbar-track { height: 6px; background: var(--bg2); border-radius: 100px; overflow: hidden; }
.sbar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 100px; width: 0; transition: width 1.2s cubic-bezier(0.34, 1.1, 0.64, 1); }

/* SERVICES */
#services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--card); border: 1.5px solid var(--card-border); border-radius: var(--radius); padding: 36px 28px; position: relative; overflow: hidden; transition: var(--transition); cursor: default; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card:hover .srv-icon { background: var(--accent); }
.service-card:hover .srv-icon svg { stroke: #fff; }
.srv-icon { width: 52px; height: 52px; background: #F5F3EE; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.3s; }
.srv-num { position: absolute; top: 20px; right: 24px; font-family: 'Outfit', sans-serif; font-size: 56px; font-weight: 800; color: rgba(26,23,20,0.04); line-height: 1; }
.srv-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.srv-desc { font-size: 14px; color: var(--ink3); line-height: 1.7; }

/* PROJECTS */
#projects { background: var(--bg); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { background: var(--card); border: 1.5px solid var(--card-border); border-radius: var(--radius); overflow: hidden; cursor: none; transition: var(--transition); display: flex; flex-direction: column; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent2); }
.proj-thumb { height: 160px; display: flex; align-items: center; justify-content: center; transition: transform 0.4s; }
.thumb-icon { font-size: 56px; opacity: 0.85; }
.project-card:hover .proj-thumb { transform: scale(1.06); }
.proj-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.proj-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent2); margin-bottom: 8px; }
.proj-title { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.proj-desc { font-size: 13px; color: var(--ink3); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.proj-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.proj-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ptag { font-size: 10px; font-weight: 600; background: #EEF2FF; color: var(--accent2); padding: 4px 10px; border-radius: 100px; }
.proj-btn { font-size: 12px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 4px; background: var(--bg2); padding: 7px 14px; border-radius: 100px; border: none; cursor: none; transition: all 0.2s; white-space: nowrap; flex-shrink: 0; }
.proj-btn:hover { background: var(--ink); color: #fff; }

/* EXPERIENCE */
#experience { background: var(--bg2); }
.exp-list { display: flex; flex-direction: column; gap: 16px; }
.exp-item { background: var(--card); border: 1.5px solid var(--card-border); border-radius: var(--radius); padding: 28px 32px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: start; transition: var(--transition); cursor: default; }
.exp-item:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--accent); }
.exp-logo { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--bg2); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; color: var(--ink3); border: 1px solid var(--card-border); flex-shrink: 0; }
.exp-company { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.exp-role { font-size: 14px; color: var(--ink3); font-weight: 500; margin-bottom: 12px; }
.exp-points { display: flex; flex-direction: column; gap: 6px; }
.exp-point { font-size: 13px; color: var(--ink2); line-height: 1.5; display: flex; align-items: baseline; gap: 8px; }
.exp-point::before { content: '•'; color: var(--accent); font-size: 16px; flex-shrink: 0; }
.exp-date { font-size: 11px; font-weight: 700; color: var(--accent); background: #FFF3F0; padding: 6px 14px; border-radius: 100px; border: 1px solid #FFCFC6; white-space: nowrap; flex-shrink: 0; }

/* HIRE ME */
#hirme { background: var(--ink); padding: 120px 40px; position: relative; overflow: hidden; }
#hirme::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,77,46,0.15) 0%, transparent 60%); pointer-events: none; }
.hirme-inner { max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hirme-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); background: rgba(255,77,46,0.12); padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; border: 1px solid rgba(255,77,46,0.2); }
.hirme-h { font-family: 'Outfit', sans-serif; font-size: clamp(40px, 6vw, 72px); font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1.0; margin-bottom: 20px; }
.hirme-h span { color: var(--accent); }
.hirme-sub { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 48px; line-height: 1.7; }
.hirme-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hbtn { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; padding: 16px 32px; border-radius: 100px; text-decoration: none; transition: var(--transition); }
.hbtn-wa { background: #25D366; color: #fff; }
.hbtn-wa:hover { background: #128C7E; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.35); }
.hbtn-li { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.15); }
.hbtn-li:hover { background: #0A66C2; border-color: #0A66C2; transform: translateY(-3px); }
.hbtn-li i { color: #0A66C2; }
.hbtn-li:hover i { color: #fff; }
.hbtn-em { background: var(--accent); color: #fff; }
.hbtn-em:hover { background: #e03a1e; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,77,46,0.35); }
.hirme-contacts { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.hcon { font-size: 14px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 16px; }
.hcon i { font-size: 20px; }
.hcon a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 16px; }
.hcon a i { font-size: 20px; }
.hcon a:hover { color: #fff; }
.hcon a:hover i { color: #fff; }

/* FOOTER */
footer { background: #0F0D0B; padding: 28px 40px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-brand { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.8); }
.footer-brand span { color: var(--accent); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* MODAL */
.modal-bg { position: fixed; inset: 0; z-index: 1000; background: rgba(26,23,20,0.65); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal { background: var(--card); border-radius: 24px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; transform: scale(0.92) translateY(20px); transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1); box-shadow: 0 32px 80px rgba(26,23,20,0.25); }
.modal-bg.open .modal { transform: scale(1) translateY(0); }
.modal-header { padding: 28px 28px 0; display: flex; justify-content: space-between; align-items: center; }
.modal-close { width: 36px; height: 36px; background: var(--bg2); border: none; border-radius: 50%; cursor: none; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--ink2); transition: all 0.2s; flex-shrink: 0; }
.modal-close:hover { background: var(--ink); color: #fff; }
.modal-thumb { height: 180px; display: flex; align-items: center; justify-content: center; margin: 20px 28px; border-radius: var(--radius); font-size: 80px; }
.modal-body { padding: 4px 28px 28px; }
.modal-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.modal-title { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.modal-desc { font-size: 15px; color: var(--ink2); line-height: 1.75; margin-bottom: 24px; }
.modal-section-title { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.modal-feature { font-size: 14px; color: var(--ink2); padding: 9px 0; border-bottom: 1px solid var(--card-border); display: flex; align-items: baseline; gap: 10px; }
.modal-feature:last-child { border-bottom: none; }
.modal-feature::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.modal-tech { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.mtag { font-size: 12px; font-weight: 600; background: #EEF2FF; color: var(--accent2); padding: 6px 14px; border-radius: 100px; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.1, 0.64, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; } .rd2 { transition-delay: 0.2s; } .rd3 { transition-delay: 0.3s; } .rd4 { transition-delay: 0.4s; } .rd5 { transition-delay: 0.5s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-avatar { display: flex; justify-content: center; order: -1; }
  .avatar-frame { width: 240px; height: 290px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .skills-layout { grid-template-columns: 1fr; }
  .skill-bars { grid-template-columns: 1fr; }
  .exp-item { grid-template-columns: auto 1fr; gap: 16px; }
  .exp-date { grid-column: 1 / -1; width: fit-content; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--bg); padding: 16px; border-bottom: 1px solid var(--card-border); z-index: 199; gap: 4px; }
  .nav-links.open a { padding: 12px 16px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 10px; }
  .nav-burger { display: flex; }
  .section { padding: 72px 20px; }
  #hero { padding: 100px 20px 60px; }
  .hero-h1 { font-size: 46px; }
  .hero-stats { gap: 20px; }
  .services-grid, .projects-grid { grid-template-columns: 1fr; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px 20px; }
  .hirme-btns { flex-direction: column; align-items: stretch; }
  .hirme-contacts { flex-direction: column; align-items: center; gap: 16px; }
  .modal-body, .modal-header { padding-left: 20px; padding-right: 20px; }
  .modal-thumb { margin-left: 20px; margin-right: 20px; }
  .exp-item { grid-template-columns: 1fr; }
  .exp-logo { display: none; }
  #hirme { padding: 80px 20px; }
}