/* =============================================
   v2 Supplemental CSS — extends original style
   Uses the same dark theme as Portfolio-2025
   ============================================= */

/* ── Service Cards ── */
.service-card-v2 {
  padding: 35px 30px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  border-radius: 5px;
  margin-bottom: 25px;
  transition: all .4s;
}
.service-card-v2:hover {
  border-color: rgba(18,194,233,0.4);
  background: rgba(18,194,233,0.04);
  transform: translateY(-4px);
}
.service-card-v2 .num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #12c2e9;
  margin-bottom: 15px;
}
.service-card-v2 h5 {
  margin-bottom: 15px;
  font-weight: 600;
}
.service-card-v2 p {
  font-size: 14px;
  line-height: 1.9;
}
.service-card-v2 ul {
  margin-top: 15px;
}
.service-card-v2 ul li {
  font-size: 13px;
  color: #a4a7b1;
  padding: 4px 0;
  padding-left: 15px;
  position: relative;
}
.service-card-v2 ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #12c2e9;
  font-size: 11px;
}

/* ── Process Steps ── */
.process-step-v2 {
  display: flex;
  gap: 30px;
  padding: 35px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.process-step-v2 .step-num {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  min-width: 70px;
  font-family: 'Poppins', sans-serif;
}
.process-step-v2 h5 {
  margin-bottom: 10px;
  font-weight: 600;
}
.process-step-v2 p {
  font-size: 14px;
  line-height: 1.9;
}

/* ── Book Cover ── */
.book-cover-v2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #059dff 100%);
  border-radius: 6px;
  aspect-ratio: 2/3;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px 25px;
  box-shadow: 15px 20px 60px rgba(0,0,0,0.6), -5px 0 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-6deg);
  transition: transform .5s;
}
.book-cover-v2:hover {
  transform: perspective(1000px) rotateY(0deg);
}
.book-cover-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 20 L20 0 L40 20 L20 40 Z'/%3E%3C/g%3E%3C/svg%3E");
}
.book-cover-v2 .book-author {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.book-cover-v2 .book-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  position: relative;
}
.book-cover-v2 .book-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-top: 8px;
  position: relative;
}
.book-cover-v2 .book-spine {
  width: 35px;
  height: 3px;
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  border-radius: 2px;
  position: relative;
}

/* ── Email signup form ── */
.email-signup {
  display: flex;
  max-width: 440px;
  margin-top: 25px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  overflow: hidden;
}
.email-signup input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  outline: none;
}
.email-signup input::placeholder { color: rgba(255,255,255,0.3); }
.email-signup button {
  padding: 14px 22px;
  background: linear-gradient(to right, #12c2e9, #c471ed);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .3s;
  white-space: nowrap;
}
.email-signup button:hover { opacity: .85; }

/* ── Stat numbers ── */
.stat-item {
  padding: 40px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-num {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a4a7b1;
  margin-top: 8px;
}

/* ── Section heading override ── */
.v2-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #12c2e9;
  margin-bottom: 15px;
  display: block;
}

/* ── Skill tags ── */
.skill-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a4a7b1;
  margin: 4px;
  transition: all .3s;
}
.skill-tag:hover {
  border-color: #12c2e9;
  color: #12c2e9;
}

/* ── Brand pill ── */
.brand-pill-v2 {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #a4a7b1;
  margin: 4px;
  transition: all .3s;
}
.brand-pill-v2:hover {
  border-color: rgba(18,194,233,0.5);
  color: #12c2e9;
}

/* ── Value card ── */
.value-card {
  padding: 35px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.value-card .icon {
  font-size: 28px;
  margin-bottom: 18px;
}
.value-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.9;
}

/* ── Book chapter teaser ── */
.chapter-item {
  display: flex;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: flex-start;
}
.chapter-item .ch-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  min-width: 55px;
}
.chapter-item h6 {
  font-weight: 600;
  margin-bottom: 8px;
}
.chapter-item p { font-size: 14px; line-height: 1.8; }

/* ── Divider line ── */
.grad-line {
  height: 1px;
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  opacity: .4;
  margin: 0;
}
