@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --font-serif: 'Playfair Display', Georgia, Cambria, 'Times New Roman', Times, serif;
  --font-editorial: 'Playfair Display', Georgia, Cambria, serif;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, Monaco, 'Liberation Mono', Menlo, monospace;

  /* Neutrals */
  --bg-body: #fdfdfc;
  --surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  --border-light: rgba(15, 23, 42, 0.07);
  --border-medium: rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 30px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);

  /* Theme Accents */
  --it-blue: #0284c7;
  --it-dark: #0f172a;
  --it-bg: #f8fafc;
  --it-badge: #e0f2fe;
  --it-badge-text: #0369a1;

  --fam-amber: #d97706;
  --fam-warm: #92400e;
  --fam-bg: #fffbf5;
  --fam-badge: #fef3c7;
  --fam-badge-text: #92400e;

  --accent-gold: #b45309;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ---------------- HEADER ---------------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 253, 252, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.brand {
  display: flex;
  align-items: baseline;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.brand span {
  color: var(--fam-amber);
}

.brand-role {
  margin-left: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 640px) {
  .brand-role {
    display: inline-block;
  }
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

nav a:hover,
nav a.active {
  color: var(--text-main);
}

nav a.active::after,
nav a:hover::after {
  width: 100%;
}

.nav-contact-btn {
  padding: 8px 16px !important;
  background: var(--text-main);
  color: #fff !important;
  border-radius: 20px;
  font-size: 13.5px !important;
  transition: transform 0.2s, background-color 0.2s !important;
}

.nav-contact-btn::after {
  display: none !important;
}

.nav-contact-btn:hover {
  background: #1e293b !important;
  transform: translateY(-1px);
}

/* ---------------- HERO (SPLIT EFFECT) ---------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  max-height: 820px;
  display: flex;
  overflow: hidden;
  background: #f1f5f9;
}

.split {
  position: relative;
  width: 50%;
  height: 100%;
  padding: 60px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease;
  z-index: 2;
}

.split.left {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border-right: 1px solid rgba(15, 23, 42, 0.05);
}

.split.right {
  background: linear-gradient(135deg, #fffcf7 0%, #fbf6ec 100%);
  align-items: flex-end;
  text-align: right;
}

/* Hover expansion */
.hero.hover-left .split.left {
  width: 62%;
}

.hero.hover-left .split.right {
  width: 38%;
}

.hero.hover-right .split.right {
  width: 62%;
}

.hero.hover-right .split.left {
  width: 38%;
}

/* Side content container */
.side-copy {
  max-width: 420px;
  z-index: 4;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.hover-left .split.right .side-copy,
.hero.hover-right .split.left .side-copy {
  opacity: 0.35;
  transform: scale(0.96);
}

.tech-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--it-blue);
  background: var(--it-badge);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.family-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--fam-warm);
  background: var(--fam-badge);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.side-copy h1,
.side-copy h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
}

.side-copy h1 {
  color: var(--text-main);
  font-family: var(--font-sans);
}

.side-copy h2 {
  color: var(--text-main);
  font-family: var(--font-serif);
  letter-spacing: -0.8px;
}

.side-copy p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.left .cta-link {
  background: var(--text-main);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.left .cta-link:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.right .cta-link {
  background: var(--fam-warm);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(146, 64, 14, 0.15);
}

.right .cta-link:hover {
  background: #78350f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(146, 64, 14, 0.22);
}

/* Portrait center */
.portrait {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 540px;
  pointer-events: none;
  line-height: 0;
}

.portrait img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(15, 23, 42, 0.14));
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  transform-origin: bottom center;
}

.hero.hover-left .portrait img {
  transform: translateX(-10%);
  filter: drop-shadow(0 15px 35px rgba(2, 132, 199, 0.15)) grayscale(65%) contrast(1.08);
}

.hero.hover-right .portrait img {
  transform: translateX(10%);
  filter: drop-shadow(0 15px 35px rgba(217, 119, 6, 0.15)) saturate(1.15) sepia(18%);
}

