/* =====================================================================
   Single Consultant — Ashish Pandey
   LinkedIn-inspired profile page. All rules scoped under .lp-main so
   nothing leaks into the rest of the theme.
   ===================================================================== */

.lp-main {
  --lp-bg:        #f4f2ee;
  --lp-card:      #ffffff;
  --lp-border:    #e0dfdc;
  --lp-text:      #1d2226;
  --lp-text-2:    #56687a;
  --lp-text-3:    #8b96a3;
  --lp-link:      #0a66c2;
  --lp-link-hov:  #004182;
  --lp-primary:   #0a66c2;
  --lp-primary-d: #004182;
  --lp-accent:    #ec2024;
  --lp-radius:    12px;
  --lp-radius-sm: 8px;
  --lp-shadow:    0 0 0 1px rgba(0,0,0,.08);
  --lp-shadow-2:  0 4px 12px rgba(0,0,0,.04), 0 0 0 1px rgba(0,0,0,.06);

  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Helvetica Neue", Arial, sans-serif;
  color: var(--lp-text);
  background: var(--lp-bg);
  padding: 24px 0 80px;
  font-size: 14px;
  line-height: 1.5;
}

.lp-main *,
.lp-main *::before,
.lp-main *::after { box-sizing: border-box; }

.lp-shell {
  max-width: 1128px;
  margin: 0 auto 12px;
  padding: 0 16px;
}

/* Card primitive ------------------------------------------------------ */
.lp-card {
  background: var(--lp-card);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-2);
  padding: 24px;
  overflow: hidden;
}
.lp-card--profile  { padding: 0; }
.lp-card--cta      { padding: 0; background: linear-gradient(135deg,#0a66c2 0%,#004182 60%,#ec2024 110%); color:#fff; }

/* ============================== HERO ============================== */
.lp-cover {
  position: relative;
  height: 220px;
  background: #c3d9ff;
  overflow: hidden;
}
.lp-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-profile {
  position: relative;
  padding: 0 24px 24px;
}

.lp-profile__avatar {
  position: relative;
  margin-top: -88px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.lp-profile__avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.lp-profile__row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .lp-profile__row { grid-template-columns: 1fr; }
}

/* H2 — person's name, sits ABOVE the H1 in source order and is the
   visual hero of the profile card (LinkedIn-style). */
.lp-profile__name {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--lp-text);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  line-height: 1.2;
}

/* H1 — keyword-rich primary heading. Sits directly below the name
   visually, but still carries the page's primary SEO weight. Styled as a
   subtitle so the LinkedIn look (big name on top) is preserved. */
.lp-profile__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1px;
  color: var(--lp-text-2);
  margin: 0 0 10px;
}
@media (min-width: 760px) {
  .lp-profile__title { font-size: 16px; }
}

.lp-pronoun {
  font-size: 13px;
  color: var(--lp-text-3);
  font-weight: 400;
  background: #f3f6f8;
  padding: 1px 8px;
  border-radius: 12px;
}
.lp-degree { font-size: 14px; color: var(--lp-text-3); font-weight: 400; }

/* Legacy keyword-rich H1 sub-line — kept for backwards compatibility with
   any earlier markup that still nests <span class="lp-h1-sub"> inside a
   heading. New markup uses <h1 class="lp-profile__title"> instead. */
.lp-h1-sub {
  flex-basis: 100%;
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-text-2);
  letter-spacing: 0.1px;
  line-height: 1.4;
}
@media (min-width: 760px) {
  .lp-h1-sub { font-size: 16px; }
}

/* Client-loved trust line (replaces LinkedIn-style mutual connections) */
.lp-profile__trust { color: var(--lp-text-2); }
.lp-profile__trust strong { color: var(--lp-text); font-weight: 700; }
.lp-trust-stars {
  display: inline-block;
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 1;
  margin-right: 2px;
}

