/* ═══════════════════════════════════════════════════════════
   HIRE SECTIONS — Achievements · Why Hire Me · Opp CTA
   Append to END of public/assets/css/style.css
═══════════════════════════════════════════════════════════ */

/* ── Resume subtitle badge ── */
.resume-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,166,70,0.08);
  border: 1px solid rgba(201,166,70,0.25);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.resume-badge-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; } 50% { opacity:0.4; }
}

/* ── Experience micro upgrades ── */
.exp-achievement {
  margin: 0.8rem 0 0.5rem;
  padding: 0.65rem 0.85rem;
  background: rgba(201,166,70,0.07);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.exp-achievement-icon { flex-shrink: 0; color: var(--gold); }
.exp-tools {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.exp-tools-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-lt);
  flex-shrink: 0;
}
.exp-tool-chip {
  font-size: 0.7rem;
  color: var(--body-text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 3px;
  font-family: var(--font-mono);
}

/* ── Achievements section ── */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .achievements-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .achievements-grid { grid-template-columns: repeat(2, 1fr); gap:0.75rem; } }

.achievement-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,166,70,0.15);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.achievement-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201,166,70,0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
}
.achievement-card:hover {
  border-color: rgba(201,166,70,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 40px rgba(201,166,70,0.06);
}
.achievement-card:hover::before { opacity: 1; }

.ach-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}
.ach-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ach-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.ach-desc {
  font-size: 0.72rem;
  color: var(--muted-lt);
  line-height: 1.5;
}

/* ── Why Hire Me section ── */
.why-hire-sub {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2rem;
}
.why-hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .why-hire-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-hire-grid { grid-template-columns: 1fr; } }

.why-hire-card {
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(201,166,70,0.12);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out);
}
.why-hire-card:hover {
  border-color: rgba(201,166,70,0.35);
  background: rgba(201,166,70,0.04);
  transform: translateY(-2px);
}
.why-hire-check {
  width: 28px; height: 28px;
  min-width: 28px;
  background: rgba(201,166,70,0.12);
  border: 1px solid rgba(201,166,70,0.3);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-hire-text {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.6;
}
.why-hire-text strong { color: var(--silver); }

/* ── Opportunity CTA section ── */
.mk-section-opp {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--navy);
}
.opp-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(201,166,70,0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.opp-cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(201,166,70,0.08), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.opp-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,166,70,0.08);
  border: 1px solid rgba(201,166,70,0.3);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.opp-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.opp-heading em { color: var(--gold); font-style: italic; }
.opp-text {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.opp-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SEO Schema (hidden) ── */
script[type="application/ld+json"] { display: none; }

/* ── Trust strip fix — all items same brightness, no fading ── */
.trust-item {
  color: var(--silver) !important;
  opacity: 1 !important;
}
/* Ensure items that wrap to new line are not dimmed */
.hero-trust {
  align-items: flex-start !important;
}
.hero-trust .trust-item {
  opacity: 1 !important;
  color: var(--silver) !important;
}
/* Trust strip pulse dot — always gold */
.trust-item::before {
  opacity: 0.9 !important;
  background: var(--gold) !important;
}

/* ── Achievement SVG icon styling ── */
.ach-svg-icon {
  width: 100%;
  height: 100%;
  display: block;
}
.ach-icon svg,
.ach-icon .ach-svg-icon {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto;
}
/* Achievement card divider line */
.achievement-card::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(201,166,70,0.3);
  margin: 0.75rem auto;
}

/* ── Achievement animated counter on scroll ── */
.ach-number[data-target] {
  display: block;
}

/* ── Fix gold number font ── */
.ach-number {
  font-family: var(--font-display) !important;
  font-style: normal !important;
}

/* ── Opportunity CTA badge SVG icon ── */
.opp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}
.opp-badge .cta-badge-icon,
.opp-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: middle;
}
/* Ensure badge text and icon align properly */
.opp-badge span {
  line-height: 1;
}