/* ---------------- CONTACT SECTION (ON HOMEPAGE) ---------------- */
.contact-section {
  padding: 100px 6%;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.contact-container {
  max-width: 680px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.contact-section p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border-medium);
  background: var(--surface);
  color: var(--text-main);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.contact-pill:hover {
  border-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-pill.primary {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}

.contact-pill.primary:hover {
  background: #1e293b;
}

/* ---------------- INNER PAGES (WORK & LIFE) ---------------- */
.page-header {
  padding: 80px 6% 40px;
  max-width: 960px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: var(--text-main);
  line-height: 1.15;
}

.page-header p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.7;
}

.content-section {
  padding: 20px 6% 90px;
  max-width: 960px;
  margin: 0 auto;
}

/* Professional Cards Grid (Work) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.card-icon.tech {
  background: var(--it-badge);
  color: var(--it-blue);
  font-family: var(--font-mono);
}

.card-icon.warm {
  background: var(--fam-badge);
  color: var(--fam-warm);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-group span {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
}

/* Philosophy banner */
.philosophy-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.philosophy-banner.warm-tone {
  background: linear-gradient(135deg, #432818 0%, #58311e 100%);
}

.philosophy-banner h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.philosophy-banner p {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
}

/* CTA Footer inside inner pages */
.page-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 36px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  flex-wrap: wrap;
  gap: 20px;
}

.page-cta-box.warm {
  background: #fffcf7;
  border-color: rgba(180, 83, 9, 0.12);
}

.page-cta-box h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.page-cta-box p {
  font-size: 14.5px;
  color: var(--text-muted);
}

.page-cta-box .btn-group {
  display: flex;
  gap: 12px;
}

/* ---------------- FOOTER ---------------- */
footer {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  background: var(--surface);
  padding: 32px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-muted);
}

footer .footer-brand {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-main);
}

footer .footer-brand span {
  color: var(--fam-amber);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .hero {
    min-height: 640px;
  }

  .portrait {
    width: 460px;
  }

  .side-copy h1,
  .side-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  header {
    height: 68px;
    padding: 0 5%;
  }

  nav {
    gap: 18px;
  }

  .hero {
    min-height: auto;
    max-height: none;
    flex-direction: column;
    padding-bottom: 0;
  }

  .split {
    width: 100% !important;
    padding: 60px 6%;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .split.right {
    background: #fffcf7;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }

  .side-copy {
    max-width: 100%;
    opacity: 1 !important;
    transform: none !important;
  }

  .side-copy h1,
  .side-copy h2 {
    font-size: 36px;
  }

  .portrait {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: 380px;
    margin: -30px auto 0;
    pointer-events: auto;
  }

  .hero.hover-left .portrait img,
  .hero.hover-right .portrait img {
    transform: none;
    filter: drop-shadow(0 15px 35px rgba(15, 23, 42, 0.14));
  }

  .page-header {
    padding: 50px 6% 30px;
  }

  .page-header h1 {
    font-size: 34px;
  }

  .page-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===================================================
   CLEAN & SIMPLE EXECUTIVE CV STYLES (WORK PAGE)
   =================================================== */
.cv-body {
  background-color: #f8fafc;
  color: var(--text-main);
}

.cv-container {
  max-width: 1060px;
  margin: 36px auto 80px;
  padding: 0 20px;
}

/* Hero Profile Header */
.cv-header-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
}

.cv-avatar {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
  background: #f1f5f9;
}

.cv-header-info {
  flex: 1;
}

.cv-name {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.cv-role {
  font-size: 17px;
  font-weight: 600;
  color: #0284c7;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cv-summary {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 720px;
}

.cv-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: #64748b;
}

.cv-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #334155;
  font-weight: 500;
  transition: color 0.2s;
}

.cv-contact-link:hover {
  color: #0284c7;
}

.cv-contact-link svg {
  color: #0284c7;
}

/* Two-Column CV Layout */
.cv-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}

.cv-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cv-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Clean CV Card */
.cv-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.cv-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.cv-card-title svg {
  color: #0284c7;
}

/* Skills Progress Bars */
.cv-skills-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cv-skill-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cv-skill-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
}

.cv-skill-pct {
  color: #0284c7;
}

.cv-progress-bg {
  height: 7px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}

.cv-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 10px;
}

/* Education List in Sidebar */
.cv-edu-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 4px;
}

.cv-edu-item .cv-school {
  font-size: 14px;
  color: #0284c7;
  font-weight: 600;
  margin-bottom: 4px;
}

