@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');


body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #fff;
}


.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/vince-hero-bg.webp") center/cover no-repeat;
  z-index: 0;
}

/* Header */
.hero-header {
  position: sticky !important;  
  top: 0 !important;
  z-index: 1000 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 100px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.hero-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.hero-profile img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.hero-nav {
  display: flex;
  gap: 12px;
}
.hero-nav a {
    position: relative;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid transparent;
    transition: 
      background 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.25s ease;
  }

.hero-nav a:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.35);
    transform: translateY(-1px);
}

.btn,
.btn-outline {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  border: 1px solid #7c4dff;
  background: transparent;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 130px 100px;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
}

.muted {
  color: #b3b3b3;
  font-weight: 400;
}

.highlight {
  color: #b084ff;
}

.hero-stats {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  margin-top: 64px;
  font-size: 14px;
  opacity: 0.9;
}

.hero-right {
    position: absolute;
    top: 214px;
    right: 80px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 28px;
  }

  /* Gradient muted text */
.gradient-muted {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #b5b5b5 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
  }
  
  /* Gradient purple highlight */
  .gradient-purple {
    background: linear-gradient(
      180deg,
      #8b5cf6 0%,   /* violet on top */
      #ffffff 100% /* white at bottom */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
  }


  .normal-text {
  font-weight: 400; /* normal */
  color: #ffffff;
}

.work-card {
  will-change: transform, opacity;
  transform: translateZ(0);
}


/* Video ring */
.video-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #7c4dff, #b084ff);
}

.video-ring video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Availability */
.availability {
  font-size: 15px;
  text-align: end;
  opacity: 0.85;
}

.availability .dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: #7c5cff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
  
    /* subtle depth */
    box-shadow:
      0 0 0 0 rgba(139, 92, 246, 0.45),
      0 0 6px rgba(139, 92, 246, 0.35);
  
    animation: softPulse 3.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  
/* subtle pulse ring */
.availability .dot::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.7) 0%,   /* strong center */
        rgba(139, 92, 246, 0.35) 35%,
        rgba(139, 92, 246, 0.18) 55%,
        rgba(139, 92, 246, 0.08) 65%,
        transparent 85%
      );
      
    opacity: 0;
    animation: auraPulse 3.2s ease-out infinite;
  }
  

.availability p {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.7;
}

@keyframes softPulse {
    0% {
      box-shadow:
        0 0 0 0 rgba(139, 92, 246, 0.45),
        0 0 6px rgba(139, 92, 246, 0.35);
    }
    50% {
      box-shadow:
        0 0 0 6px rgba(139, 92, 246, 0.15),
        0 0 10px rgba(139, 92, 246, 0.45);
    }
    100% {
      box-shadow:
        0 0 0 0 rgba(139, 92, 246, 0.45),
        0 0 6px rgba(139, 92, 246, 0.35);
    }
  }
  
  @keyframes auraPulse {
    0% {
      opacity: 0;
      transform: scale(0.85);
    }
    50% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(1.15);
    }
  }
  

  @media (max-width: 1200px) {
    .hero-header {
      padding: 24px 64px;
    }
  
    .hero-content {
      padding: 120px 64px;
    }
  
    .hero-left h1 {
      font-size: 42px;
    }
  
    .hero-right {
      top: 200px;
      right: 64px;
    }
  }
  @media (max-width: 900px) {
    .hero-header {
      padding: 20px 32px;
    }
  
    .hero-nav {
      gap: 8px;
    }
  
    .hero-nav a {
      padding: 6px 12px;
      font-size: 12px;
    }
  
    .hero-content {
      flex-direction: column;
      align-items: flex-start;
      padding: 100px 32px;
      gap: 48px;
    }
  
    .hero-left h1 {
      font-size: 38px;
    }
  
    .hero-stats {
      margin-top: 40px;
    }
  
    .hero-right {
      position: relative;
      top: unset;
      right: unset;
      align-items: flex-start;
      display:flex;
      flex-direction:row;
      margin-top:10px;
    }
  
    .availability {
      text-align: left;
    }
  }
  @media (max-width: 600px) {
    .hero-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding: 40px 25px;
    }
  
    .hero-nav {
      flex-wrap: wrap;
      gap: 8px;
    }
  
    .hero-content {
      padding: 30px 25px;
      gap: 40px;
    }
  
    .hero-left h1 {
      font-size: 28px;
      line-height: 1.25;
    }
  
    .hero-stats {
      font-size: 13px;
      gap: 8px;
      margin-top: 32px;
    }
  
    .video-ring {
      width: 110px;
      height: 110px;
    }
  
    .availability {
      font-size: 14px;
    }
  
    .availability p {
      font-size: 12px;
    }
  
    .availability .dot {
      width: 8px;
      height: 8px;
    }
  
    .availability .dot::after {
      inset: -8px;
    }
  }
  

  /* END OF HERO SECTION  */