.lp-profile__headline {
  font-size: 15px;
  color: var(--lp-text);
  margin: 0 0 10px;
  font-weight: 500;
  line-height: 1.45;
}
.lp-stripe {
  display: inline-block;
  padding-left: 4px;
  background: linear-gradient(transparent 60%, rgba(10,102,194,.18) 60%);
}

.lp-profile__meta {
  font-size: 14px;
  color: var(--lp-text-2);
  margin: 0 0 8px;
}
.lp-loc { color: var(--lp-text-2); }
.lp-dot { padding: 0 4px; color: var(--lp-text-3); }
.lp-contact-link {
  color: var(--lp-link);
  font-weight: 600;
  text-decoration: none;
}
.lp-contact-link:hover { color: var(--lp-link-hov); text-decoration: underline; }

.lp-profile__company {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
}
.lp-company-logo {
  width: 24px; height: 24px; display: inline-flex;
  align-items: center; justify-content: center;
  background: #000; border-radius: 4px; padding: 2px;
}
.lp-company-logo img { max-width: 100%; max-height: 100%; }
.lp-profile__company a { color: var(--lp-text); text-decoration: none; }
.lp-profile__company a:hover { color: var(--lp-link); }

.lp-profile__stats {
  font-size: 13px;
  color: var(--lp-text-2);
  margin: 0 0 8px;
}
.lp-profile__stats strong { color: var(--lp-text); }