.cv-edu-item .cv-ipk {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 700;
  font-size: 12.5px;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.cv-edu-bullets {
  padding-left: 18px;
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

.cv-edu-bullets li {
  margin-bottom: 6px;
}

/* Experience Timeline */
.cv-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cv-timeline-item {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid #e2e8f0;
}

.cv-timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0284c7;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #cbd5e1;
}

.cv-timeline-item.active::before {
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
}

.cv-job-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.cv-job-company {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin: 2px 0 3px;
}

.cv-job-date {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Certifications Grid */
.cv-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.cv-cert-item {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  padding: 14px 16px;
  transition: transform 0.2s, border-color 0.2s;
}

.cv-cert-item:hover {
  transform: translateY(-2px);
  border-color: #0284c7;
  background: #ffffff;
}

.cv-cert-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 4px;
}

.cv-cert-issuer {
  font-size: 12.5px;
  color: #64748b;
}

.cv-cert-date {
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 2px;
}

/* Responsive CV */
@media (max-width: 860px) {
  .cv-header-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .cv-contact-row {
    justify-content: center;
  }

  .cv-grid {
    grid-template-columns: 1fr;
  }
}

.ln-company-group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ln-company-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ln-company-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ln-company-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.ln-company-meta {
  font-size: 13.5px;
  color: #64748b;
  margin-top: 2px;
}

.ln-roles-timeline {
  padding-left: 24px;
  border-left: 2px solid #e2e8f0;
  margin-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ln-role-node {
  position: relative;
}

.ln-role-node::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #cbd5e1;
}

.ln-role-node.active::before {
  background: #0a66c2;
}

.ln-role-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
}

.ln-role-date {
  font-size: 13px;
  color: #64748b;
  margin: 2px 0 6px;
}

.ln-role-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}


/* ===================================================
   LINKEDIN-STYLE WORK PAGE STYLES
   =================================================== */
.linkedin-body {
  background-color: #f3f2ef;
}

.linkedin-wrapper {
  max-width: 1120px;
  margin: 28px auto 60px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.linkedin-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.linkedin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Base LinkedIn Card */
.ln-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(140, 140, 140, 0.2);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 24px;
  position: relative;
}

/* Profile Card */
.ln-profile-card {
  padding: 0 0 24px 0;
  overflow: hidden;
}

.ln-cover {
  height: 180px;
  background: linear-gradient(135deg, #0b192c 0%, #1e3e62 50%, #002244 100%);
  position: relative;
  overflow: hidden;
}

.ln-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(2, 132, 199, 0.25) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px, 20px 20px;
}

.ln-cover-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
  z-index: 2;
}

.ln-profile-body {
  padding: 0 24px;
}

.ln-avatar-wrap {
  margin-top: -72px;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.ln-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  background: #ffffff;
  display: block;
}

.ln-avatar-status {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: #10b981;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.ln-profile-meta {
  margin-top: 14px;
}

.ln-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ln-name {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.ln-badge-verified {
  display: inline-flex;
  align-items: center;
  color: #0a66c2;
}

.ln-pronouns {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

.ln-headline {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  margin: 6px 0 10px;
  line-height: 1.45;
}

.ln-location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #64748b;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ln-location-row a {
  color: #0a66c2;
  font-weight: 600;
}

.ln-location-row a:hover {
  text-decoration: underline;
}

.ln-dot-separator {
  color: #94a3b8;
}

.ln-action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.ln-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.ln-btn-primary {
  background: #0a66c2;
  color: #ffffff;
}

.ln-btn-primary:hover {
  background: #004182;
  transform: translateY(-1px);
}

.ln-btn-outline {
  background: transparent;
  color: #0a66c2;
  border: 1px solid #0a66c2;
}

.ln-btn-outline:hover {
  background: rgba(10, 102, 194, 0.08);
  border-color: #004182;
  color: #004182;
  transform: translateY(-1px);
}

.ln-btn-ghost {
  background: transparent;
  color: #475569;
  border: 1px solid #94a3b8;
}

.ln-btn-ghost:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #475569;
}

/* Open to work banner inside profile */
.ln-open-banner {
  background: #edf3f8;
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.ln-open-banner-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.ln-open-banner-desc {
  font-size: 13px;
  color: #475569;
}

/* Card Sections Inside Main */
.ln-section-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ln-about-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
}

.ln-about-text p {
  margin-bottom: 12px;
}