/* ============================= */
/* START OF WORKS SECTION        */
/* ============================= */

.my-work {
  padding: 80px 100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.section-title .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #7c5cff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;

  /* subtle depth */
  box-shadow:
    0 0 0 0 rgba(139, 92, 246, 0.45),
    0 0 6px rgba(139, 92, 246, 0.35);

  animation: softPulse 3.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}


.work-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 72px;
}

.filter-btn {
  background: transparent;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.filter-btn.active {
  color: #fff;
  border-color: #fff;
  font-weight: 600;
}


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


.work-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.work-card.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.work-card.fade-in {
  opacity: 0;
  transform: translateY(10px);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.work-card:hover img {
  transform: scale(1.05);
}


.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 46px;                 
  padding: 0 14px;

  display: flex;
  align-items: center;

  background: rgba(0, 0, 0, 0.85); 
  
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.work-card:hover .card-overlay {
  transform: translateY(0);
}



.card-footer {
  width: 100%;
}

.card-title {
  display: inline-flex;
  align-items: center;      
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: #fff;
}

.card-arrow {
  width: 17px;
  height: 17px;
  opacity: 0.9;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* HOVER MOVE */
.work-card:hover .card-arrow {
  transform: translate(4px, -4px);
  opacity: 1;
}


.see-more-wrapper {
  text-align: center;
  margin-top: 32px;
}

.see-more {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
}



@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .my-work {
    padding: 64px 40px;
  }
}

@media (max-width: 520px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .my-work {
    padding: 56px 20px; 
  }
  .filter-btn{
    font-size: 14px;
  }
  .card-overlay {
    transform: translateY(0); 
  }

  .work-card:hover .card-overlay {
    transform: translateY(0);
  }
  .card-title{
    font-size: 12px;
  }
}

/* ============================= */
/* BOOK A CALL SECTION           */
/* ============================= */



.book-call {
  padding: 120px 20px;
  padding-bottom: 0;
  background: #000;
  display: flex;
  justify-content: center;
}

.book-call-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

/* Eyebrow */
.book-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.book-eyebrow .dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #7c5cff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;

  /* subtle depth */
  box-shadow:
    0 0 0 0 rgba(139, 92, 246, 0.45),
    0 0 6px rgba(139, 92, 246, 0.35);

  animation: softPulse 3.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Title */
.book-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 24px;
}

/* Email pill */
.email-pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 48px;
  transition: background 0.25s ease, border 0.25s ease;
}

.email-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Calendar container */
.calendar-wrapper {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  /* background: #111; */
  z-index: 999 !important;
  /* box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08); */
}

#my-cal-inline-30min {
  width: 100%;
  height: 453px;
}

@media (max-width: 768px) {
  .book-title {
    font-size: 26px;
  }

  #my-cal-inline-30min {
    height: 600px;
  }
}

@media (max-width: 520px) {
  .book-call {
    padding: 90px 20px;
  }

  .book-title {
    font-size: 22px;
  }

  .email-pill {
    font-size: 13px;
  }

  .calendar-wrapper {
    overflow: visible; 
  }

  #my-cal-inline-30min {
    height: 720px; 
    margin-bottom: 200px;
  }
}

