/* ============================================
   HERO SECTION ONLY — Minimal Enhancement
   ============================================ */

/* Tighter name */
.userName {
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Summary — slightly larger, tighter, more confident */
.userSummery {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-top: 16px;
}

/* Badges — subtle refinement */
.userExpDetails {
  margin-top: 16px;
}

.userExp {
  font-size: 13px;
}

.userPositionBox {
  font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 1580px) {
  .userSummery {
    font-size: 18px;
    line-height: 1.7;
    width: 80%;
  }
}

@media (min-width: 1200px) and (max-width: 1579px) {
  .userSummery {
    font-size: 16px;
    width: 75%;
  }
}

@media (max-width: 767px) {
  .userSummery {
    font-size: 14px;
    line-height: 1.75;
    width: 100%;
  }
}

/* ============================================
   PROOF STRIP — Below Hero
   ============================================ */

.proof-strip {
  padding: 40px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  background: transparent;
}

.proof-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  flex: 1;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: #ddd;
  flex-shrink: 0;
  align-self: center;
}

.proof-num {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.proof-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-top: 8px;
  line-height: 1.4;
  max-width: 180px;
}

/* ============================================
   PROOF STRIP — Responsive
   ============================================ */

@media (min-width: 1580px) {
  .proof-num {
    font-size: 44px;
  }
  .proof-label {
    font-size: 13px;
  }
  .proof-item {
    padding: 0 56px;
  }
}

@media (max-width: 1023px) {
  .proof-grid {
    flex-wrap: wrap;
    gap: 32px 0;
  }
  .proof-item {
    flex: 1 1 50%;
    padding: 0 24px;
  }
  .proof-divider {
    display: none;
  }
  .proof-num {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .proof-strip {
    padding: 32px 0;
  }
  .proof-grid {
    flex-wrap: wrap;
    gap: 28px 0;
  }
  .proof-item {
    flex: 1 1 50%;
    padding: 0 16px;
  }
  .proof-num {
    font-size: 28px;
  }
  .proof-label {
    font-size: 11px;
    max-width: 140px;
  }
}

@media (max-width: 479px) {
  .proof-item {
    flex: 1 1 100%;
    padding: 0;
    flex-direction: row;
    gap: 12px;
    text-align: left;
    align-items: center;
  }
  .proof-num {
    font-size: 24px;
    min-width: 60px;
  }
  .proof-label {
    max-width: none;
    font-size: 12px;
  }
  .proof-grid {
    gap: 20px 0;
    padding: 0 8px;
  }
}

/* ============================================
   FEATURED WORK — Case Study Cards Enhancement
   ============================================ */

/* Card container — cleaner radius, subtle lift on hover */
.featureSection .contentItem {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.featureSection .contentItem:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

/* Image — smoother zoom */
.featureSection .contentItemImg {
  overflow: hidden;
}

.featureSection .contentItemImg img {
  transition: transform 0.5s ease;
}

.featureSection .contentItem:hover .contentItemImg img {
  transform: scale(1.03);
}

/* Title — stronger hierarchy */
.featureSection .headingItem {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #1a1a1a;
  font-style: normal;
}

/* Subtitle — lighter, supporting */
.featureSection .subItem {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin-top: 2px;
  font-style: normal;
  font-weight: 400;
}

/* Metrics row — tighter, cleaner */
.featureSection .conversionItemSection {
  gap: 24px;
  padding-top: 12px;
  margin-top: 12px;
}

.featureSection .conversionRateText {
  font-size: 12px;
  color: #999;
}

.featureSection .conversionRate span {
  font-weight: 700;
  font-size: 15px;
}

/* View button — only dark on hover, not by default */
.featureSection .viewBtn {
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  padding: 0 16px;
  height: 36px;
  transition: all 0.25s ease;
}

.featureSection .contentItem:hover .viewBtn {
  background: #1a1a1a;
  color: #fff;
}

/* Coming Soon button */
.featureSection .comingBtn {
  border-radius: 100px;
  font-size: 13px;
  padding: 0 16px;
  height: 36px;
}

/* Tab bar — refine */
.featureTabSection .navTabBar button {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* Section spacing */
.featureSection {
  padding-top: 48px;
}

/* ============================================
   FEATURED WORK — Responsive
   ============================================ */

@media (min-width: 1580px) {
  .featureSection .headingItem {
    font-size: 28px;
  }
  .featureSection .subItem {
    font-size: 18px;
  }
  .featureSection .conversionRate span {
    font-size: 18px;
  }
  .featureSection .viewBtn {
    font-size: 16px;
    height: 42px;
    padding: 0 20px;
  }
}

@media (max-width: 1023px) {
  .featureSection .headingItem {
    font-size: 20px;
  }
  .featureSection .conversionItemSection {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .featureSection .contentItem {
    border-radius: 16px;
  }
  .featureSection .headingItem {
    font-size: 18px;
  }
  .featureSection .subItem {
    font-size: 13px;
  }
  .featureSection .viewBtn {
    border-radius: 12px;
    height: 44px;
    font-size: 14px;
  }
  .featureSection .comingBtn {
    border-radius: 12px;
    height: 44px;
    font-size: 14px;
  }
  .featureSection {
    padding-top: 32px;
  }
}

/* ============================================
   POSITIONING SECTION — "Why me"
   ============================================ */

.enh-positioning-lead {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  max-width: 640px;
  margin-bottom: 24px;
}

.enh-positioning-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.enh-pos-item {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid #eee;
  align-items: baseline;
}

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

.enh-pos-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  min-width: 120px;
  flex-shrink: 0;
}

.enh-pos-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #444;
}

/* Responsive */
@media (min-width: 1580px) {
  .enh-positioning-lead {
    font-size: 15px;
  }
  .enh-pos-text {
    font-size: 14px;
  }
  .enh-pos-label {
    min-width: 140px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .enh-pos-item {
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
  }
  .enh-pos-label {
    min-width: auto;
    font-size: 10px;
  }
  .enh-pos-text {
    font-size: 13px;
  }
  .enh-positioning-lead {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