.ln-about-text p:last-child {
  margin-bottom: 0;
}

/* Experience Timeline */
.ln-exp-list {
  display: flex;
  flex-direction: column;
}

.ln-exp-item {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ln-exp-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ln-exp-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #0a66c2;
  flex-shrink: 0;
}

.ln-exp-logo.dark {
  background: #0f172a;
  color: #ffffff;
}

.ln-exp-details {
  flex: 1;
}

.ln-exp-role {
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
}

.ln-exp-company {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

.ln-exp-date {
  font-size: 13px;
  color: #64748b;
  margin: 3px 0 10px;
}

.ln-exp-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 12px;
}

.ln-exp-desc ul {
  padding-left: 18px;
  margin: 6px 0;
}

.ln-exp-desc li {
  margin-bottom: 4px;
}

.ln-exp-skills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ln-exp-skills-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.ln-skill-chip {
  background: #f1f5f9;
  color: #334155;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Featured Projects */
.ln-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.ln-project-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.ln-project-card:hover {
  background: #ffffff;
  border-color: #0a66c2;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.08);
  transform: translateY(-2px);
}

.ln-project-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.ln-project-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 12px;
  flex-grow: 1;
}

.ln-project-card .ln-link {
  font-size: 13px;
  font-weight: 600;
  color: #0a66c2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ln-project-card .ln-link:hover {
  text-decoration: underline;
}

/* Skills Section */
.ln-skills-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ln-skill-category-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ln-skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ln-skill-badge {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.ln-skill-badge:hover {
  border-color: #0a66c2;
  color: #0a66c2;
  background: #f0f7ff;
}

.ln-skill-endorse {
  color: #0a66c2;
  font-size: 11.5px;
  font-weight: 600;
}

/* Sidebar Specifics */
.ln-sidebar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.ln-sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ln-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}

.ln-sidebar-item svg {
  color: #0a66c2;
  flex-shrink: 0;
  margin-top: 2px;
}

.ln-sidebar-item-content {
  line-height: 1.4;
}

.ln-sidebar-item-label {
  color: #64748b;
  font-size: 12px;
  display: block;
}

.ln-sidebar-item-val {
  color: #0f172a;
  font-weight: 600;
}

/* Fatherhood & Balance Card in Sidebar */
.ln-family-balance-card {
  background: linear-gradient(135deg, #fffbf5 0%, #fef3c7 100%);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.ln-family-balance-card h4 {
  color: #92400e;
}

.ln-family-balance-card p {
  font-size: 13.5px;
  color: #78350f;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ln-family-link {
  font-size: 13px;
  font-weight: 700;
  color: #b45309;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ln-family-link:hover {
  text-decoration: underline;
}

/* Responsive adjustment for LinkedIn layout */
@media (max-width: 960px) {
  .linkedin-wrapper {
    grid-template-columns: 1fr;
  }

  .linkedin-sidebar {
    order: 2;
  }
}

@media (max-width: 640px) {
  .ln-avatar {
    width: 110px;
    height: 110px;
  }

  .ln-avatar-wrap {
    margin-top: -55px;
  }

  .ln-cover {
    height: 130px;
  }

  .ln-profile-body {
    padding: 0 16px;
  }

  .ln-card {
    padding: 18px 16px;
  }

  .ln-name {
    font-size: 22px;
  }

  .ln-headline {
    font-size: 14.5px;
  }

  .ln-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ln-btn {
    justify-content: center;
  }

  .ln-exp-item {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===================================================
   LIFE BEYOND WORK (ASHISH MINOCHA INSPIRED DESIGN)
   Clean, Airy, Tilted Photo Cards, Dark Film Reel, Sleek Partnerships
   =================================================== */
.ashish-life-body {
  background-color: #ffffff;
  color: #0f172a;
}

.as-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* HERO SECTION */
.as-hero-section {
  padding: 120px 0 50px;
  background: #ffffff;
}

.as-hero-kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #0284c7;
  display: block;
  margin-bottom: 16px;
}

.as-hero-title {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.as-hero-sub {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  max-width: 660px;
  font-weight: 400;
}

.as-hero-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.as-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.as-social-pill:hover {
  color: #0f172a;
  border-color: #94a3b8;
  background: #f8fafc;
}

.as-hero-divider {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 440px;
}

.as-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(2, 132, 199, 0.5), rgba(203, 213, 225, 0.5), transparent);
}

.as-film-icon {
  width: 32px;
  height: 20px;
  color: #0284c7;
  opacity: 0.75;
  flex-shrink: 0;
}

/* SECTION 01: BEYOND THE SCREEN (3-COLUMN TILTED CARDS) */
.as-human-section {
  padding: 70px 0 100px;
  overflow: hidden;
  background: #ffffff;
}

.as-human-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 40px;
  align-items: center;
}