.spacer-bg {
  background-image: url("/assets/images/vince-hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;

  padding: 20px;
  height: 340px;

  display: flex;
  justify-content: center;
}
@media (max-width: 520px) {
  .spacer-bg {
    height: 260px; /* smaller mobile height */
    background-position: center center;
  }
}

/* ============================= */
/* FOOTER                        */
/* ============================= */

.site-footer {
  position: relative;
  background: #0a0a0a;
  padding: 100px 80px 240px;
  overflow: hidden;
}

.footer-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* CTA column */
.footer-cta h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}

.footer-cta strong {
  font-weight: 600;
}

.footer-form {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
}

.footer-form input::placeholder {
  color: #aaa;
}

.footer-form button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.footer-copy {
  font-size: 12px;
  color: #888;
}

/* Columns */
.footer-col h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

/* Big watermark text */
.footer-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 20vw, 220px);
  font-weight: 700;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
}

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

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 80px 20px 120px;
  }

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

  .footer-cta h3 {
    font-size: 22px;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-watermark {
    bottom: -20px;
    font-size: 46px;
    margin-bottom: 20px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* ============================= */
/* MY EVERYDAY ARSENAL           */
/* ============================= */

.arsenal {
  padding: 120px 100px;
  text-align: center;
}

.arsenal-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 60px;
}

.arsenal-tab {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #bbb;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.arsenal-tab.active,
.arsenal-tab:hover {
  color: #fff;
  background: rgba(139,92,246,0.18);
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 18px rgba(139,92,246,0.35);
}

.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.arsenal-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.arsenal-card img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
}

.arsenal-card span {
  font-size: 14px;
  opacity: 0.9;
}

.arsenal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 26px rgba(139,92,246,0.35);
}

.arsenal-footer {
  margin-top: 60px;
  font-size: 14px;
  color: #aaa;
}

.arsenal-request {
  margin-top: 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
}
.arsenal-card {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.arsenal-card.is-hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .arsenal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .arsenal {
    padding: 90px 24px;
  }

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

/* ============================= */
/* EXPERTISE & CAREER TIMELINE   */
/* ============================= */

.career-section {
  padding: 120px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Expertise */
.expertise {
  text-align: center;
  margin-bottom: 100px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.tag {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ddd;
}

.timeline {
  position: relative;

  /* controls alignment */
  --gutter: 48px;     /* first column width (dot/line area) */
  --date-col: 200px;  /* date column width */
  --line-w: 2px;      /* line thickness */
}

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

.timeline-range {
  font-size: 12px;
  color: #888;
}

/* vertical line */
.timeline-line {
  position: absolute;
  top: 72px;         /* start under header */
  bottom: 0;
  width: var(--line-w);

  /* center the line inside the gutter column */
  left: calc((var(--gutter) / 2) - (var(--line-w) / 2));

  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
  z-index: 0;
}

/* purple fill (animated) */
.timeline-line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #8b5cf6 0%, #a78bfa 100%);
  transform: scaleY(0);
  transform-origin: top;
}

/* timeline row */
.timeline-item {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: var(--gutter) var(--date-col) 1fr;
  gap: 24px;
  margin-bottom: 72px;
}

/* dot perfectly centered on the same axis as the line */
.timeline-dot {
  justify-self: center;   /* center in gutter column */
  align-self: start;
  margin-top: 6px;

  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8b5cf6;

  box-shadow:
    0 0 0 4px rgba(139,92,246,0.12),
    0 0 18px rgba(139,92,246,0.25);
}

.timeline-date {
  font-size: 12px;
  color: #aaa;
  padding-top: 2px; /* aligns with dot */
}

.timeline-content h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.timeline-content .role {
  font-size: 13px;
  color: #b5b5b5;
  margin-bottom: 12px;
}

.timeline-content ul {
  padding-left: 18px;
  font-size: 13px;
  color: #ccc;
}

.timeline-content li {
  margin-bottom: 6px;
}

/* logo placeholder */
.timeline-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    --gutter: 32px;
    --date-col: 1fr;
  }

  .timeline-item {
    grid-template-columns: var(--gutter) 1fr;
    gap: 14px;
  }

  .timeline-date,
  .timeline-content {
    grid-column: 2;
  }

  .timeline-line {
    top: 88px;
  }
  .career-section{
    padding: 120px 20px;
  }
}

