/* ════════════════════════════════════════
       RESET & ROOT
    ════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b0d14;
  --bg2: #10121a;
  --bg3: #181b27;
  --bg4: #1e2130;
  --border: #252838;
  --border2: #2e3248;
  --gold: #c9a227;
  --gold-lt: #e8bf4d;
  --gold-dim: rgba(201, 162, 39, 0.12);
  --gold-border: rgba(201, 162, 39, 0.25);
  --text: #e2e4ef;
  --muted: #7a82a0;
  --white: #ffffff;
  --green: #4ade80;
  --radius: 10px;
  --radius-lg: 16px;
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ════════════════════════════════════════
       SCROLL-REVEAL ANIMATION
    ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ════════════════════════════════════════
       NAV
    ════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 13, 20, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: #0b0d14;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--bg3);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-mobile-panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(11, 13, 20, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 8px 24px 20px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.22s,
    opacity 0.22s;
}

.nav-mobile-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-panel a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-panel a:last-child {
  border-bottom: none;
}

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

.hero::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle,
      rgba(201, 162, 39, 0.06) 0%,
      transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(80, 100, 200, 0.04) 0%,
      transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero h1 .dim {
  color: var(--muted);
  font-weight: 600;
}

.hero-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 38px;
  line-height: 1.75;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: #0b0d14;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 5px;
}

/* ── Social row in hero ── */
.hero-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border2);
  color: var(--muted);
  background: var(--bg3);
  transition: all 0.2s;
}

.hero-social-btn:hover {
  border-color: var(--gold-border);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-social-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Avatar */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.avatar-wrap {
  position: relative;
  width: 360px;
  height: 420px;
}

.avatar-frame {
  width: 100%;
  height: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(201, 162, 39, 0.04) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.avatar-placeholder svg {
  opacity: 0.2;
}

.avatar-placeholder span {
  font-size: 0.78rem;
  color: var(--muted);
}

.badge-rank {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #0b0d14;
  border-radius: 14px;
  padding: 12px 18px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.35);
  z-index: 2;
}

.badge-rank strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.badge-rating {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.badge-rating .stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.badge-rating .score {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.badge-rating .label {
  font-size: 0.68rem;
  color: var(--muted);
}

/* ════════════════════════════════════════
       SECTIONS COMMON
    ════════════════════════════════════════ */
section {
  padding: 100px 80px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after {
  content: "";
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-sub {
  color: var(--muted);
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.72;
}

/* ════════════════════════════════════════
       SKILLS
    ════════════════════════════════════════ */
.skills-section {
  background: var(--bg2);
  padding: 90px 80px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
  margin-top: 52px;
}

.skill-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  cursor: default;
}

.skill-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.skill-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.skill-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.skill-meta {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ════════════════════════════════════════
       GLOSSARY
    ════════════════════════════════════════ */
.glossary-section {
  background: var(--bg);
  /* padding: 90px 80px; */
  position: relative;
  overflow: hidden;
}

.glossary-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(201, 162, 39, 0.03) 0%,
      transparent 70%);
  pointer-events: none;
}

.glossary-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); */
  gap: 20px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.glossary-card {
  background: rgba(24, 27, 39, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.glossary-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  background: rgba(24, 27, 39, 0.9);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 162, 39, 0.15) inset;
}

.gc-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg,
      rgba(201, 162, 39, 0.15) 0%,
      rgba(201, 162, 39, 0.02) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.1);
  transition: transform 0.3s ease;
}

.gc-icon-wrap svg {
  display: block;
}

.glossary-card:hover .gc-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
  border-color: var(--gold);
}

.gc-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gc-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.gc-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════
       PROJECTS
    ════════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.project-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.project-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Featured ring on hover */
.project-card.is-featured {
  border-color: var(--gold-border);
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg4);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 14px;
  transition: transform 0.4s;
}

.project-card:hover .project-thumb img {
  transform: scale(1.04);
}

.project-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.project-thumb-placeholder .proj-icon {
  font-size: 2.5rem;
  opacity: 0.6;
}

