
  section { padding: var(--section-gap) 0; }

  /* ─── HERO ─── */
  #hero {
    padding-top: 160px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.1s;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }
  .hero-orb {
    position: absolute;
    width: 800px; height: 800px;
    top: -200px; right: -200px;
    background: radial-gradient(ellipse, rgba(15,100,220,0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  /* ─── SECTION LABELS ─── */
  h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  h2 em { font-style: italic; color: var(--accent); }

  .section-intro {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.72;
    margin-bottom: 64px;
  }

  /* ─── WHAT CHANGES STRIP ─── */
  #what-changes {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .changes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
  }
  .change-cell {
    background: var(--bg);
    padding: 40px 36px;
  }
  .change-cell .label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  .change-cell .before {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-decoration: line-through;
    text-decoration-color: rgba(255,100,80,0.4);
  }
  .change-cell .after {
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .change-cell .after::before {
    content: '→';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ─── 10 STEP WORKFLOW ─── */
  #workflow { background: var(--bg); }

  .workflow-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    margin-top: 0;
  }
  .step-card {
    background: var(--bg-card);
    padding: 36px 32px;
    position: relative;
    transition: background 0.25s, box-shadow 0.25s;
    cursor: default;
  }
  .step-card:hover {
    background: var(--bg-card-hover);
    box-shadow: inset 0 0 0 1px rgba(15,100,220,0.12);
  }
  .step-card.full-width {
    grid-column: 1 / -1;
  }
  .step-number {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .step-number::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 60px;
  }
  .step-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 14px;
  }
  .tag-ai { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--border-accent); }
  .tag-auto { background: rgba(10,124,78,0.07); color: var(--green); border: 1px solid rgba(10,124,78,0.2); }
  .tag-human { background: rgba(15,100,220,0.07); color: var(--accent); border: 1px solid rgba(15,100,220,0.2); }

  .step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .step-body {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
  }
  .step-body strong { color: var(--text-primary); font-weight: 500; }

  /* ─── FEATURE DEEP DIVES ─── */
  .feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
  }
  .feature-block:last-child { border-bottom: none; }
  .feature-block.reverse { direction: rtl; }
  .feature-block.reverse > * { direction: ltr; }

  .feature-text {}
  .feature-text h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .feature-text h3 em { font-style: italic; color: var(--accent); }
  .feature-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .feature-text p:last-of-type { margin-bottom: 0; }
  .feature-text strong { color: var(--text-primary); font-weight: 500; }

  .feature-stat-row {
    display: flex;
    gap: 24px;
    margin-top: 32px;
  }
  .feature-stat {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
  }
  .feature-stat .num {
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .feature-stat .desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  .feature-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  }
  .visual-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .visual-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .visual-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
  }
  .visual-body { padding: 28px 24px; }

  /* Copilot Visual */
  .copilot-input {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 20px;
  }
  .copilot-input .label-small {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .copilot-input .typing {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.5;
  }
  .copilot-input .cursor {
    display: inline-block;
    width: 2px; height: 16px;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1.2s step-end infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

  .copilot-output-list { display: flex; flex-direction: column; gap: 8px; }
  .copilot-output-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--accent-soft);
    border: 1px solid var(--border-accent);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-primary);
    animation: slideIn 0.4s ease forwards;
    opacity: 0;
  }
  .copilot-output-item:nth-child(1) { animation-delay: 0.4s; }
  .copilot-output-item:nth-child(2) { animation-delay: 0.8s; }
  .copilot-output-item:nth-child(3) { animation-delay: 1.2s; }
  .copilot-output-item:nth-child(4) { animation-delay: 1.6s; }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: none; }
  }
  .copilot-check {
    width: 16px; height: 16px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 9px;
    color: #ffffff;
    font-weight: 700;
  }

  /* AI Calls Visual */
  .call-screen {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .call-wave {
    height: 48px;
    background: var(--bg-raised);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 3px;
  }
  .wave-bar {
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
    animation: waveAnim 1.2s ease infinite;
  }
  .wave-bar:nth-child(1) { animation-delay: 0s; height: 12px; }
  .wave-bar:nth-child(2) { animation-delay: 0.1s; height: 24px; }
  .wave-bar:nth-child(3) { animation-delay: 0.2s; height: 36px; }
  .wave-bar:nth-child(4) { animation-delay: 0.3s; height: 30px; }
  .wave-bar:nth-child(5) { animation-delay: 0.4s; height: 20px; }
  .wave-bar:nth-child(6) { animation-delay: 0.5s; height: 36px; }
  .wave-bar:nth-child(7) { animation-delay: 0.6s; height: 28px; }
  .wave-bar:nth-child(8) { animation-delay: 0.7s; height: 16px; }
  .wave-bar:nth-child(9) { animation-delay: 0.8s; height: 32px; }
  .wave-bar:nth-child(10) { animation-delay: 0.9s; height: 22px; }
  .wave-bar:nth-child(11) { animation-delay: 1.0s; height: 14px; }
  .wave-bar:nth-child(12) { animation-delay: 1.1s; height: 38px; }
  @keyframes waveAnim {
    0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
  }
  .wave-label {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
  }
  .call-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .call-meta-item {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 14px;
  }
  .call-meta-item .meta-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .call-meta-item .meta-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
  }

  /* Sourcing Visual */
  .sourcing-visual {
    margin-top: 48px;
    transition-delay: 0s;
  }
  .sourcing-visual .bottom_para {
    margin-top:20px; font-family:var(--font-mono); font-size:11px; color:var(--text-muted);
  }
  .sourcing-chart { display: flex; flex-direction: column; gap: 10px; }
  .source-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .source-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    width: 80px;
    flex-shrink: 0;
  }
  .source-bar-wrap {
    flex: 1;
    height: 8px;
    background: var(--bg-raised);
    border-radius: 4px;
    overflow: hidden;
  }
  .source-bar {
    height: 100%;
    border-radius: 4px;
    animation: barGrow 1s ease forwards;
    transform-origin: left;
    transform: scaleX(0);
  }
  .source-bar.internal { background: var(--accent); animation-delay: 0.3s; }
  .source-bar.naukri { background: #2563eb; animation-delay: 0.5s; }
  .source-bar.linkedin { background: #6366f1; animation-delay: 0.7s; }
  .source-bar.indeed { background: #0a7c4e; animation-delay: 0.9s; }
  .source-bar.foundit { background: #ea580c; animation-delay: 1.1s; }
  @keyframes barGrow { to { transform: scaleX(1); } }
  .source-count {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    width: 36px;
    text-align: right;
    flex-shrink: 0;
  }

  /* Interview visual */
  .interview-formats {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .format-card {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s;
  }
  .format-card.active { border-color: var(--accent); }
  .format-card-green { 
    border-color:var(--green); margin-top:4px;
  }
  .format-icon {
    width: 36px; height: 36px;
    background: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .format-info .format-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
  }
  .format-info .format-desc {
    font-size: 12px;
    color: var(--text-muted);
  }
  .format-badge {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--border-accent);
    flex-shrink: 0;
  }

  /* Compliance visual */
  .compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .compliance-card {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .compliance-icon {
    width: 32px; height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    background: var(--green-soft);
    color: var(--green);
  }
  .compliance-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1px;
  }
  .compliance-region {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
  }
  .compliance-status {
    margin-left: auto;
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--green);
    background: var(--green-soft);
    border: 1px solid rgba(10,124,78,0.2);
    padding: 2px 7px;
    border-radius: 4px;
  }

  /* ─── TWO PHASE SOURCING ─── */
  .how_it_sourcing_section {
    background:var(--bg-raised); 
    padding:var(--section-gap) 0;
  }
  .phase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    margin-top: 48px;
  }
  .phase-panel {
    background: var(--bg-card);
    padding: 44px 40px;
  }
  .phase-number {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .phase-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .phase-title em { font-style: italic; color: var(--accent); }
  .phase-body {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.72;
    margin-bottom: 24px;
  }
  .phase-body strong { color: var(--text-primary); font-weight: 500; }
  .platform-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .platform-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 5px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: var(--bg-raised);
    letter-spacing: 0.04em;
  }

  /* ─── METRICS BAR ─── */
  #metrics {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
  }
  .metric-cell {
    background: var(--bg);
    padding: 44px 36px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  }
  .metric-num {
    font-family: var(--font-mono);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.45;
  }
  .metric-context {
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }

  /* ─── SEO CONTENT SECTION ─── */
  #seo-content {
    padding: 100px 0;
    background:var(--bg-raised);
  }
  .seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .seo-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .seo-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .seo-text strong { color: var(--text-primary); font-weight: 500; }

  .seo-right {}
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-top: 1px solid var(--border);
    padding: 22px 0;
  }
  .faq-q {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  .faq-a {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.72;
  }
  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1199px) {
    .step-card {
        padding: 20px;
    }
    .step-card .step-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .metric-cell {
      padding: 24px 20px;
    }
    .metric-cell .metric-num {
      font-size: 36px;
      font-weight: 500;
  }
    .phase-panel {
        padding: 30px 20px;
    }
    .change-cell {
      padding: 30px 20px;
    }
    .feature-block { gap: 60px 40px; }
    .seo-grid { gap: 60px 40px; }
    .visual-body {
        padding: 20px;
    }
    .compliance-card {
      padding: 12px 12px;
    }
    .feature-stat {
      padding: 16px;
    }
  }
  @media (max-width: 991px) {
    .changes-grid { grid-template-columns: 1fr; }
    .change-cell {
        padding: 23px 10px;
    }
    .workflow-layout { grid-template-columns: 1fr; }
    .step-card.full-width { grid-column: 1; }
    .feature-block { grid-template-columns: 1fr; gap: 40px 0px; }
    .feature-block.reverse { direction: ltr; }
    .phase-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .seo-grid { grid-template-columns: 1fr; gap: 48px 0px; }
    .feature-stat-row { flex-direction: column; }
  }
  @media (max-width: 600px) {
    :root { --section-gap: 72px; }
    .metrics-grid { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .call-meta { grid-template-columns: 1fr; }
  }
  @media (max-width: 390px) {
  .change-cell {padding: 20px 5px;}
  .step-card {
        padding: 17px;
    }
    .visual-header {
      padding: 14px 16px;
    }
    .visual-body {
        padding: 16px;
    }
    .copilot-input {
      padding: 14px 16px;
    }
    .format-card {
        padding: 14px 14px;
        gap: 10px;
    }
  }