/* ============================= */
/* ONBOARDING PROCESS            */
/* ============================= */

.onboarding-section {
  padding: 140px 100px;
  text-align: center;
  background:
    radial-gradient(1200px 600px at 50% -20%, rgba(139,92,246,0.18), transparent 60%),
    #000;
}

.onboarding-header {
  max-width: 720px;
  margin: 0 auto 80px;
}

.onboarding-subtitle {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #b5b5b5;
}

/* Steps layout */
.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.onboarding-card {
  background: linear-gradient(180deg, rgb(176 176 176 / 25%), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  min-height: 200px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.onboarding-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.6);
}

/* Icon */
.card-icon {
  font-size: 28px;
  margin-bottom: 64px;
  color: #fff;
  opacity: 0.9;
}

/* Text */
.onboarding-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.onboarding-card p {
  font-size: 13px;
  color: #b5b5b5;
}

/* CTA */
.onboarding-cta {
  margin-top: 80px;
}

.onboarding-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.onboarding-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139,92,246,0.35);
}

/* Responsive */
@media (max-width: 1100px) {
  .onboarding-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================= */
/* ONBOARDING – MOBILE POLISH    */
/* ============================= */

@media (max-width: 600px) {

  /* Section spacing */
  .onboarding-section {
    padding: 80px 22px;
  }

  /* Header text hierarchy */
  .onboarding-header h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .onboarding-subtitle {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 14px;
    color: #cfcfcf;
  }

  /* Stack cards cleanly */
  .onboarding-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Card layout fix */
  .onboarding-card {
    padding: 26px 22px;
    min-height: unset; /* important */
    text-align: center;
  }

  /* Icon feels intentional */
  .card-icon {
    font-size: 30px;
    margin-bottom: 18px;
    opacity: 1;
  }

  /* Step title */
  .onboarding-card h3 {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  /* Supporting text */
  .onboarding-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #bfbfbf;
  }

  /* CTA spacing */
  .onboarding-cta {
    margin-top: 56px;
  }

  .onboarding-btn {
    padding: 14px 32px;
    font-size: 15px;
  }
}

.hire-me-btn-modern {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 11px 22px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: rgba(255, 255, 255, 0.85);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;

  cursor: pointer;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 25px rgba(0, 0, 0, 0.45);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover = subtle lang, hindi maingay */
.hire-me-btn-modern:hover {
  background: rgba(75, 0, 90, 0.07);
  border-color: rgba(255, 255, 255, 0.2);

  transform: translateX(6px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 32px rgba(0, 0, 0, 0.6);
}

/* Active = press feel */
.hire-me-btn-modern:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.05);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.55);
}
@media (max-width: 768px) {
  .hire-me-btn-modern {
    margin-top: 20px;

    width: 100%;
    max-width: 260px;

    justify-content: center;

    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;

    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #fff;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.85),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .hire-me-btn-modern:hover {
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }

  .hire-me-btn-modern:active {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(0.97);
  }
}

/* ============================= */
/* FAQ SECTION – DARK THEME      */
/* ============================= */

.faq-section {
  background: #000;
  padding: 120px 20px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.faq-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #9a9a9a;
  display: block;
  margin-bottom: 14px;
}

/* Title */
.faq-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

/* Subtitle */
.faq-subtitle {
  font-size: 15px;
  color: #b5b5b5;
  margin-bottom: 56px;
  line-height: 1.6;
}

/* List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Item */
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.45);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 18px 20px;

  font-family: 'Manrope', sans-serif; /* FORCE MANROPE */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;

  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

/* Icon wrapper */
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #9a9a9a;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

/* SVG icon sizing */
.faq-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #bfbfbf;
  text-align: left;
  line-height: 1.65;
}

/* Active state */
.faq-item.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.6);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #8b5cf6;
}

/* Hover polish */
.faq-question:hover .faq-icon {
  color: #cfcfcf;
}

/* Mobile polish */
@media (max-width: 520px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-question {
    font-size: 13px;
  }
}