.as-photo-col {
  display: flex;
  justify-content: center;
}

.as-tilted-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.as-tilted-card.tilt-left {
  transform: rotate(-2.5deg);
}

.as-tilted-card.tilt-right {
  transform: rotate(2.5deg);
}

.as-tilted-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 28px 56px -12px rgba(15, 23, 42, 0.2);
}

.as-tilted-card::after,
.as-frame-photo-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: transparent;
  pointer-events: auto;
}

.as-tilted-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.as-img-staycation {
  object-position: center 42%;
}

.as-img-bridge {
  object-position: center 22%;
}

.as-img-outdoor {
  object-position: center 46%;
}

.as-card-caption {
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.as-story-col {
  padding: 0 10px;
}

.as-section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0284c7;
  display: block;
  margin-bottom: 12px;
}

.as-story-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 22px;
}

.as-story-paragraphs p {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.as-location-stamp {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.as-stamp-line {
  width: 44px;
  height: 1px;
  background: #0284c7;
}

.as-stamp-text {
  font-style: italic;
  color: #94a3b8;
  font-size: 13.5px;
}

/* SECTION 02: FILM REEL (CINEMATIC DARK STRIP) */
.as-filmreel-section {
  padding: 90px 0 100px;
  background: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
}

.as-filmreel-header {
  margin-bottom: 40px;
}

.as-filmreel-kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fbbf24;
  display: block;
  margin-bottom: 10px;
}

.as-filmreel-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.as-filmreel-desc {
  color: #a8a29e;
  font-size: 15px;
}

.as-reel-strip-wrapper {
  position: relative;
  width: 100%;
  background: #0e0e0e;
  border-top: 1px solid rgba(251, 191, 36, 0.18);
  border-bottom: 1px solid rgba(251, 191, 36, 0.18);
  padding: 14px 0;
}

.as-sprockets-row {
  display: flex;
  justify-content: space-around;
  padding: 6px 12px;
  overflow: hidden;
}

.as-sprockets-row span {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  background: rgba(251, 191, 36, 0.25);
  border: 1px solid rgba(251, 191, 36, 0.35);
  flex-shrink: 0;
  margin: 0 8px;
}

.as-film-track-container {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(251, 191, 36, 0.4) rgba(255, 255, 255, 0.05);
  padding: 24px 20px;
  display: flex;
  justify-content: flex-start;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.as-film-track-container::-webkit-scrollbar {
  height: 6px;
}

.as-film-track-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.as-film-track-container::-webkit-scrollbar-thumb {
  background: rgba(251, 191, 36, 0.4);
  border-radius: 4px;
}

.as-film-track-container::-webkit-scrollbar-thumb:hover {
  background: rgba(251, 191, 36, 0.7);
}

.as-film-track {
  display: flex;
  gap: 24px;
  min-width: max-content;
  margin: 0 auto;
}

.as-film-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 210px;
  text-align: center;
}

.as-frame-photo-wrap {
  width: 210px;
  height: 270px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(251, 191, 36, 0.25);
  background: #171717;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  margin-bottom: 12px;
}

.as-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.as-film-frame:hover .as-frame-img {
  transform: scale(1.06);
}

.as-reel-01 { object-position: center 30%; }
.as-reel-02 { object-position: 25% center; }
.as-reel-03 { object-position: 65% center; }
.as-reel-04 { object-position: center 30%; }
.as-reel-05 { object-position: 32% 40%; }
.as-reel-06 { object-position: center 30%; }
.as-reel-07 { object-position: 32% center; }
.as-reel-08 { object-position: center 35%; }
.as-reel-09 { object-position: center center; }
.as-reel-10 { object-position: 45% center; }
.as-reel-11 { object-position: 55% center; }
.as-reel-12 { object-position: 70% center; }
.as-reel-13 { object-position: center 30%; }
.as-reel-14 { object-position: 30% center; }
.as-reel-15 { object-position: center 35%; }
.as-reel-16 { object-position: center 35%; }
.as-reel-17 { object-position: center 40%; }
.as-reel-18 { object-position: 60% center; }
.as-reel-19 { object-position: center 30%; }
.as-reel-20 { object-position: center 35%; }
.as-reel-21 { object-position: 40% 60%; }
.as-reel-22 { object-position: center 55%; }
.as-reel-23 { object-position: center 40%; }
.as-reel-24 { object-position: center 32%; }
.as-reel-25 { object-position: center 42%; }
.as-reel-26 { object-position: center 32%; }
.as-reel-27 { object-position: center 52%; }
.as-reel-28 { object-position: center 60%; }
.as-reel-29 { object-position: center 45%; }
.as-reel-30 { object-position: center 58%; }
.as-reel-31 { object-position: center 50%; }
.as-reel-32 { object-position: center 35%; }
.as-reel-33 { object-position: center 50%; }
.as-reel-34 { object-position: center 38%; }
.as-reel-35 { object-position: center 55%; }
.as-reel-36 { object-position: center 45%; }
.as-reel-37 { object-position: center 60%; }
.as-reel-38 { object-position: center 52%; }
.as-reel-39 { object-position: center 55%; }
.as-reel-40 { object-position: center 45%; }
.as-reel-41 { object-position: center 55%; }
.as-reel-42 { object-position: center 38%; }
.as-reel-43 { object-position: center 55%; }

.as-frame-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(251, 191, 36, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.as-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fbbf24;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.as-placeholder-inner span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.as-frame-label {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: #fef3c7;
  margin-top: 6px;
  display: block;
}

/* SECTION 03: PHILOSOPHY (CLEAN QUOTES) */
.as-philosophy-section {
  padding: 96px 0;
  background: #ffffff;
}

.as-philosophy-header {
  margin-bottom: 48px;
}

.as-philosophy-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.as-philosophy-sub {
  font-size: 16.5px;
  color: #64748b;
  max-width: 680px;
}

.as-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.as-quote-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.as-quote-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -4px rgba(15, 23, 42, 0.06);
}

.as-quote-mark {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  color: #cbd5e1;
  margin-bottom: 10px;
  display: block;
}

.as-quote-text {
  font-size: 17.5px;
  color: #1e293b;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 28px;
}

.as-quote-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.as-quote-author {
  font-weight: 700;
  font-size: 13.5px;
  color: #64748b;
}

.as-quote-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 12px;
}