.project-thumb-placeholder .proj-label {
  font-size: 0.72rem;
  color: var(--muted);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.project-card:hover .proj-overlay {
  opacity: 1;
}

.proj-overlay-text {
  background: var(--gold);
  color: #0b0d14;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.proj-link-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(11, 13, 20, 0.78);
  border: 1px solid var(--gold-border);
  color: var(--gold-lt);
  border-radius: 7px;
  padding: 5px 9px;
  font-size: 0.66rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(6px);
}

.proj-link-badge svg {
  width: 11px;
  height: 11px;
}

/* ── FEATURED BADGE ── */
.proj-featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: var(--gold);
  color: #0b0d14;
  border-radius: 7px;
  padding: 5px 9px;
  font-size: 0.66rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.45);
  animation: badge-glow 3s ease-in-out infinite;
}

.proj-featured-badge svg {
  width: 11px;
  height: 11px;
}

@keyframes badge-glow {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.45);
  }

  50% {
    box-shadow: 0 4px 22px rgba(201, 162, 39, 0.75);
  }
}

.project-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tag {
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tag-gold {
  background: var(--gold-dim);
  color: var(--gold-lt);
  border: 1px solid var(--gold-border);
}

.tag-blue {
  background: rgba(100, 120, 220, 0.1);
  color: #a0b4f8;
  border: 1px solid rgba(100, 120, 220, 0.2);
}

.tag-green {
  background: rgba(74, 222, 128, 0.08);
  color: #6ee7a0;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.tag-purple {
  background: rgba(160, 120, 250, 0.1);
  color: #c4a8ff;
  border: 1px solid rgba(160, 120, 250, 0.2);
}

.project-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 7px;
}

.project-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

/* ════════════════════════════════════════
       EXPERIENCE
    ════════════════════════════════════════ */
.exp-section {
  background: var(--bg2);
}

.exp-timeline {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
}

.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.exp-item::before {
  content: "";
  position: absolute;
  left: 199px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.exp-item:last-child {
  border-bottom: none;
}

.exp-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  padding-top: 4px;
  line-height: 1.5;
}

.exp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg2);
  position: absolute;
  left: 195px;
  top: 44px;
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.4);
}

.exp-company {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.exp-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.exp-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════
       SOCIAL SECTION
    ════════════════════════════════════════ */
.socials-section {
  background: var(--bg);
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  background: var(--bg3);
  color: var(--text);
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.22s;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.social-card:hover::before {
  opacity: 1;
}

.social-card:hover .sc-arrow {
  transform: translateX(3px);
}

.sc-wa::before {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.09), transparent);
}

.sc-wa:hover {
  border-color: rgba(37, 211, 102, 0.35);
}

.sc-wa .sc-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.sc-li::before {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), transparent);
}

.sc-li:hover {
  border-color: rgba(10, 102, 194, 0.35);
}

.sc-li .sc-icon {
  background: rgba(10, 102, 194, 0.12);
  color: #0a66c2;
}

.sc-gh::before {
  background: linear-gradient(135deg, rgba(240, 246, 252, 0.07), transparent);
}

.sc-gh:hover {
  border-color: rgba(240, 246, 252, 0.2);
}

.sc-gh .sc-icon {
  background: rgba(240, 246, 252, 0.08);
  color: #f0f6fc;
}

.sc-ig::before {
  background: linear-gradient(135deg, rgba(228, 64, 95, 0.08), transparent);
}

.sc-ig:hover {
  border-color: rgba(228, 64, 95, 0.3);
}

.sc-ig .sc-icon {
  background: rgba(228, 64, 95, 0.1);
  color: #e4405f;
}

.sc-fb::before {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), transparent);
}

.sc-fb:hover {
  border-color: rgba(24, 119, 242, 0.3);
}

.sc-fb .sc-icon {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}

.sc-gm::before {
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.08), transparent);
}

.sc-gm:hover {
  border-color: rgba(234, 67, 53, 0.3);
}

.sc-gm .sc-icon {
  background: rgba(234, 67, 53, 0.1);
  color: #ea4335;
}

.sc-tk::before {
  background: linear-gradient(135deg, rgba(105, 201, 208, 0.08), transparent);
}

.sc-tk:hover {
  border-color: rgba(105, 201, 208, 0.3);
}

.sc-tk .sc-icon {
  background: rgba(105, 201, 208, 0.1);
  color: #69c9d0;
}

