/* ========================================
   PERSONAL BRANDING — PREMIUM CV ONLINE
   Theme: Deep Purple Elegance
   ======================================== */

/* Variables */
:root {
  --bg-primary: #0b0215;
  --bg-secondary: #140824;
  --bg-card: #1a0d2e;
  --bg-glass: rgba(26, 13, 46, 0.82);
  --accent: #b34bff;
  --accent-light: #d880ff;
  --accent-dark: #8a2be2;
  --accent-secondary: #e040fb;
  --text-primary: #f3eef9;
  --text-secondary: #c8b8db;
  --text-muted: #8a7a9e;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 2, 21, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-print {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-print:hover {
  background: var(--accent);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(179, 75, 255, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(224, 64, 251, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0b0215 0%, #140824 100%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-subtitle .line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.hero-subtitle .text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
}

.hero-title {
  margin-bottom: 16px;
}

.greeting {
  display: block;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.name {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #d880ff 50%, #b34bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  margin-bottom: 18px;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(179, 75, 255, 0.12);
  border: 1px solid rgba(179, 75, 255, 0.25);
  color: var(--accent-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 30px rgba(179, 75, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(179, 75, 255, 0.38);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(179, 75, 255, 0.06);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

/* Hero Visual — Profile Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.profile-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  width: 100%;
  max-width: 340px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(179, 75, 255, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.profile-frame {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent-secondary));
  position: relative;
  z-index: 1;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg-card);
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.profile-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.profile-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.profile-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.profile-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.profile-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  z-index: 2;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 4px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
  line-height: 1.2;
}

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

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(179, 75, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.about-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(179, 75, 255, 0.18), rgba(224, 64, 251, 0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.about-quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 36px;
  position: relative;
}

.about-quote i {
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 10px;
  display: block;
}

.about-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.about-quote cite {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

/* ========================================
   EXPERIENCE TIMELINE
   ======================================== */
.experience {
  background: var(--bg-primary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 6px;
  width: 20px;
  height: 20px;
  background: var(--bg-primary);
  border: 3px solid var(--accent);
  border-radius: 50%;
  z-index: 2;
}

.timeline-date {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.timeline-date .year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.timeline-date .duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.timeline-card:hover {
  border-color: rgba(179, 75, 255, 0.2);
}

.timeline-header {
  margin-bottom: 16px;
}

.timeline-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-header .company {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-header .company i {
  color: var(--accent);
}

.timeline-list {
  margin-bottom: 16px;
}

.timeline-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

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

.timeline-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(179, 75, 255, 0.10);
  color: var(--accent-light);
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(179, 75, 255, 0.2);
}

/* ========================================
   SKILLS
   ======================================== */
.skills {
  background: var(--bg-secondary);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.skills-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.skills-col-title i {
  color: var(--accent);
}

.skill-bar {
  margin-bottom: 22px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.skill-info span:first-child {
  font-weight: 500;
}

.skill-info span:last-child {
  font-weight: 700;
  color: var(--accent);
}

.skill-progress {
  width: 100%;
  height: 8px;
  background: var(--bg-primary);
  border-radius: 10px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: 10px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(179, 75, 255, 0.08);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 75, 255, 0.25);
}

.cert-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
}

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

.cert-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  background: var(--bg-primary);
}

.contact-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(179, 75, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.contact-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.info-item:hover {
  border-color: rgba(179, 75, 255, 0.25);
}

.info-item i {
  width: 42px;
  height: 42px;
  background: rgba(179, 75, 255, 0.12);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #07030e;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand i {
  color: var(--accent);
}

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

.footer-copy i {
  color: #e040fb;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 6px 20px rgba(179, 75, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(179, 75, 255, 0.4);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-buttons {
    justify-content: center;
  }

  .contact-info {
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 30px;
    gap: 24px;
    transition: var(--transition);
    border-left: 1px solid var(--border);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: block;
  }

  .btn-print span {
    display: none;
  }

  .name {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .timeline-line {
    left: 14px;
  }

  .timeline-item {
    padding-left: 46px;
  }

  .timeline-dot {
    left: 5px;
  }

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

  .contact-wrapper {
    padding: 36px 24px;
  }

  .contact-content h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

/* ========================================
   PRINT STYLES (CV Mode)
   ======================================== */
@media print {
  html {
    scroll-behavior: auto;
  }

  body {
    background: #fff !important;
    color: #111 !important;
    font-size: 10pt;
  }

  .navbar,
  .scroll-indicator,
  .back-to-top,
  .hero-cta,
  .contact-buttons,
  .footer-social,
  .btn-print,
  .nav-toggle,
  .hero-particles,
  .hero-bg {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 30px 0 20px;
    page-break-after: avoid;
  }

  .hero-content {
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
  }

  .name {
    background: none !important;
    -webkit-text-fill-color: #111 !important;
    color: #111 !important;
    font-size: 2rem;
  }

  .greeting,
  .hero-desc,
  .section-desc,
  .timeline-list li,
  .about-card p,
  .contact-content p {
    color: #333 !important;
  }

  .role-badge {
    background: #f5f5f5 !important;
    color: #111 !important;
    border: 1px solid #ddd !important;
  }

  .profile-card {
    background: #fff !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    padding: 20px !important;
  }

  .profile-frame {
    width: 120px;
    height: 120px;
  }

  .profile-badge {
    display: none !important;
  }

  .section {
    padding: 20px 0;
    page-break-inside: avoid;
  }

  .about,
  .skills,
  .experience,
  .contact,
  .footer {
    background: #fff !important;
  }

  .about-card,
  .timeline-card,
  .cert-card,
  .contact-wrapper,
  .about-quote,
  .info-item {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }

  .about-icon {
    background: #f5f5f5 !important;
    color: #111 !important;
  }

  .section-title .highlight,
  .stat-num,
  .timeline-date .year,
  .skill-info span:last-child,
  .about-quote cite,
  .cert-card i,
  .info-item i,
  .footer-brand i {
    color: #8a2be2 !important;
  }

  .skill-progress {
    background: #eee !important;
  }

  .skill-fill {
    background: #8a2be2 !important;
  }

  .timeline-line {
    background: #ccc !important;
  }

  .timeline-dot {
    border-color: #8a2be2 !important;
    background: #fff !important;
  }

  .timeline-tags span,
  .tag {
    background: #f5f5f5 !important;
    color: #111 !important;
    border: 1px solid #ddd !important;
  }

  a {
    text-decoration: none !important;
    color: #111 !important;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .info-item {
    flex: 1;
    min-width: 140px;
    padding: 10px;
  }

  .info-item i {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}