.as-quote-badge.family {
  background: #fef3c7;
  color: #92400e;
}

.as-quote-badge.craft {
  background: #e0f2fe;
  color: #0369a1;
}

.as-quote-badge.life {
  background: #dcfce7;
  color: #15803d;
}

/* SECTION 04: WORK WITH ALLSHADAYS (BRAND & MEDIA PARTNERSHIPS) */
.as-collab-section {
  padding: 84px 0;
  background: #f8fafc;
}

.as-collab-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 14px 36px -8px rgba(15, 23, 42, 0.05);
}

.as-collab-header {
  margin-bottom: 32px;
}

.as-collab-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0284c7;
  background: #e0f2fe;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.as-collab-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.as-collab-desc {
  font-family: var(--font-sans);
  font-size: 16.5px;
  color: #475569;
  line-height: 1.65;
  max-width: 760px;
}

/* 3 Clean & Minimalist Cards */
.as-collab-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 36px;
}

.as-prop-item {
  background: #fdfdfd;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.as-prop-item:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px -4px rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.as-prop-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.as-prop-item h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.as-prop-item p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Action & Social Bar */
.as-collab-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.as-social-channels {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: #64748b;
}

.as-social-link {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.as-social-link strong {
  font-weight: 700;
}

.as-social-link:hover {
  color: #0284c7;
}

.as-ch-sep {
  color: #cbd5e1;
}

.as-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.as-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.as-btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.22);
}

.as-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 20px;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.as-btn-outline:hover {
  border-color: #0f172a;
  background: #f8fafc;
  color: #0f172a;
}