.lp-profile__mutuals {
  font-size: 13px;
  color: var(--lp-text-2);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-mutual-faces { display: inline-flex; }
.lp-face {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg,#cbd5e1,#94a3b8);
  margin-left: -6px;
}
.lp-face:first-child { margin-left: 0; }
.lp-face--1 { background: linear-gradient(135deg,#f59e0b,#dc2626); }
.lp-face--2 { background: linear-gradient(135deg,#10b981,#0a66c2); }
.lp-face--3 { background: linear-gradient(135deg,#8b5cf6,#ec4899); }

/* Buttons ------------------------------------------------------------- */
.lp-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: transparent;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  line-height: 1.2;
  white-space: nowrap;
}
.lp-btn svg { width: 16px; height: 16px; }
.lp-btn--primary {
  background: var(--lp-primary);
  color: #fff;
  border-color: var(--lp-primary);
}
.lp-btn--primary:hover { background: var(--lp-primary-d); border-color: var(--lp-primary-d); color: #fff; }
.lp-btn--outline {
  border-color: var(--lp-primary);
  color: var(--lp-primary);
  background: transparent;
}
.lp-btn--outline:hover { background: rgba(10,102,194,.08); color: var(--lp-primary-d); border-color: var(--lp-primary-d); }
.lp-btn--ghost {
  border-color: rgba(0,0,0,.6);
  color: var(--lp-text);
  background: transparent;
}
.lp-btn--ghost:hover { background: rgba(0,0,0,.06); color: var(--lp-text); }
.lp-btn--lg { padding: 12px 24px; font-size: 15px; }

/* Brand card (right-side) -------------------------------------------- */
.lp-profile__brandcard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: #fafafa;
  align-self: start;
}
.lp-brandcard__logo {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  background: #000;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
}
.lp-brandcard__logo img { max-width: 100%; max-height: 100%; }
.lp-brandcard__name { font-weight: 700; margin: 0; font-size: 14px; }
.lp-brandcard__tag  { font-size: 12px; color: var(--lp-text-2); margin: 2px 0 6px; }
.lp-brandcard__link { font-size: 13px; color: var(--lp-link); font-weight: 600; text-decoration: none; }
.lp-brandcard__link:hover { text-decoration: underline; }

/* ============================== SECTIONS ============================== */
.lp-section__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-section__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--lp-text);
}
.lp-section__sub {
  font-size: 13px;
  color: var(--lp-text-2);
  margin: 0;
}

/* About --------------------------------------------------------------- */
.lp-about p { margin: 0 0 14px; font-size: 15px; line-height: 1.7; color: var(--lp-text); }
.lp-about a { color: var(--lp-link); text-decoration: none; font-weight: 500; }
.lp-about a:hover { text-decoration: underline; }
.lp-lede { font-size: 16px !important; }

.lp-h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--lp-text);
}

.lp-bullets {
  margin: 0 0 16px;
  padding-left: 22px;
}
.lp-bullets li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.6;
}

.lp-cta-line {
  margin-top: 20px;
  padding: 14px 16px;
  background: #f3f6f8;
  border-left: 4px solid var(--lp-primary);
  border-radius: 6px;
  font-size: 14px;
}

/* Solutions grid ------------------------------------------------------ */
.lp-grid { display: grid; gap: 12px; }
.lp-grid--solutions {
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  margin-bottom: 16px;
}
.lp-solution {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.lp-solution:hover { border-color: var(--lp-primary); box-shadow: 0 0 0 1px var(--lp-primary); }
.lp-solution .lp-emo { font-size: 22px; flex: 0 0 auto; }
.lp-solution strong { display: block; font-size: 13px; color: var(--lp-text); }
.lp-solution span:not(.lp-emo) { font-size: 12px; color: var(--lp-text-2); }

/* Top skills ---------------------------------------------------------- */
.lp-topskills__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-chip {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3f6f8;
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
  font-weight: 500;
}
.lp-chip--primary {
  background: rgba(10,102,194,.08);
  border-color: rgba(10,102,194,.35);
  color: var(--lp-primary-d);
  font-weight: 600;
}

/* Experience ---------------------------------------------------------- */
.lp-exp { display: flex; gap: 16px; align-items: flex-start; }
.lp-exp__logo {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  background: #000;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
}
.lp-exp__logo img { max-width: 100%; max-height: 100%; }
.lp-exp__role { font-size: 16px; font-weight: 700; margin: 0; }
.lp-exp__company { font-size: 14px; color: var(--lp-text); margin: 2px 0; font-weight: 500; }
.lp-exp__period,
.lp-exp__location { font-size: 13px; color: var(--lp-text-2); margin: 0; }
.lp-exp__desc { font-size: 14px; color: var(--lp-text); margin: 12px 0 10px; line-height: 1.6; }
.lp-exp__skills {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.lp-exp__skills li {
  font-size: 12px;
  padding: 4px 10px;
  background: #f3f6f8;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  color: var(--lp-text-2);
}

/* Services grid ------------------------------------------------------- */
.lp-grid--services { grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); }
.lp-service {
  padding: 18px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: #fff;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.lp-service:hover {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 1px var(--lp-primary), 0 8px 24px rgba(10,102,194,.10);
  transform: translateY(-2px);
}
.lp-service__icon { font-size: 30px; line-height: 1; margin-bottom: 10px; }
.lp-service h3 { font-size: 15px; font-weight: 700; margin: 0 0 6px; color: var(--lp-text); }
.lp-service p { font-size: 13.5px; color: var(--lp-text-2); margin: 0; line-height: 1.55; }

/* Why grid ------------------------------------------------------------ */
.lp-grid--why { grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); }
.lp-why {
  position: relative;
  padding: 18px 18px 18px 64px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: #fff;
}
.lp-why__num {
  position: absolute;
  left: 14px; top: 14px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
}
.lp-why h3 { font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.lp-why p { font-size: 13.5px; color: var(--lp-text-2); margin: 0; line-height: 1.55; }

/* Industries ---------------------------------------------------------- */
.lp-grid--industries { grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); }
.lp-ind {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}
.lp-ind span { font-size: 22px; }

/* Cases --------------------------------------------------------------- */
.lp-grid--cases { grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 16px; }
.lp-case {
  padding: 22px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: #fff;
}
.lp-case__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--lp-primary);
  background: rgba(10,102,194,.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.lp-case h3 { font-size: 17px; font-weight: 700; margin: 0 0 10px; line-height: 1.35; }
.lp-case p { font-size: 14px; color: var(--lp-text); line-height: 1.6; margin: 0 0 14px; }
.lp-case p a { color: var(--lp-link); font-weight: 600; text-decoration: none; }
.lp-case p a:hover { text-decoration: underline; }
.lp-case__stats {
  list-style: none;
  margin: 0; padding: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  border-top: 1px solid var(--lp-border);
}
.lp-case__stats li { text-align: center; }
.lp-case__stats strong { display: block; font-size: 18px; color: var(--lp-primary); font-weight: 700; }
.lp-case__stats span   { display: block; font-size: 11px; color: var(--lp-text-2); margin-top: 2px; }

/* Process ------------------------------------------------------------- */
.lp-process {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 12px;
}
.lp-process li {
  position: relative;
  padding: 16px 16px 16px 64px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: #fff;
}
.lp-process__num {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg,var(--lp-primary),var(--lp-accent));
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
}
.lp-process h3 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.lp-process p  { font-size: 13.5px; color: var(--lp-text-2); margin: 0; }