.sc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-icon svg {
  width: 22px;
  height: 22px;
}

.sc-body {
  flex: 1;
  min-width: 0;
}

.sc-label {
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 500;
}

.sc-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-arrow {
  color: var(--muted);
  transition: transform 0.2s;
}

/* ════════════════════════════════════════
       CONTACT
    ════════════════════════════════════════ */
.contact-section {
  background: var(--bg2);
}

.contact-wrapper {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.availability-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.avail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.avail-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.avail-badge {
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
  animation: pulse-dot 2s infinite;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.day-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.day-name {
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.day-bar {
  width: 100%;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.day-bar.available {
  background: linear-gradient(to top, var(--gold), var(--gold-lt));
}

.day-bar.partial {
  background: linear-gradient(to top,
      rgba(201, 162, 39, 0.35),
      rgba(232, 191, 77, 0.35));
}

.day-bar.unavailable {
  background: var(--border2);
}

.avail-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--muted);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.legend-dot.a {
  background: var(--gold);
}

.legend-dot.p {
  background: rgba(201, 162, 39, 0.35);
}

.legend-dot.u {
  background: var(--border2);
}

.rate-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 16px;
}

.rate-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.rate-val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
  background: var(--bg3);
}

.channel-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.22s;
}

.channel-btn:hover {
  transform: translateY(-2px);
}

.channel-btn:hover::before {
  opacity: 1;
}

.channel-wa::before {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.07), transparent);
}

.channel-wa:hover {
  border-color: rgba(37, 211, 102, 0.35);
}

.channel-wa .ch-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.channel-li::before {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), transparent);
}

.channel-li:hover {
  border-color: rgba(10, 102, 194, 0.35);
}

.channel-li .ch-icon {
  background: rgba(10, 102, 194, 0.12);
  color: #0a66c2;
}

.channel-email::before {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent);
}

.channel-email:hover {
  border-color: var(--gold-border);
}

.channel-email .ch-icon {
  background: var(--gold-dim);
  color: var(--gold);
}

.ch-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-icon svg {
  width: 22px;
  height: 22px;
}

.ch-body {
  flex: 1;
}

.ch-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 500;
}

.ch-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.ch-arrow {
  color: var(--muted);
  transition:
    transform 0.2s,
    color 0.2s;
}