@media (max-width: 900px) {
  .as-collab-props {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .as-collab-box {
    padding: 32px 20px;
    border-radius: 20px;
  }
  .as-collab-title {
    font-size: 28px;
  }
  .as-collab-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .as-cta-buttons {
    width: 100%;
    flex-direction: column;
  }
  .as-btn-primary, .as-btn-outline {
    justify-content: center;
  }
}

/* SECTION 05: CLOSING */
.as-closing-section {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}

.as-closing-text {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 24px;
}

.as-closing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0284c7;
  text-decoration: none;
  border-bottom: 2px solid #0284c7;
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.as-closing-link:hover {
  color: #0f172a;
  border-color: #0f172a;
}

/* FOOTER */
.as-footer {
  padding: 32px 0;
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
  font-size: 14px;
  color: #64748b;
}

.as-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.as-footer-brand {
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
  text-decoration: none;
}

.as-footer-brand span {
  color: #0284c7;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 860px) {
  .as-hero-title {
    font-size: 42px;
  }

  .as-hero-sub {
    font-size: 17.5px;
  }

  .as-human-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .as-quotes-grid {
    grid-template-columns: 1fr;
  }

  .as-collab-props {
    grid-template-columns: 1fr;
  }

  .as-collab-box {
    padding: 28px 20px;
  }

  .as-closing-text {
    font-size: 28px;
  }
}

/* ===================================================
   TECHNOLOGY LEADER & IT CONSULTANT STYLES (WORK PAGE)
   Inspired by Dimas Prasetyo + James Ramsey + Faishal W.
   =================================================== */
.lead-body {
  background-color: #f8fafc;
  color: #0f172a;
}

.lead-wrapper {
  max-width: 1080px;
  margin: 36px auto 100px;
  padding: 0 24px;
}

/* 00 - HERO SECTION */
.lead-hero-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 52px 48px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
  display: block;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.lead-hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.lead-hero-content {
  max-width: 780px;
  z-index: 2;
}

.lead-role-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.lead-name {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead-name span {
  color: #0284c7;
}

.lead-statement {
  font-size: 18.5px;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 28px;
  font-weight: 450;
}

.lead-action-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lead-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  transition: all 0.25s;
}

.lead-btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
}

.lead-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #334155;
  border: 1px solid #cbd5e1;
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.25s;
}

.lead-btn-outline:hover {
  border-color: #0f172a;
  color: #0f172a;
  background: #f8fafc;
}

.lead-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.lead-avatar-img {
  width: 170px;
  height: 170px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  background: #f1f5f9;
  display: block;
}

.lead-status-chip {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.lead-status-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
}

/* PROOF METRICS BAR */
.lead-metrics-bar {
  background: #0f172a;
  color: #ffffff;
  border-radius: 16px;
  padding: 26px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.15);
}

.lead-metric-item {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 18px;
}

.lead-metric-item:last-child {
  border-right: none;
  padding-right: 0;
}

.lead-metric-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #38bdf8;
  line-height: 1.1;
  margin-bottom: 6px;
}

.lead-metric-label {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.4;
}

/* SECTION HEADINGS */
.lead-sec {
  margin-bottom: 56px;
}

.lead-sec-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.lead-sec-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.6px;
  margin-bottom: 22px;
}

/* 01 - EXECUTIVE ABOUT PROFILE */
.lead-about-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.lead-about-text {
  font-size: 16.5px;
  line-height: 1.8;
  color: #334155;
}

.lead-about-text p {
  margin-bottom: 16px;
}

.lead-about-text p:last-child {
  margin-bottom: 0;
}

.lead-about-quote {
  border-left: 3px solid #0284c7;
  padding-left: 18px;
  margin: 20px 0;
  font-weight: 600;
  color: #0f172a;
  font-style: italic;
}

/* 02 - WHAT I DO GRID */
.lead-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}

.lead-service-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.lead-service-card:hover {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 12px 28px -4px rgba(2, 132, 199, 0.1);
}

.lead-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.lead-service-title {
  font-size: 18.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.lead-service-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
}

/* 03 - SELECTED IMPACT CARDS */
.lead-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lead-impact-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
}

.lead-impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #0284c7;
}

.lead-impact-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.lead-impact-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* 04 - CASE STUDIES (Faishal Wahiduddin Style) */
.lead-cases-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.lead-case-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.lead-case-card:hover {
  border-color: #0284c7;
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.08);
}

.lead-case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-case-title {
  font-size: 21px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.4px;
}