/* Stack --------------------------------------------------------------- */
.lp-stack {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.lp-stack li {
  font-size: 13px;
  padding: 6px 12px;
  background: #f3f6f8;
  border: 1px solid var(--lp-border);
  border-radius: 6px;
  color: var(--lp-text);
}

/* Quotes -------------------------------------------------------------- */
.lp-grid--quotes { grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 14px; }
.lp-quote {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--lp-border);
  border-left: 4px solid var(--lp-primary);
  border-radius: var(--lp-radius-sm);
  background: #fafafa;
}
.lp-quote blockquote {
  margin: 0 0 10px;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--lp-text);
}
.lp-quote figcaption {
  font-size: 12px;
  color: var(--lp-text-2);
}

/* FAQ ----------------------------------------------------------------- */
.lp-faq { display: flex; flex-direction: column; gap: 8px; }
.lp-faq__item {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: #fff;
  overflow: hidden;
}
.lp-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--lp-text);
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__chev svg { width: 18px; height: 18px; transition: transform .2s; }
.lp-faq__item[open] .lp-faq__chev svg { transform: rotate(180deg); }
.lp-faq__a {
  padding: 0 16px 16px;
  border-top: 1px solid var(--lp-border);
}
.lp-faq__a p { margin: 12px 0 0; font-size: 14px; color: var(--lp-text-2); line-height: 1.65; }

/* CTA card ------------------------------------------------------------ */
.lp-cta__inner {
  padding: 40px 28px;
  text-align: center;
  position: relative;
}
.lp-cta__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background: rgba(255,255,255,.18);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.lp-cta__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
  color: #fff;
}
.lp-cta__sub {
  font-size: 15px;
  margin: 0 auto 20px;
  max-width: 640px;
  color: rgba(255,255,255,.86);
}
.lp-cta__row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.lp-cta__row .lp-btn--primary { background: #fff; color: var(--lp-primary-d); border-color: #fff; }
.lp-cta__row .lp-btn--primary:hover { background: #f3f6f8; color: var(--lp-primary-d); }
.lp-cta__row .lp-btn--outline { color: #fff; border-color: #fff; }
.lp-cta__row .lp-btn--outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.lp-cta__row .lp-btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.lp-cta__row .lp-btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.lp-cta__trust { margin: 16px 0 0; font-size: 12.5px; color: rgba(255,255,255,.7); }

/* ====================== RESPONSIVE TWEAKS ====================== */
@media (max-width: 720px) {
  .lp-cover { height: 140px; }
  .lp-profile { padding: 0 16px 20px; }
  .lp-profile__avatar { width: 124px; height: 124px; margin-top: -62px; }
  .lp-profile__name { font-size: 22px; }
  .lp-profile__headline { font-size: 14px; }
  .lp-card { padding: 20px 16px; }
  .lp-section__title { font-size: 18px; }
  .lp-cta__title { font-size: 22px; }
  .lp-cta__inner { padding: 28px 18px; }
  .lp-case__stats { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .lp-case__stats strong { font-size: 15px; }
}