.channel-btn:hover .ch-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
footer {
  padding: 40px 80px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social-icon:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

/* ════════════════════════════════════════
       WHATSAPP FAB
    ════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.wa-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wa-fab:hover .wa-tooltip {
  opacity: 1;
}

/* ════════════════════════════════════════
       MODAL
    ════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 7, 14, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s;
}

.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal-imgs {
  position: relative;
  height: clamp(220px, 38vw, 320px);
  background: var(--bg4);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.modal-img-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.modal-img-slide.active {
  opacity: 1;
}

.modal-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 22px;
  pointer-events: none;
}

.modal-img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.modal-img-placeholder-inner .big-emoji {
  font-size: 3.5rem;
}

.modal-img-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
}

.modal-img-btn {
  pointer-events: all;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 13, 20, 0.7);
  border: 1px solid var(--border2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.modal-img-btn:hover {
  background: var(--gold);
  color: #0b0d14;
  border-color: var(--gold);
}

.modal-img-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.modal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
  cursor: pointer;
}

.modal-dot.active {
  background: var(--white);
  width: 16px;
  border-radius: 3px;
}

.modal-body {
  padding: 28px 30px 32px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg4);
  border: 1px solid var(--border2);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--border2);
  color: var(--white);
}

.modal-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.modal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.modal-link-primary {
  background: var(--gold);
  color: #0b0d14;
}

.modal-link-primary:hover {
  background: var(--gold-lt);
}

.modal-link-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
}

.modal-link-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
@media (max-width: 960px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section-label {
    justify-content: center;
  }

  .section-title {
    text-align: center;
  }

  .section-sub {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    text-align: center;
  }

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

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

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .glossary-cta p {
    max-width: 100%;
  }

  .glossary-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 40px;
  }

  .glossary-card {
    padding: 22px 20px;
    gap: 14px;
  }

  .gc-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .gc-title {
    font-size: 1rem;
  }

  .gc-desc {
    font-size: 0.84rem;
  }

  .trust-bar-inner {
    justify-content: center;
  }

  .trust-item {
    text-align: center;
  }

  section,
  .skills-section {
    padding: 64px 24px;
  }

  .hero {
    padding: 96px 20px 56px;
  }

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

  .hero-visual {
    order: -1;
  }

  .avatar-wrap {
    width: 240px;
    height: 280px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 28px 0;
  }

  .exp-item::before,
  .exp-dot {
    display: none;
  }

  footer {
    padding: 32px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .socials-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
}

@media (max-width: 600px) {
  nav {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
  }

  section,
  .skills-section {
    padding: 52px 18px;
  }

  .hero {
    padding: 88px 18px 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    gap: 18px;
    margin-top: 36px;
    padding-top: 28px;
  }

  .stat-num {
    font-size: 1.7rem;
  }

  .avatar-wrap {
    width: 200px;
    height: 230px;
  }

  .badge-rank {
    bottom: -14px;
    right: -10px;
    padding: 9px 13px;
    font-size: 0.62rem;
  }

  .badge-rank strong {
    font-size: 1.1rem;
  }

  .badge-rating {
    top: -12px;
    left: -10px;
    padding: 8px 10px;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 9px;
  }

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

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

  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal {
    max-width: 100%;
    max-height: 94vh;
    border-radius: 20px 20px 0 0;
  }

  .modal-imgs {
    height: 220px;
  }

  .modal-body {
    padding: 22px 20px 26px;
  }

  .modal-title {
    font-size: 1.1rem;
  }

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

  .modal-link {
    justify-content: center;
  }

  .wa-fab {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .footer-cols {
    gap: 32px;
  }
}

/* ═══ CV SECTION ═══ */
.cv-section {
  background: var(--bg);
}

.cv-card {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: rgba(16, 18, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.cv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
  background-size: 200% 100%;
  animation: shimmerBorder 4s infinite linear;
}

@keyframes shimmerBorder {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.cv-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: 0 32px 64px rgba(201, 162, 39, 0.12);
}

.cv-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
  aspect-ratio: 1 / 1.414;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.cv-card:hover .cv-preview {
  transform: scale(1.02);
  border-color: var(--border2);
}

.cv-preview iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--white);
  z-index: 2;
  position: relative;
  transition: opacity 0.3s ease;
}

.cv-preview-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 13, 20, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  z-index: 3;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cv-preview-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  z-index: 1;
}

.cv-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cv-info-top {
  margin-bottom: 32px;
}

.cv-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--green);
  background: rgba(74, 222, 128, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.cv-updated-badge .status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.cv-name {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cv-role {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cv-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.cv-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.cv-highlights li:hover {
  transform: translateX(6px);
  color: var(--white);
}

.cv-highlights li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cv-highlights li:hover svg {
  transform: scale(1.2) rotate(5deg);
}

.cv-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

@media (max-width: 960px) {
  .cv-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }

  .cv-preview {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cv-card {
    padding: 28px 20px;
    gap: 32px;
  }

  .cv-name {
    font-size: 1.8rem;
  }

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

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

/* ════════════════════════════════════════
       TRUST BAR (below hero)
    ════════════════════════════════════════ */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 80px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
       GLOSSARY CTA STRIP
    ════════════════════════════════════════ */
.glossary-cta {
  margin-top: 44px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(120deg,
      rgba(201, 162, 39, 0.1),
      rgba(201, 162, 39, 0.02));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
}

.glossary-cta p {
  font-size: 0.92rem;
  color: var(--text);
  max-width: 460px;
}

.glossary-cta p strong {
  color: var(--gold-lt);
}

/* ════════════════════════════════════════
       PACKAGES / PRICING (sell-focused)
    ════════════════════════════════════════ */
.pricing-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  align-items: stretch;
}

.price-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.price-card.is-popular {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.09), var(--bg3) 55%);
  transform: scale(1.03);
}

.price-card.is-popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0b0d14;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.4);
  white-space: nowrap;
}

.price-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.price-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.price-for {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 40px;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.price-from {
  font-size: 0.78rem;
  color: var(--muted);
}

.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

.price-features li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.pricing-note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════
       PROCESS / HOW IT WORKS
    ════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
  position: relative;
}