.lead-case-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: #0369a1;
  background: #e0f2fe;
  padding: 4px 12px;
  border-radius: 12px;
}

.lead-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.lead-case-col-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0284c7;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.lead-case-col-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
}

.lead-case-col-desc ul {
  margin: 4px 0 0 0;
  padding-left: 16px;
}

.lead-case-col-desc li {
  margin-bottom: 5px;
}

.lead-case-col-desc li:last-child {
  margin-bottom: 0;
}

/* 05 - LEADERSHIP & PROGRESSION */
.lead-timeline {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lead-timeline-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lead-timeline-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #0369a1;
  background: #e0f2fe;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lead-timeline-content h4 {
  font-size: 17.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.lead-timeline-org {
  font-size: 14px;
  color: #0284c7;
  font-weight: 600;
  margin-bottom: 8px;
}

.lead-timeline-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

/* 06 - TECH & ENABLERS */
.lead-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.lead-tech-box {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px 20px;
}

.lead-tech-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lead-tech-pill {
  font-size: 12px;
  font-weight: 500;
  background: #f1f5f9;
  color: #334155;
  padding: 4px 10px;
  border-radius: 6px;
}

/* 07 - BIZ / ENTREPRENEURSHIP */
.lead-biz-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffcf8 100%);
  border: 1px solid rgba(180, 83, 9, 0.15);
  border-radius: 16px;
  padding: 36px 32px;
}

.lead-biz-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 12px;
}

.lead-biz-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* 08 - EXECUTIVE CONTACT CALLOUT */
.lead-cta-card {
  background: #0f172a;
  color: #ffffff;
  border-radius: 20px;
  padding: 50px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 60px;
}

.lead-cta-card h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.lead-cta-card p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 520px;
}

.lead-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-cta-btn-main {
  background: #0284c7;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.lead-cta-btn-main:hover {
  background: #026bb0;
  transform: translateY(-2px);
}

.lead-cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.lead-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE FOR TECH LEADER WORK PAGE */
@media (max-width: 900px) {
  .lead-hero-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 36px 24px;
  }

  .lead-action-btns {
    justify-content: center;
  }

  .lead-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .lead-impact-grid {
    grid-template-columns: 1fr;
  }

  .lead-case-grid {
    grid-template-columns: 1fr;
  }

  .lead-timeline-item {
    flex-direction: column;
    gap: 12px;
  }

  .lead-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .lead-cta-btns {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .lead-name {
    font-size: 32px;
  }

  .lead-statement {
    font-size: 16px;
  }

  .lead-metrics-bar {
    grid-template-columns: 1fr;
  }

  .lead-metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 14px;
  }

  .lead-metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ===================================================
   TABS NAVIGATION STYLES (MOBILE-FIRST COMPACT)
   =================================================== */
.lead-tabs-nav {
  display: flex;
  gap: 8px;
  margin: 10px 0 36px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 86px;
  z-index: 30;
}

.lead-tabs-nav::-webkit-scrollbar {
  display: none;
}

.lead-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex: 1;
  justify-content: center;
}

.lead-tab-btn:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.lead-tab-btn.active {
  color: #ffffff;
  background: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16);
}

.lead-tab-btn svg {
  color: #94a3b8;
  transition: color 0.2s;
}

.lead-tab-btn.active svg {
  color: #38bdf8;
}

.lead-tab-count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
}

.lead-tab-btn.active .lead-tab-count {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* Tab Panels */
.lead-tab-panel {
  display: none;
  animation: leadFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-tab-panel.active {
  display: block;
}

@keyframes leadFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .lead-tabs-nav {
    top: 76px;
    margin: 0 0 28px;
    padding: 4px;
    gap: 4px;
    border-radius: 12px;
  }

  .lead-tab-btn {
    padding: 9px 14px;
    font-size: 13px;
    flex: auto;
  }
}

/* ===================================================
   INDUSTRY & DOMAIN EXPERTISE GRID (WORK PAGE)
   =================================================== */
.lead-industry-wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}

.lead-industry-subtitle {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0284c7;
  margin-bottom: 6px;
  display: block;
}

.lead-industry-heading {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}

.lead-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.lead-industry-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.lead-industry-card:hover {
  border-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.lead-industry-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 4px;
}

.lead-industry-card-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: #0284c7;
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 10px;
}

.lead-industry-card-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-top: auto;
}