.process-step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
}

.process-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════
       FAQ
    ════════════════════════════════════════ */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--gold-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--white);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════
       PRICING / PROCESS RESPONSIVE
    ════════════════════════════════════════ */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.is-popular {
    transform: none;
    order: -1;
  }

  .price-card.is-popular:hover {
    transform: translateY(-6px);
  }

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

  .trust-bar {
    padding: 22px 24px;
  }

  .trust-bar-inner {
    justify-content: center;
  }

  .glossary-cta {
    padding: 20px 22px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .glossary-cta p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    font-size: 0.76rem;
  }

  .price-card.is-popular {
    padding: 30px 24px;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .glossary-card {
    padding: 18px 16px;
    gap: 12px;
  }

  .gc-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  .gc-title {
    font-size: 0.95rem;
  }

  .gc-desc {
    font-size: 0.82rem;
  }
}

/* ═══ ADDED: filters, profile preview cards ═══ */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 8px;
}

@media (max-width: 600px) {
  .filters-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    margin: 20px 0 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filters-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex-shrink: 0;
  }
}

.filter-chip {
  font-family: var(--font-body, inherit);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border2, rgba(201, 162, 39, 0.25));
  background: var(--bg3, rgba(255, 255, 255, 0.03));
  color: var(--muted, #9a9a9a);
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.filter-chip:hover {
  border-color: var(--gold, #c9a227);
  color: var(--text, #eee);
}

.filter-chip.active {
  background: var(--gold, #c9a227);
  border-color: var(--gold, #c9a227);
  color: #141414;
}

.filter-chip .count {
  opacity: 0.65;
  font-weight: 500;
  margin-left: 4px;
}

.filter-chip.active .count {
  opacity: 0.55;
}

.filters-empty {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 4px;
  padding: 16px 20px;
  border-radius: var(--radius-lg, 12px);
  border: 1px dashed var(--border2, rgba(201, 162, 39, 0.25));
  color: var(--muted, #9a9a9a);
  font-size: 0.88rem;
}

.filters-empty[hidden] {
  display: none !important;
}

.filters-empty button {
  border: 1px solid var(--gold, #c9a227);
  color: var(--gold, #c9a227);
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.filters-empty button:hover {
  background: var(--gold, #c9a227);
  color: #141414;
}

.project-card.is-filtered-out {
  display: none !important;
}

.profile-previews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 26px 0 34px;
}

@media (max-width: 720px) {
  .profile-previews {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg, 14px);
  border: 1px solid var(--border2, rgba(201, 162, 39, 0.2));
  background: var(--bg3, rgba(255, 255, 255, 0.03));
  padding: 20px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.profile-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold, #c9a227);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.pc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pc-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text, #eee);
  font-weight: 700;
  font-size: 0.92rem;
}

.gh-card .pc-icon svg {
  color: #eee;
}

.li-card .pc-icon svg {
  color: #0a66c2;
}

.pc-goto {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  color: var(--gold, #c9a227);
  font-weight: 600;
}

.pc-body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pc-avatar,
.pc-avatar-skel {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-avatar-fallback {
  font-weight: 700;
  color: var(--gold, #c9a227);
}

.pc-avatar-skel {
  animation: pc-pulse 1.4s ease-in-out infinite;
}

.pc-name-skel,
.pc-bio-skel {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  animation: pc-pulse 1.4s ease-in-out infinite;
}

.pc-name-skel {
  width: 120px;
  height: 14px;
  margin-bottom: 8px;
}

.pc-bio-skel {
  width: 180px;
  height: 10px;
}

@keyframes pc-pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
  }
}

.pc-info {
  min-width: 0;
}

.pc-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text, #eee);
  margin-bottom: 3px;
}

.pc-bio {
  font-size: 0.8rem;
  color: var(--muted, #9a9a9a);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pc-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  padding-top: 14px;
}

.pc-stat {
  flex: 1;
  text-align: center;
}

.pc-stat strong {
  display: block;
  font-family: var(--font-head, inherit);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold, #c9a227);
}

.pc-stat span {
  font-size: 0.68rem;
  color: var(--muted, #9a9a9a);
}